@charset "UTF-8";

.modal-bg{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(61, 54, 54, 0.6);
    z-index: 999;
}
.modal-center{
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    /*msTransform: translate(-50%, -50%);*/
    /*webkitTransform: translate(-50%, -50%);*/
    background-color: #fff;
    width: 87vw;
    height: 85vh;
    font-family: "Pretendard-Medium", 'NanumBarunpenB', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    overflow: auto;
    z-index: 1005;
    border-radius: 10px;
}
.modal-center.small-modal{
    width: 87vw;
    height: 350px;
    border-radius: 10px;
}
.modal-center.middle-modal{
    height: 500px;
}
.modal-center.alim-modal{
    height: 400px;
}
.modal-center.cnclResn-model{
    height: 150px;
}
.ks-modal-header{
    width: 100%;
    color:#fff;
    background-color:  var(--main-color);
    position: relative;
}
.ks-modal-header.bjon{
    color:#fff;
    background-color:  var(--main-color);
}
.ks-modal-title{
    font-family: "Pretendard-Medium", 'NanumBarunpenB', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0;
    text-align: center;
}
.ks-modal-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ks-modal-body{
    box-sizing: border-box;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ks-modal-body.cnclResn-model{
    box-sizing: border-box;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}
.ks-modal-body.body-over-flow{
    overflow: auto;
}
.info-form{
    width: 300px;
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.info-form .info-label{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 34px;
    text-indent: -9999px;
    /*padding: 5px;*/
}
.ks-modal-footer{
    width: 100%;
    margin-bottom: 10px;
}
.btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 89%;
    margin: 0 auto;
}
.btn-group button{
    width: 30%;
    height: 50px;
    border: none;
    background-color: var(--main-color);
    color: #ffffff;
    font-family: "Pretendard-Bold", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.btn-group button.btn100{
    width: 100%;
}
.btn-group button:nth-child(1){
    margin-right: 8px;
}
.btn-group button:nth-child(2){
    margin-left: 8px;
}
.non-active-scroll{
    height: 100%;
    overflow: hidden;
}
.none-touch{
    touch-action: none;
}
.non-active-scroll-board{
    height: 100%;
    overflow: hidden;
}
.active-scroll{
    height: 100%;
    overflow:auto;
}
