/* @import 'include/var'; 변수는 CSS에서 직접 사용할 수 없으므로 주석 처리하거나 해당 값을 직접 입력해야 합니다. */

.jq_modal_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2100;
    overflow-y: auto;
    left: 0;
    top: 0;
}

.jq_modal_wrap > div {
    display: table;
    width: 100%;
    height: 100%;
}

.jq_modal_wrap > div > div {
    display: table-cell;
    vertical-align: middle;
    padding: 30px;
    overflow-y: auto;
}

#jq_modal_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2000;
}

#jq_modal_bg.jq_modal_bg_open {
    animation: bgopen .3s forwards;
}

#jq_modal_bg.jq_modal_bg_close {
    animation: bgclose .3s forwards;
}

.laymodal {
    display: none;
    background: #fff;
    box-sizing: border-box;
    transition: all .3s;
    width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
    border: 1px solid #bdbdbd;
    border-radius: 0px;
}

/* 
@media (max-width: $mediaMobile) {
    .laymodal { width:auto !important; }
} 
*/

.laymodal .laymodal-content,
.laymodal .laymodal-footer {
    padding: 30px;
}

.laymodal .laymodal-footer {
    padding-top: 0;
    text-align: center;
}

.laymodal .laymodal-header {
    position: relative;
    height: 60px;
    /* line-height: 80px; */
    padding: 0 30px;
}

.laymodal .laymodal-header h2 {
    margin: 0;
    padding: 0;
    font-size: 28px;
    font-weight: 500;
    display: inline-block;
    color: #3F3B3A;
    margin-top: 20px;
}

.laymodal .boder-b {
    border-bottom: 1px solid #D8D8D8 !important;
}

.laymodal .laymodal-content {
    background: #fff;
    padding: 30px;
}

.laymodal .laymodal-content .sign-warp {
    width: 100%;
    margin-top: 10px;
    min-height: 280px;
    background-color: #f1f1f1;
}

.laymodal .laymodal-close {
    width: 34px;
    height: 34px;
    background: none;
    font-size: 0;
    position: absolute;
    top: 13px;
    right: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: 0;
}

.laymodal.modal_open {
    animation: modalopen .3s forwards;
}

.laymodal.modal_close {
    animation: modalclose .3s forwards;
}

.laymodal-focusclose {
    position: absolute;
    width: 0;
    height: 0;
    box-sizing: border-box;
    padding: 0;
    bottom: 0;
    outline: none;
    -ms-outline: none;
    margin: 0;
    opacity: 0;
}

@keyframes bgopen {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes bgclose {
    0% { opacity: 1; }
    100% { opacity: 0; }
}


@keyframes modalopen {
    0% { opacity: 0; transform: translateY(-100px); }
    100% { opacity: 1; transform: translateY(0px); }
}

@keyframes modalclose {
    0% { opacity: 1; transform: translateY(0px); }
    100% { opacity: 0; transform: translateY(-100px); }
}

/* custom */
.laymodal__login_password {
    width: 760px;
    height: 480px;
}

.laymodal .input-area {
    display: inline-block;
}

.laymodal .btn-area {
    display: inline-block;
    vertical-align: 2px;
}

.laymodal .report-warp {
    width: 100%;
    min-height: 820px;
    border: 1px solid #BDBDBD;
    padding: 30px;
}

.laymodal .report-warp.h-auto {
    min-height: auto;
}

.laymodal .tit-hd h2 {
    font-size: 24px;
    font-weight: 400;
}

.laymodal .survey-result-box {
    padding: 10px;
    padding-bottom: 50px;
    padding-top: 20px;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
}

.laymodal .survey-result-box .cnt-survey-list {
    margin-bottom: 20px;
    font-weight: 400;
}

.laymodal .survey-result-box .cnt-survey-list dt {
    font-weight: 600;
}

.laymodal .survey-result-box .cnt-survey-list dd {
    margin-top: 10px;
}

.laymodal .survey-result-box .cnt-survey-list dd b {
    font-weight: 600;
}