/* 공통 모달*/
/* Overlay 스타일 */
    .css-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(88 89 90 / 65%);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1050;
    }

    /* 모달 내용 컨테이너 */
    .css-modal-content {
    width: 90vw;
    position: absolute;
    }

    /* 헤더 스타일 */
    .css-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 10px;
        border-top-left-radius: 0 ;
        border-top-right-radius: 1.7rem;
        height: 10vw;
    }
   .css-modal-header h5 {
       font-size: 2rem;
       text-align: center;
       margin: 10px auto 0;
       font-weight: 300;
   }
    .css-modal-title {
        margin: 0;
        font-size: 18px;
        font-weight: bold;
    }

    .css-modal-close {
        background: none;
        border: none;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
    }
.close-bnt {

    position: relative;
    right: 20px;
}
    .css-modal-close:hover {
        color: red;
    }

    /* 바디 스타일 */
    .css-modal-body {
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
        border-bottom-left-radius: 2.2rem !important;
        border-bottom-right-radius: 2.2rem !important;
    }
    .row-ml-0 {
        margin-left: 0 !important;
    }
.bor-2 {
        border-bottom-left-radius: 2.2rem !important;
    border-bottom-right-radius: 2.2rem !important;
}
/* 언어설정 모달*/
#languageModal .css-modal-content{
    background-color: unset;
     border-radius: unset;
     padding: unset;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#languageModal .js-lang-group {
    width: 93%;
    height: 500px;
    overflow-y: scroll;
    padding-bottom: 1rem;
}
#languageModal .js-lang-group button{
    width: 93%;
    padding: 2.2vw;
    font-size: 2rem;
    margin-top: 17px;
    border: none;
    background-color: rgb(255 255 255);
    box-shadow: 1px 1px 7px 1px rgb(11, 11, 11, .15);
    border-radius: 3.5rem !important;
}
/* 스크롤 스타일링*/
#languageModal .js-lang-group::-webkit-scrollbar {
    width: 30px;
}
#languageModal .js-lang-group::-webkit-scrollbar-thumb {
    background: rgb(52, 144, 255);
    border-radius: 35px;
    height: 200px;
    border: 10px solid #ffffff;

}
#languageModal .js-lang-group::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, .1);
    border: 10px solid #ffffff;

}
/* 갤러리 모달 */
#picturesModal .js-image-group>div p {
    border-radius: 1rem;
    padding: 1rem 0;
    margin-top: .75rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}
#picturesModal .js-image-group > div {
    width: 40vw;
    height: 40vw;
    padding: 3vw 0;
}
#picturesModal .js-image-group img {
    height: 100%;
    border-radius: 1rem;
}
/* 서비스 모달 */
/*#serviceModal .js-service-group>div p {*/
/*    font-size: 1.2rem;*/
/*    margin: 0 !important;*/
/*}*/
/*#serviceModal .js-service-group > div {*/
/*    !*height: 55vw;*!*/
/*    padding: 3vw 0;*/
/*    !*background: red;*!*/
/*}*/
#serviceModal .js-service-group img {
    width: 40vw;
    height: 40vw;
    border-radius: 1rem;
}
/* 질문 모달*/
#questionsModal .js-question-btns button {
    padding: 1vh;
    font-size: 2vh;
    /*width: fit-content;*/
}
@media screen and (max-width: 768px) {
    #css-modal-header {
        padding: 2.5vh !important;
    }
    #css-modal-header > h5 {
        font-size: 1.2rem !important;
    }
    #css-modal-body .mo-modal-mb {
       margin-bottom: 12px;
    }

    #picturesModal .js-image-group>div p {
        color: #2d2d2d;
        border-radius: 1rem;
        padding: .35rem 0;
        /*margin-top: .75rem;*/
        margin: 0;
        font-size: .85rem;
        font-weight: 400;
    }
    #languageModal .js-lang-group button {
        width: 93%;
        font-size: 1.25rem;
    }

}