@charset "UTF-8";
{
    /** 모달 레이어 */
}
#boardModal-form-back {
    z-index: 99999;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.boardModal-wrap {
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.boardModal-wrap.in {
    opacity: 1;
    visibility: visible;
}
.boardModal-form {
    width: calc(100% - 32px);
    max-width: 480px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px 0 rgba(0, 35, 90, 0.1), 0 0 2px 0 rgba(0, 35, 90, 0.06);
    transition: all 0.3s ease-out;
    background-color: #fff;
}
.boardModal-form .boardModal-form__header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}
.boardModal-form .boardModal-form__header h2.title {
    margin: 10px 0 0;
    font-size: 18px;
    color: #333;
}
.boardModal-form .boardModal-form__footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #dedede;
}
.boardModal-form .boardModal-form__footer button {
    flex: 1;
    border-radius: 0;
    height: 60px;
    transition: none;
    color: #333;
}
.boardModal-form .boardModal-form__footer .board-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 40px;
    margin: 0;
    padding: 0 12px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none !important;
    border: 0;
    outline: 0;
    appearance: none;
    background: transparent;
    font-size: 16px;
}
.boardModal-form .boardModal-form__footer .board-button.submit{
    border:1px solid #f0f0f0;
    background: #f0f0f0;
}

.boardModal-form .boardModal-form-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 0;
    border: 0;
    color: #888;
}

/* responsive
-------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {
    .boardModal-form .boardModal-form__header .boardModal-form-close {
        display: flex;
    }
}


/** Alert */
.simple-board-alert {
    z-index: 999999 !important;
    position: fixed;
    left: 50%;
    bottom: 50%;
    padding: 16px 20px;
    transform: translate3d(-50%, -50%, 0);
    font-weight: 500;
    text-align: center;
    border-radius: 12px;
    background-color: #000;
    color: #fff;
}
.simple-board-alert.success {
    background-color: blueviolet;
}
.simple-board-alert.info {
    background-color: cyan;
}
.simple-board-alert.warn {
    background-color: orangered;
}
.simple-board-alert.danger {
    background-color: red;
}
