:root { 
    --brandColor: #FF5B00;
    --hoverbgColor: rgb(255, 222, 192);
    --hoverTextColor: #5a2000;
    --menuBg: #4f7fc9;
    --menuThis: #fff;
    --tableColor: #edf3fd;
    --menuColor: #3f66a1;
    --red: #db2410;
    --btnPadding: 7px 20px;
} 

button.btn-reset-scon { border: 0; cursor: pointer; background: 0; }

/* 공통 */
.d-none-scon { display: none; }
.d-block-scon { display: block; }
.w-full-scon { width: 100% !important; }
.h-full-scon { height: 100% !important; }
.h-100px-scon { height: auto; }
.p-1-scon { padding: .25rem !important; }
.p-2-scon { padding: .5rem !important; }
.p-3-scon { padding: .75rem !important; }
.p-4-scon { padding: 1rem !important; }
.p-5-scon { padding: 1.25rem !important; }
.text-center-scon { text-align: center !important; }
.text-right-scon { text-align: right !important; }
.text-left-scon { text-align: left !important; }

/* 버튼 */
.btn-scon { 
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: var(--btnPadding); background: #fff; color: var(--brandColor); border: 1px solid var(--brandColor); border-radius: 5px; font-size: 15px; font-weight: 600; transition: all 0.15s; 
} 
.btn-scon:hover { background: var(--hoverbgColor); box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 5px; color: var(--hoverTextColor); } 

.btn_area-scon { display: flex; align-items: center; gap: 15px; }
.base-font-scon { font-size: 15px !important; font-weight: 400 !important;}

/* ========== pc 모달 ========== */
.modal_body-scon .row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.modal_body-scon .row img {
    width: 60px;
    border-radius: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
}
.modal_body-scon .row h4 {
    line-height: 1.2;
    font-weight: 800;
    font-family: inherit;
}
.days_box {
    margin-top: 10px;
}
.modal-scon { 
    position: relative;
    z-index: 999999;
} 
.modal-scon.show {
    opacity: 1;
    transition: opacity 0.2s ease;
}


.modal_area-scon .modal_header-scon { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; } 

.modal_area-scon .modal_title-scon { font-size: 20px; font-weight: 700; } 
.modal_area-scon button.close-scon { 
    font-size: 30px; 
    font-weight: 200;     
    color: #333;     
    background: #e7e7e7;
    margin-left: auto;
    display: block;
} 
/* .modal_area-scon.pc-scon button.close-scon:hover {
    background: #cfcfcf; 
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 5px; 
    color: #333; 
    font-weight: 600;
} */
.modal_header-scon button.close-scon {
    background: transparent;
}
.modal_area-scon .modal_body-scon { background: transparent; padding: 0 15px 20px 15px; } 


.modal_area-scon.pc-scon { 
    position: fixed;
    left: 5px;
    bottom: -100%;
    top: auto;
    width: 300px;
    transform: unset;
    background: #fff;
    border-radius: 10px;
    transition: 0.4s ease-out; 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.modal_area-scon.pc-scon.slide-active {
    display: flex;
    flex-direction: column;
    bottom: 20px;
}
.modal-scon:has(.modal-ldow-sconn) { background-color: transparent; }

/* 모바일 모달 */
.modal_area-scon.mobile-scon {
    position: fixed;
    right: -100%; 
    bottom: 0; 
    width: 100%;
    transition: right 0.4s ease-out; 
    z-index: 999999999;
    display: none; 
    background: #DFFDFE;
    border-top: 1px solid #ddd;
}
.mobile-scon.slide-active {
    display: flex;
    right: 0; 
}
.modal-scon.mobile-scon .modal_area-scon .modal_header-scon {
    gap: 8px;
}
.mobile-scon .scon_icon {
    width: 70px;
}
.modal_area-scon.mobile-scon .scon_title  {
    font-size: 24px;
}
.modal_area-scon.mobile-scon .scon_title h4 {
    font-weight: 600;
    margin-bottom: 3px;
}
.modal_area-scon.mobile-scon .scon_title p {

}
.modal_area-scon.mobile-scon .modal_body-scon {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_area-scon.mobile-scon .modal_body-scon .time-scon {
    font-size: 30px;
    font-weight: 600;
}
.modal_area-scon.mobile-scon button.close-scon {
    font-size: 55px;
    line-height: 0.5;
}
@media (max-width: 786px) {
    .modal_area-scon {
        width: 100%;
    }
    .modal_area-scon.pc-scon {
        width: calc(100% - 20px);
        left: 50%;
        bottom: -100%;
        transform: translateX(-50%);
    }
    .modal_area-scon .modal_title-scon {
        font-size: 26px;
    }
    .modal_area-scon button.close-scon {
        font-size: 50px;
    }
    .modal_body-scon .row img {
        width: 25%;
    }
    .modal_body-scon .row h4 {
        font-size: 26px;
    }
    .btn-scon {
        font-size: 25px;
        padding: 15px 20px;
    }
    .days_box {
        font-size: 25px;
    }
    #check_7days {
        width: 20px;
        height: 20px;
    }
}