@charset "UTF-8";

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
기본 알림 모달창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.alert_custom_wrap .custom_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    width: 350px;
    max-width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.alert_custom_wrap .custom_box .custom_cont {
    padding: 15px 15px 15px;
}
.alert_custom_wrap .custom_box .custom_cont .alert_close_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 22px;
}
.alert_custom_wrap .custom_box .custom_cont .alert_close {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    /*display: block !important;*/
    display: none;
}
.alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(1) {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(-45deg);
}
.alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(2) {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(45deg);
}
.alert_custom_wrap .custom_box .custom_cont .alert_cont {
    text-align: center;
    font-size: 16px;
    color: #0c0c0c;
    line-height: 25px;
    padding: 0 20px;
}
.alert_custom_wrap .custom_box .alert_custom_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 10px;
}
.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn {
    width: 100%;
    line-height: 67px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 1em;
    padding: 17px 0;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn:hover {
    opacity: 0.9;
}

.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn.alert_close:hover {
    background: #e8e8e8;
    opacity: 1;
}

.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn.full {
    width: 100% !important;
    /* 2024-07-17 (주)파이브센스_FIVESENSES.Corp */
    /* 2024-08-09 (주)파이브센스_FIVESENSES.Corp */
    /* display: none; */
}
.alert_custom_wrap .custom_box .alert_custom_btn button.alert_btn {
}
.alert_custom_wrap .custom_box .alert_custom_btn a {
    background: #235cf5;
    color: white;
}
.alert_custom_wrap .custom_box .alert_custom_btn button {
    border: 0;
    background: #f5f5f5;
    color: #8b8e90;
}

/* 250918 버튼 갯수별 색상 부여*/
.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn.blue {
    background: var(--main-btn-point-color) !important;
    color: white !important;
}
.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn.gray {
    border: 0 !important;
    background: #f5f5f5 !important;
    color: #8b8e90 !important;
}
.alert_custom_wrap .custom_box .alert_custom_btn .alert_btn.gray:hover {
    opacity: 0.9;
}

/* 로그인 오류 시 alert 창 배경 */
.alert_custom_wrap .custom_box .alert_custom_btn .alert_point_color {
    background: #235cf5 !important;
    color: white;
}
.alert_custom_wrap .custom_box .alert_custom_btn .alert_point_color:hover {
    opacity: 0.9 !important;
}
.alert_custom_wrap .custom_box.open {
    opacity: 1;
    visibility: visible;
}
.alert_custom_wrap .alert_custom_bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.alert_custom_wrap .alert_custom_bg.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .alert_custom_wrap .custom_box {
        width: calc(100% - 50px);
        border-radius: 10px;
    }
    .alert_custom_wrap .custom_box .custom_cont {
        padding: 15px 15px 34px;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close_wrap {
        margin-bottom: 5px;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close {
        width: 15px;
        height: 15px;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(1) {
        content: "";
        display: block;
        width: 1.5px;
        height: 15px;
        background: #ccc;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(-45deg);
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(2) {
        content: "";
        display: block;
        width: 1.5px;
        height: 15px;
        background: #ccc;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(45deg);
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_cont {
        font-size: 16px;
        line-height: 19px;
        padding: 0 62px;
    }
    .alert_custom_wrap .custom_box .alert_custom_btn .alert_btn {
        font-size: 14px;
        padding: 15px 0;
    }
}
@media (max-width: 480px) {
    .alert_custom_wrap .custom_box {
        width: 330px;
    }
    .alert_custom_wrap .custom_box .custom_cont {
        padding: 10px 10px 20px;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close_wrap {
        margin-bottom: 16px;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(1) {
        content: "";
        display: block;
        width: 1px;
        height: 15px;
        background: #ccc;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(-45deg);
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(2) {
        content: "";
        display: block;
        width: 1px;
        height: 15px;
        background: #ccc;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(45deg);
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_cont {
        font-size: 13px;
        padding: 0 15px;
    }
    .alert_custom_wrap .custom_box .alert_custom_btn .alert_btn {
        /* line-height: 45px; */
        font-size: 14px;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
공유하기 (상품 상세 / 게시판 뷰페이지)
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.share_popup_wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1002;
    display: none;
    margin-left: -172px;
    transform: translateY(-50.3%);
}
.share_popup_wrap .it_share_popup {
    position: relative;
    min-width: 345px;
    padding: 15px 15px 30px;
    border: 1px solid #959595;
    background-color: #fff;
}

.it_share_popup .share_title {
    margin-bottom: 25px;
}
.it_share_popup .share_title .title {
    font-size: 15px;
    color: #0c0c0c;
}
.it_share_popup .share_content .share_ul {
    text-align: center;
}
.it_share_popup .share_ul > li {
    display: inline-block;
    padding: 0 6px;
}
.it_share_popup .share_ul > li > a {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.it_share_popup .btn_close {
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
}
.it_share_popup .input_url {
    border: none;
    width: 1px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}
.dim_layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .share_popup_wrap {
        position: fixed;
        width: 290px;
        margin-left: -145px;
    }
    .share_popup_wrap .it_share_popup {
        min-width: 100%;
        padding: 15px 15px 24px;
    }
    .it_share_popup .share_title .title {
        font-size: 13px;
    }
    .it_share_popup .share_ul > li {
        padding: 0 5px;
    }
    .it_share_popup .share_ul > li > a {
        width: 45px;
    }
    .it_share_popup .share_ul > li > a img {
        display: inline-block;
        width: 100%;
    }
    .it_share_popup .btn_close {
        right: 13px;
    }
    .it_share_popup .btn_close img {
        width: 12px;
    }
}

/* 시안 확인 관련 커스텀 모달
\skin\addon\shop-item-sian\widget.php */
.alert_custom_wrap .quote_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    width: 350px;
    max-width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.alert_custom_wrap .quote_box .quote_cont {
    padding: 15px 15px 27px;
}
.alert_custom_wrap .quote_box .quote_cont .alert_close_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.alert_custom_wrap .quote_box .quote_cont .alert_close {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
}
.alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(1) {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(-45deg);
}
.alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(2) {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(45deg);
}
.alert_custom_wrap .quote_box .quote_cont .alert_cont {
    text-align: center;
    font-size: 15px;
    color: #0c0c0c;
    line-height: 25px;
    padding: 0 30px;
}
.alert_custom_wrap .quote_box .alert_quote_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e3e3e3;
}
.alert_custom_wrap .quote_box .alert_quote_btn .alert_btn {
    width: 50%;
    line-height: 67px;
    font-size: 15px;
    color: var(--main-box-font-color);
    font-weight: 400;
    text-align: center;
    line-height: 1em;
    padding: 17px 0;
}
.alert_custom_wrap .quote_box .alert_quote_btn .alert_btn.full {
    /* width:100% !important;  */
}
.alert_custom_wrap .quote_box .alert_quote_btn button.alert_btn {
    color: var(--main-btn-font-point-color);
}
.alert_custom_wrap .quote_box .alert_quote_btn a {
    border-right: 1px solid #e3e3e3;
}
.alert_custom_wrap .quote_box .alert_quote_btn button {
    border: 0;
    background: #fff;
}
.alert_custom_wrap .quote_box.open {
    opacity: 1;
    visibility: visible;
}
.alert_custom_wrap .alert_quote_bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.alert_custom_wrap .alert_quote_bg.open {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 991px) {
    .alert_custom_wrap .quote_box {
        width: calc(100% - 50px);
        border-radius: 10px;
    }
    .alert_custom_wrap .quote_box .quote_cont {
        padding: 15px 15px 34px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close_wrap {
        margin-bottom: 5px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close {
        width: 15px;
        height: 15px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(1) {
        content: "";
        display: block;
        width: 1px;
        height: 15px;
        background: #999;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(-45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(2) {
        content: "";
        display: block;
        width: 1px;
        height: 15px;
        background: #999;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_cont {
        font-size: 16px;
        line-height: 19px;
        padding: 0 62px;
    }
    .alert_custom_wrap .quote_box .alert_quote_btn .alert_btn {
        font-size: 14px;
        padding: 15px 0;
    }
}
@media (max-width: 480px) {
    .alert_custom_wrap .quote_box {
        width: 330px;
    }
    .alert_custom_wrap .quote_box .quote_cont {
        padding: 10px 10px 20px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close_wrap {
        margin-bottom: 16px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(1) {
        content: "";
        display: block;
        width: 1px;
        height: 20px;
        background: #999;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(-45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(2) {
        content: "";
        display: block;
        width: 1px;
        height: 20px;
        background: #999;
        position: absolute;
        top: 0;
        right: 8px;
        transform: rotate(45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_cont {
        font-size: 16px;
        line-height: 23px;
        padding: 0 15px;
        font-weight: 500;
    }
    .alert_custom_wrap .quote_box .alert_quote_btn .alert_btn {
        /* line-height: 45px; */
        font-size: 15px;
    }
}

/* 공통 팝업*/
.responsive .modal .modal-dialog {
    width: 440px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
}
@media (max-width: 991px) {
    .responsive .modal .modal-dialog {
        /* width: calc(100% - 30px); */
        width: 100%;
        margin: 0;
        top: initial;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
상품 상세페이지 > 쿠폰 모달창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.coupon_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.coupon_modal .c_m_con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 32px 28px 32px 32px;
    border-radius: 20px;
}
.coupon_modal .c_m_con .modal_title {
    color: #0c0c0c;
    font-size: 26px;
    font-weight: 600;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.coupon_modal .c_m_con .modal_title .cu_m_close {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border: none;
}
.coupon_modal .c_m_con .modal_title .cu_m_close::before,
.coupon_modal .c_m_con .modal_title .cu_m_close::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: #cfcfcf;
    position: absolute;
    top: 50%;
    left: 50%;
}
.coupon_modal .c_m_con .modal_title .cu_m_close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.coupon_modal .c_m_con .modal_title .cu_m_close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.coupon_modal .c_m_con > p {
    color: #5d5d5d;
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 20px;
}
.coupon_modal .c_m_con .scroll-box {
    max-height: 42vh;
    overflow-y: auto;
}
.coupon_modal .c_m_con .scroll-box::-webkit-scrollbar {
    width: 5px;
}
.coupon_modal .c_m_con .coupon_info {
    border: 1px solid #ebebeb;
    border-radius: 10px;
    display: flex;
    position: relative;
}
.coupon_modal .c_m_con .coupon_info + li {
    margin-top: 10px;
}
.coupon_modal .c_m_con .coupon_info .coupon_left {
    width: calc(100% - 100px);
    border-radius: 10px 0 0 10px;
    border-right: 1px solid #ebebeb;
    padding: 17px 20px 15px;
}
.coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_dc {
    font-family: "Pretendard";
    color: #0c0c0c;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_tt {
    color: #5d5d5d;
    font-size: 14px;
    line-height: 20px;
}
.coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_co {
    color: #999;
    font-size: 14px;
    line-height: 20px;
}
.coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_ti {
    color: #999;
    font-size: 14px;
    line-height: 20px;
}
.coupon_modal .c_m_con .coupon_info .coupon_right {
    background-color: #f6f6f6;
    border-radius: 0 10px 10px 0;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    flex-direction: column;
}
.coupon_modal .c_m_con .coupon_info .coupon_right .button_receive_coupon {
    width: 100%;
    height: 100%;
    position: relative;
}
.coupon_modal .c_m_con > .cu_m_close {
    display: block;
    background-color: var(--main-btn-point-color);
    border-radius: 5px;
    width: 100%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 17px;
    margin-top: 20px;
}
.coupon_modal .c_m_con > .cu_m_close:focus {
    outline: none;
}

.coupon_modal .c_m_con .acc_box {
    position: absolute;
    line-height: 1em;
    top: 10px;
    right: 10px;
}
.coupon_modal .c_m_con .acc_box {
    display: flex;
    align-items: center;
}
.coupon_modal .c_m_con .acc_box .acc_popup {
    display: none;
    background-color: #fff;
    position: absolute;
    top: 20px;
    right: 0;
    padding: 8px 14px;
    width: auto;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 10;
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    height: 77px;
    overflow-y: auto;
}
.coupon_modal .c_m_con .acc_box .acc_popup::-webkit-scrollbar {
    width: 2px;
}
.coupon_modal .c_m_con .acc_box::before {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 10;
}
@media (max-width: 480px) {
    .coupon_modal .c_m_con .acc_box .acc_popup {
        border-radius: 2.5px;
        padding: 6.5px 12px;
        top: 20px;
        font-size: 11.5px;
        list-style: 16.5px;
        height: 57px;
    }
    .coupon_modal .c_m_con .acc_box .acc_popup::before {
        height: 30px;
        top: -20px;
    }
    .coupon_modal .c_m_con .acc_box .acc_popup p {
        font-size: 11.5px;
        line-height: 16.5px;
    }
    .coupon_modal .c_m_con .acc_box img {
        height: 12px;
    }
}

@media (max-width: 991px) {
    .coupon_modal .c_m_con {
        top: auto;
        bottom: 0;
        left: 0;
        border-radius: 10px 10px 0 0;
        transform: none;
        padding: 10px 18px 15px;
        max-width: 100%;
    }
    .coupon_modal .c_m_con .pay_bar {
        background-color: #e6e6e6;
        width: 40px;
        height: 4px;
        border-radius: 2px;
        margin: 0 auto;
    }
    .coupon_modal .c_m_con .modal_title {
        font-size: 16px;
        align-items: flex-end;
    }
    .coupon_modal .c_m_con > p {
        font-size: 12.5px;
        margin-bottom: 15px;
    }
    .coupon_modal .c_m_con .modal_title .cu_m_close {
        width: 15px;
        height: 15px;
        margin-bottom: 40px;
    }
    .coupon_modal .c_m_con .modal_title .cu_m_close::before,
    .coupon_modal .c_m_con .modal_title .cu_m_close::after {
        width: 17px;
    }
    .coupon_modal .c_m_con .coupon_info {
        border-radius: 5px;
    }
    .coupon_modal .c_m_con .coupon_info .coupon_left {
        padding: 11.25px 15px;
        width: calc(100% - 75px);
    }
    .coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_dc {
        font-size: 15px;
    }
    .coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_tt,
    .coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_co,
    .coupon_modal .c_m_con .coupon_info .coupon_left .coupon_info_ti {
        font-size: 11.5px;
        line-height: 16.5px;
    }
    .coupon_modal .c_m_con .coupon_info .coupon_right {
        font-size: 12.5px;
        width: 75px;
        border-radius: 0 5px 5px 0;
    }
    .coupon_modal .c_m_con > .cu_m_close {
        margin-top: 15px;
        font-size: 14px;
        line-height: 45px;
        border-radius: 2.5px;
    }
}
.coupon_modal .loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #235cf5;
    animation: spin 0.75s ease-in-out infinite;
    -webkit-animation: spin 0.75s ease-in-out infinite;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
결제 페이지 > 배송지 관련 + 주문금액쿠폰+ 
            + 배송비쿠폰 +상품개별쿠폰
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.order_pop {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 478px;
    padding: 40px 10px 30px 30px;
    background: #fff;
    border-radius: 20px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.order_pop.shippingChange2_pop {
    min-height: 603px;
}
.order_pop.shippingChange2_pop > .order_pop_btn {
    margin-top: 100px;
}

.order_pop.active {
    opacity: 1;
    visibility: visible;
}

.order_pop * {
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.order_pop ::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.order_pop *::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.order_pop ::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.order_pop *::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.order_pop ::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.order_pop *::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.order_pop ::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.order_pop *::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.order_pop ::-webkit-scrollbar-track {
    background: #fff;
}
.order_pop *::-webkit-scrollbar-track {
    background: #fff;
}
.order_pop ::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #eef1f4;
    border-radius: 10px;
}
.order_pop *::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #eef1f4;
    border-radius: 10px;
}
.order_pop > .order_pop_title {
    margin-bottom: 40px;
    font-size: 22px;
    color: #0c0c0c;
    font-weight: 500;
    position: relative;
    line-height: 1em;
}
.order_pop > .order_pop_title .order_modify {
    position: absolute;
    right: 30px;
    top: 0;
    font-size: 16px;
    color: #0c0c0c;
    font-weight: 300;
}
.order_pop > .order_pop_title .order_modify span {
    display: inline-block;
    padding-left: 10px;
}

.order_pop > .order_pop_content {
    padding-right: 10px;
}
.order_pop > .order_pop_btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.order_pop > .order_pop_btn a {
    display: block;
    width: calc(50% - 5px);
    height: 50px;
    line-height: 48px;
    border-radius: 5px;
    border: 1px solid #b1b1b1;
    text-align: center;
    font-size: 16px;
    color: #0c0c0c;
    margin-right: 10px;
}

.order_pop > .order_pop_btn a.order_pop_confirm {
    background: var(--main-btn-point-color);
    border-color: var(--main-btn-line-point-color);
    color: #fff;
}
.order_pop > .order_pop_btn a:last-child {
    margin-right: 0;
}
.order_pop.shippingChange_pop .order_pop_btn {
    margin-top: 96px;
}

.order_pop .shipping_pop_content {
    overflow: hidden;
    overflow-y: auto;
    max-height: 384px;
}

.order_pop .shipping_pop_content .no_data {
    padding: 150px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}
.order_pop .shipping_pop_content .no_data img {
    display: block;
    margin: 0 auto 15px;
}

.order_pop .shipping_pop_content .shipping_cont {
    margin-bottom: 40px;
}
.order_pop .shipping_pop_content .shipping_cont:last-child {
    margin-bottom: 0;
}

.order_pop .shipping_pop_content .shipping_cont .shipping_btn {
    margin-left: 32px;
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn a {
    display: block;
    width: 48px;
    height: 27px;
    line-height: 28px;
    background: #eeeeee;
    border-radius: 5px;
    color: #999;
    font-size: 15px;
    text-align: center;
    margin-right: 7px;
    transition: all 0.2s ease;
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn a:hover {
    background: var(--main-btn-point-color);
    color: #fff;
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn a:last-child {
    margin-right: 0;
}

.order_pop .shipping_pop_content label {
    align-items: flex-start;
    margin-right: 10px;
}
.order_pop .shipping_pop_content label .circle {
    top: 2px;
}

.order_pop .shipping_pop_content .shipping_right {
    width: calc(100% - 32px);
}
.order_pop .shipping_pop_content .shipping_right .shipping_name {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.order_pop .shipping_pop_content .shipping_right .shipping_name .name {
    font-size: 23px;
    color: #0c0c0c;
    font-weight: 500;
    line-height: 1.2em;
}
.order_pop .shipping_pop_content .shipping_right .shipping_name .sticker {
    font-size: 13px;
    color: var(--main-box-font-point-color);
    border: 1px solid var(--main-box-line-point-color);
    padding: 0 5.8px;
    height: 22px;
    line-height: 20px;
    border-radius: 11px;
    margin-left: 8px;
}

.order_pop .shipping_pop_content .shipping_right .shipping_tel_email {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div {
    margin-right: 22px;
    position: relative;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div::after {
    content: "";
    width: 1px;
    height: 14px;
    background: #aaaaaa;
    position: absolute;
    top: 2px;
    right: -12px;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div:last-child {
    margin-right: 0;
    line-height: 1em;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div:last-child::after {
    display: none;
}

.order_pop .shipping_pop_content .shipping_right .shipping_addr {
    font-size: 16px;
    color: #5d5d5d;
    line-height: 1.5;
}

.order_pop .shipping_pop_content .no_address {
    min-height: 363px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order_pop .shipping_pop_content .no_address p {
    font-size: 16px;
    color: #5d5d5d;
    font-weight: 400;
}

.order_pop .shippingChange_pop_content {
    overflow: hidden;
    overflow-y: auto;
    max-height: 400px;
}

.order_pop .shippingChange_pop_content .write_cont {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.order_pop .shippingChange_pop_content .write_cont.write_addr_cont {
    align-items: flex-start;
}
.order_pop .shippingChange_pop_content .write_cont.write_addr_cont .write_label {
    position: relative;
    top: 15px;
}

.order_pop .shippingChange_pop_content .write_cont:last-child {
    margin-bottom: 0;
}
.order_pop .shippingChange_pop_content .write_cont.check_write_cont {
    justify-content: flex-end;
}

.order_pop .shippingChange_pop_content .write_cont .write_label {
    width: 90px;
    font-size: 16px;
    color: #444;
    font-weight: 300;
}

.order_pop .shippingChange_pop_content .write_cont .write_right {
    width: calc(100% - 90px);
}

.order_pop .shippingChange_pop_content .write_cont .write_right .write_input {
    width: 100%;
    height: 45px;
    line-height: 43px;
    border-radius: 5px;
    border: 1px solid #d6d6d6;
    font-size: 16px;
    font-weight: 300;
    color: #0c0c0c;
    background-color: #fff;
    padding: 0 15px;
}

.order_pop .shippingChange_pop_content .write_cont .write_right .write_input:focus {
    border-color: var(--main-box-line-point-color);
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_error {
    font-size: 13px;
    color: #ff0000;
    font-weight: 300;
    margin-top: 10px;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr {
    display: flex;
    margin-bottom: 8px;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr .write_input {
    width: calc(100% - 130px);
}

.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr input[type="button"] {
    width: 120px;
    height: 45px;
    line-height: 43px;
    background: var(--main-btn-point-color);
    border-color: var(--main-btn-line-point-color);
    font-size: 16px;
    font-weight: 300;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    display: block;
    cursor: pointer;
    margin-left: 10px;
}

.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.third_addr {
    margin-bottom: 0;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.fourth_addr {
    display: none;
}

.order_pop_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.order_pop_bg.active {
    opacity: 1;
    visibility: visible;
}

#od_coupon_frm .order_pop,
#sc_coupon_frm .order_pop {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: translate(0, 0) rotate(0);
}
#od_coupon_frm .order_pop .od_coupon_ul,
#sc_coupon_frm .order_pop .od_coupon_ul {
    width: 100%;
    height: auto;
    max-height: 220px;
}
#od_coupon_frm .order_pop .od_coupon_ul td,
#sc_coupon_frm .order_pop .od_coupon_ul td {
    padding-bottom: 30px;
}

.od_coupon_tt {
    color: #1b1b1b;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 40px;
}
.od_coupon_ul {
    height: 220px;
    overflow-y: scroll;
}

.od_coupon_li {
    margin-bottom: 30px;
    position: relative;
}
.od_coupon_li.no_coupon {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.od_coupon_li.radio_disabled .od_coupon_label {
    cursor: initial;
}
.od_coupon_li.radio_disabled .od_coupon_label .od_coupon_info_dc {
    color: #e1e1e1;
}
.od_coupon_li.radio_disabled .od_coupon_label .od_coupon_info_tt {
    color: #e1e1e1;
}
.od_coupon_li input[type="radio"] {
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
}
.od_coupon_li input + .od_coupon_label {
    position: relative;
    cursor: pointer;
    align-items: flex-start;
}

.od_coupon_li input + .od_coupon_label .od_coupon_info {
    line-height: 22px;
}
.od_coupon_li input + .od_coupon_label .od_coupon_info_dc {
    font-size: 23px;
    color: #333;
    font-weight: 500;
}

.od_coupon_li input + .od_coupon_label .od_coupon_info_tt {
    margin-top: 14px;
    font-size: 16px;
    color: #666;
}

.od_coupon_li button {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #d6d6d6;
    background: url(../img/icon_check_off.png) no-repeat center center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.od_coupon_li button + .od_coupon_label {
    position: relative;
    padding-left: 30px;
}
.od_coupon_li button + .od_coupon_label .od_coupon_info {
    line-height: 22px;
}
.od_coupon_li button + .od_coupon_label .od_coupon_info_dc {
    font-size: 23px;
    color: #333;
    font-weight: 500;
}
.od_coupon_li button + .od_coupon_label .od_coupon_info_tt {
    margin-top: 14px;
    font-size: 16px;
    color: #666;
}
.od_coupon_btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.od_coupon_btn li {
    width: calc(50% - 5px);
    border: 1px solid #b1b1b1;
    height: 50px;
    line-height: 48px;
    text-align: center;
    border-radius: 25px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.od_coupon_btn li.main {
    background: #235cf5;
    color: #fff;
    border-color: #235cf5;
}
.od_coupon_btn li button {
    display: block;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    width: 100%;
    height: 100%;
}
@media (max-width: 991px) {
    .order_pop.shippingChange2_pop {
        min-height: auto;
    }
    .order_pop.shippingChange2_pop > .order_pop_btn {
        margin-top: 30px;
    }

    .order_pop .shipping_pop_content .no_data {
        font-size: 12.5px;
        padding: 113px 0;
    }
    .order_pop .shipping_pop_content .no_data img {
        width: 41px;
        height: 41px;
    }
}

@media (max-width: 480px) {
    .order_pop {
        width: calc(100% - 30px);
        padding: 25px 5px 15px 15px;
        border-radius: 10px;
    }

    .order_pop > .order_pop_title {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .order_pop > .order_pop_title .order_modify {
        font-size: 12px;
        right: 15px;
        top: 1px;
    }
    .order_pop > .order_pop_btn {
        margin-top: 30px;
    }
    .order_pop > .order_pop_btn a {
        height: 40px;
        line-height: 38px;
        border-radius: 2.5px;
        font-size: 13px;
    }
    .order_pop.shippingChange_pop .order_pop_btn {
        margin-top: 51px;
    }

    .order_pop .shipping_pop_content {
        max-height: 40vh;
    }

    .order_pop .shipping_pop_content .shipping_cont {
        margin-bottom: 25px;
    }

    .order_pop .shipping_pop_content .shipping_cont .shipping_btn {
        margin-top: 10px;
    }
    .order_pop .shipping_pop_content .shipping_cont .shipping_btn a {
        width: 38px;
        height: 22px;
        line-height: 22px;
        font-size: 12px;
        margin-right: 6px;
    }

    .order_pop .shipping_pop_content label .circle {
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }
    .order_pop .shipping_pop_content label .circle::before {
        width: 2px;
        height: 6px;
        border-radius: 3px;
        top: 9px;
        left: 6px;
    }
    .order_pop .shipping_pop_content label .circle::after {
        width: 2px;
        height: 10px;
        border-radius: 5px;
        top: 5px;
        left: 11px;
    }

    .order_pop .shipping_pop_content .shipping_right .shipping_name {
        margin-bottom: 15px;
    }
    .order_pop .shipping_pop_content .shipping_right .shipping_name .name {
        font-size: 18px;
    }
    .order_pop .shipping_pop_content .shipping_right .shipping_name .sticker {
        font-size: 10px;
        padding: 0 8px;
        height: 18px;
        line-height: 16px;
        position: relative;
        top: 2px;
    }

    .order_pop .shipping_pop_content .shipping_right .shipping_tel_email {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .order_pop .shipping_pop_content .shipping_right .shipping_tel_email div {
        margin-right: 18px;
    }
    .order_pop .shipping_pop_content .shipping_right .shipping_tel_email div::after {
        height: 12px;
        right: -10px;
    }

    .order_pop .shipping_pop_content .shipping_right .shipping_addr {
        font-size: 12px;
    }

    .order_pop .shipping_pop_content .no_address {
        min-height: 271px;
    }
    .order_pop .shipping_pop_content .no_address p {
        font-size: 13px;
    }

    .order_pop .shippingChange_pop_content {
        max-height: 250px;
    }

    .order_pop .shippingChange_pop_content .write_cont.write_addr_cont .write_label {
        top: auto;
    }

    .order_pop .shippingChange_pop_content .write_cont {
        flex-wrap: wrap;
        margin-bottom: 22px;
    }
    .order_pop .shippingChange_pop_content .write_cont:last-child {
        margin-bottom: 0;
    }

    .order_pop .shippingChange_pop_content .write_cont .write_label {
        /* width: 100%; */
        font-size: 15px;
        margin-bottom: 10px;
        font-size: 13px;
        width: 70px;
    }

    .order_pop .shippingChange_pop_content .write_cont .write_right {
        /* width: 100%; */
        width: calc(100% - 70px);
    }

    .order_pop .shippingChange_pop_content .write_cont .write_right .write_input {
        height: 40px;
        line-height: 38px;
        font-size: 13px;
        border-radius: 3px;
    }

    .order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr .write_input {
        width: calc(100% - 85px);
    }

    .order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr input[type="button"] {
        width: 80px;
        margin-left: 5px;
        height: 40px;
        line-height: 38px;
        font-size: 12px;
        border-radius: 3px;
    }

    .od_coupon_ul {
        height: 180px;
    }

    .od_coupon_li.no_coupon {
        font-size: 12px;
    }

    .od_coupon_li input + .od_coupon_label .circle {
        width: 21px;
        height: 21px;
    }
    .od_coupon_li input + .od_coupon_label .circle:before {
        width: 2px;
        height: 6px;
        top: 8px;
        left: 6px;
    }
    .od_coupon_li input + .od_coupon_label .circle:after {
        width: 2px;
        height: 9px;
        top: 5.5px;
        left: 10.2px;
    }

    .od_coupon_li input + .od_coupon_label .od_coupon_info_dc {
        font-size: 18px;
    }

    .od_coupon_li input + .od_coupon_label .od_coupon_info_tt {
        font-size: 12px;
        margin-top: 9px;
    }

    .od_coupon_btn li {
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
상품 상세페이지 > 장바구니 클릭 시 노출 모달
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.cart_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.cart_modal .cart_m_con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 840px;
    background-color: #fff;
    border-radius: 20px;
}
.cart_modal .cart_m_con .alert_cont {
    text-align: center;
    padding: 40px 0 20px;
    border-bottom: 1px solid #f2f2f2;
}
.cart_modal .cart_m_con .swiper-button-next:after,
.cart_modal .cart_m_con .swiper-button-prev:after {
    display: none;
}
.cart_modal .cart_m_con .alert_text {
    color: #5d5d5d;
    font-size: 18px;
    line-height: 1em;
    margin-bottom: 25px;
}
.cart_modal .cart_m_con .alert_btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.cart_modal .cart_m_con .alert_btn_box .alert_btn {
    background-color: var(--main-btn-point-color);
    line-height: 50px;
    border: none;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    padding: 0 41px;
}
.cart_modal .cart_m_con .alert_btn_box .alert_btn.alert_close {
    background-color: #f6f6f6;
    color: #0c0c0c;
}
.cart_modal .cart_m_con .alert_itemrelation {
    padding: 25px 60px 70px;
}
.cart_modal .cart_m_con .panel-title {
    color: #0c0c0c;
    font-size: 23px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 25px;
}

.cart_modal .cart_m_con .timer_box_i {
    padding: 4.5px 5px;
    position: absolute;
    top: 12px;
    left: 13px;
    color: #fff;
    background-color: #f86e78;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    line-height: 1em;
}
.cart_modal .cart_m_con .timer_box_i .time {
    font-size: 13px;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 800;
    line-height: 1;
}
.cart_modal .cart_m_con .timer_box_i .time_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart_modal .cart_m_con .timer_box_i .text {
    font-size: 12px;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 800;
    margin-left: 5px;
    line-height: 1;
}
.cart_modal .cart_m_con .timer_box_i .time_box .text {
    margin-left: 0;
}
.cart_modal .cart_m_con .img-wrap {
    padding-bottom: 100%;
}
.cart_modal .cart_m_con .img-wrap .img-item {
    border: 1px solid #f3f3f3;
}
.cart_modal .cart_m_con .item-content {
    padding-top: 10px;
}
.cart_modal .cart_m_con .brand_icon {
    font-size: 11px;
    color: #828c94;
    line-height: 1em;
}
.cart_modal .cart_m_con strong {
    font-size: 13px;
    font-weight: 400;
    color: #424242;
    line-height: 1.4;
    margin: 6px 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cart_modal .cart_m_con .item_price_box {
    line-height: 1.2em;
}
.cart_modal .cart_m_con .item_price_box .percent {
    font-size: 18px;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 800;
    color: #f73111;
}
.cart_modal .cart_m_con .item_price_box .real_price {
    font-size: 18px;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 800;
    color: #0c0c0c;
}
.cart_modal .cart_m_con .item_info {
    margin-top: 10px;
    margin-bottom: 6px;
    line-height: 1em;
}
.cart_modal .cart_m_con .item_info .item_star .star_icon {
    font-size: 14px;
    color: #f4c748;
}
.cart_modal .cart_m_con .item_info .item_star_num {
    font-size: 12px;
    color: #444;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 600;
}
.cart_modal .cart_m_con .item_info .use_count {
    margin-left: 2px;
    font-size: 12px;
    color: #9e9e9e;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 800;
}
.cart_modal .cart_m_con .item_cont .item_depart {
    display: flex;
    align-items: center;
    line-height: 1em;
}
.cart_modal .cart_m_con .item_cont .item_depart span {
    font-size: 13px;
    color: #1673f1;
    font-family: "SUIT-Bold";
    font-style: oblique;
    letter-spacing: -0.035em;
    margin-left: 3px;
}
.cart_modal .cart_m_con .item_cont .item_depart_num {
    font-size: 12px;
    color: #6db4e6;
    margin-top: 7px;
}
.cart_modal .cart_m_con .item_cont .item_icon {
    margin-top: 6px;
}
.cart_modal .cart_m_con .coupon_box {
    display: inline-block;
    margin-top: 6px;
}
.cart_modal .cart_m_con .coupon_icon {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: 3px;
    border: 1px solid #eaedef;
    line-height: 1em;
}
.cart_modal .cart_m_con .coupon_icon span {
    font-size: 11px;
    font-weight: 500;
    color: #242424;
    margin-left: 5px;
}
.cart_modal .cart_m_con .item_price_box .sale_cont {
    display: inline-block;
    margin-right: 5px;
}
.cart_modal .cart_m_con .swiper-box {
    position: relative;
}
.cart_modal .cart_m_con .swiper-box .swiper-container {
    overflow: hidden;
}
.cart_modal .cart_m_con .item_price_box .sale_cont span {
    display: block;
}
.cart_modal .cart_m_con .item_price_box .sale_cont span.perc {
    display: inline-block;
    font-size: 14px;
}
.cart_modal .cart_m_con .item_price_box > h5 {
    color: #0c0c0c;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}
.cart_modal .cart_m_con .item_price_box .sale_cont02 {
    display: block;
}
.cart_modal .cart_m_con .item_price_box .sale_cont strike {
    color: #999;
    font-size: 13px;
    font-weight: 400;
}
.cart_modal .cart_m_con .item-content strong {
    color: #0c0c0c;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cart_modal .cart_m_con .item-content .item-desc {
    font-size: 12px;
    line-height: 1.2em;
    margin-bottom: 5px;
}
.cart_modal .cart_m_con .item-info {
    display: block;
    text-align: left;
    padding: 0;
    margin: 7px 0 6px;
    border-top: none;
    background: transparent;
    line-height: 1em;
}
.cart_modal .cart_m_con .item-info span {
    margin-right: 0;
    font-size: 12px;
    color: #444;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 600;
}
.cart_modal .cart_m_con .item-info span.use_count {
    margin-right: 0;
    font-size: 12px;
    color: #999;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 800;
}
.cart_modal .cart_m_con .item-star {
    color: #0c0c0c;
    font-size: 13px;
    font-weight: 400;
}
.cart_modal .cart_m_con .item-star .star_icon {
    font-size: 14px;
    color: #f4c748;
}
.cart_modal .cart_m_con .use_count {
    font-size: 13px;
    color: #999999;
}
.cart_modal .cart_m_con .btn_cart {
    display: block;
    width: 27px;
    height: 29px;
    position: absolute;
    right: 13px;
    bottom: 13px;
    transition: all 0.3s;
}
.cart_modal .cart_m_con .btn_cart span.item_cart_icon {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/item_cart_icon_off.png) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
}
.cart_modal .cart_m_con .btn_cart:hover span.item_cart_icon {
    opacity: 0.6;
}
/* .cart_modal .cart_m_con .btn_cart.on span.item_cart_icon {background: url(../img/item_cart_icon_on.png) no-repeat;} */
.cart_modal .cart_m_con .btn_cart.on span.item_cart_icon {
    opacity: 0.6;
}
.cart_modal .cart_m_con .swiper-button {
    top: 54%;
    box-shadow: 0px 5px 10px 0px rgba(61, 61, 61, 3.15);
    transition: all 0.3s;
    opacity: 0.8;
}
.cart_modal .cart_m_con .swiper-button::after {
    display: none;
}
.cart_modal .cart_m_con .swiper-button-prev {
    left: -14px;
}
.cart_modal .cart_m_con .swiper-button-next {
    right: -14px;
}
.cart_modal .cart_m_con .swiper-button:hover {
    opacity: 1;
}
.cart_modal .cart_m_con .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}
.cart_modal .cart_m_con .swiper-button img {
    max-width: inherit;
}

@media (max-width: 991px) {
    .cart_modal .cart_m_con {
        border-radius: 10px 10px 0 0;
        top: auto;
        transform: translate(-50%, 0);
        bottom: 0;
    }
    .cart_modal .cart_m_con .alert_cont {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 14px 11px;
    }
    .cart_modal .cart_m_con .alert_text {
        display: flex;
        align-items: center;
        margin-bottom: 0;
        font-size: 12.5px;
    }
    .cart_modal .cart_m_con .alert_text span {
        color: #0c0c0c;
        font-weight: 600;
    }
    .cart_modal .cart_m_con .alert_text .itme_img {
        margin-right: 10px;
    }
    .cart_modal .cart_m_con .alert_text img {
        width: 37.5px;
        height: 37.5px;
    }
    .cart_modal .cart_m_con .alert_btn_box .alert_btn {
        background-color: #fff;
        border: 1px solid var(--main-btn-font-point-color);
        border-radius: 2.5px;
        color: var(--main-btn-font-point-color);
        font-size: 12.5px;
        font-weight: 400;
        height: 36px;
        line-height: 36px;
        padding: 0 13.75px;
    }
    .cart_modal .cart_m_con .alert_itemrelation {
        padding: 17px 17px 15px;
    }
    .cart_modal .cart_m_con .alert_cart_tit {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 17px;
    }
    .cart_modal .cart_m_con .panel-title {
        font-size: 14px;
        margin-bottom: 0;
    }
    .cart_modal .cart_m_con .alert_cart_tit a {
        color: var(--main-btn-font-point-color);
        font-size: 12.5px;
        font-weight: 600;
    }

    .cart_modal .cart_m_con .swiper-container {
        width: calc(100% + 15px);
    }
    .cart_modal .cart_m_con .item_rel_tit {
        margin: 0;
    }
    .cart_modal .cart_m_con .swiper-button {
        display: none;
    }
    .cart_modal .cart_m_con .item-content strong {
        font-size: 12px;
        line-height: 16px;
    }
    .cart_modal .cart_m_con .item_price_box > h5 {
        font-size: 11.5px;
        font-weight: 600;
        padding-right: 5px;
    }
    .cart_modal .cart_m_con .item_price_box > h5 .real_price {
        font-size: 15px;
        font-weight: 800;
    }
    .cart_modal .cart_m_con .item_price_box .sale_cont {
        margin-right: 3px;
    }
    .cart_modal .cart_m_con .item_price_box .sale_cont span.percent {
        font-size: 15px;
        font-weight: 600;
    }
    .cart_modal .cart_m_con .item_price_box .sale_cont span.perc {
        font-size: 13px;
        font-weight: 600;
    }
    .cart_modal .cart_m_con .item_price_box .sale_cont strike {
        font-size: 10.5px;
    }
    .cart_modal .cart_m_con .item-info {
        line-height: 12px;
    }
    .cart_modal .cart_m_con .item-info .item-star {
        font-size: 9.5px;
    }
    .cart_modal .cart_m_con .item-info .use_count {
        font-size: 9.5px;
    }
    .cart_modal .cart_m_con .item-info .item-star .star_icon {
        font-size: 10px;
    }
    .cart_modal .cart_m_con .timer_box_i {
        top: 6px;
        left: 6px;
    }
    .cart_modal .cart_m_con .timer_box_i .time {
        font-size: 10px;
    }
    .cart_modal .cart_m_con .timer_box_i .text {
        font-size: 10px;
    }
    .cart_modal .cart_m_con .item_list strong {
        font-size: 12px;
        margin: 8px 0 7px;
    }
    .cart_modal .cart_m_con .item_list .item_price_box {
        margin-top: 0;
    }
    .cart_modal .cart_m_con .item_list .item_price_box .percent {
        font-size: 15px;
        font-weight: 600;
    }
    .cart_modal .cart_m_con .item_list .item_price_box .percent span {
        font-size: 15px;
        font-weight: 600;
    }
    .cart_modal .cart_m_con .item_list .item_price_box .real_price {
        font-size: 15px;
    }
    .cart_modal .cart_m_con .item-info span {
        font-size: 10px;
    }
    .cart_modal .cart_m_con .item-info span.use_count {
        font-size: 10px;
    }
    .cart_modal .cart_m_con .item_cont .item_icon {
        margin-top: 9px;
    }
    .cart_modal .cart_m_con .alert_itemrelation .alert_btn_box {
        margin-top: 20px;
    }
    .cart_modal .cart_m_con .alert_itemrelation .alert_btn_box .alert_close {
        width: 100%;
        color: #333333;
        font-size: 14px;
        line-height: 36px;
        border: 1px solid #f2f2f2;
        background-color: #fff;
    }
}

@media (max-width: 768px) {
    .cart_modal .cart_m_con .btn_cart {
        width: 20px;
        height: 22px;
        right: 7px;
        bottom: 3px;
    }
    .cart_modal .cart_m_con .btn_cart span.item_cart_icon {
        background: url(../../../../img/mitem_cart_icon_off.png) center/20px 22px no-repeat;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
결제페이지 > 개인정보동의 모달창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.shop_agree_pop {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    padding: 40px 10px 30px 30px;
    background: #fff;
    border-radius: 20px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.shop_agree_pop.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 480px) {
    .shop_agree_pop {
        width: calc(100% - 30px);
        padding: 25px 5px 15px 15px;
        border-radius: 10px;
    }
}
.shop_agree_pop * {
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.shop_agree_pop ::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.shop_agree_pop *::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.shop_agree_pop ::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.shop_agree_pop *::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.shop_agree_pop ::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.shop_agree_pop *::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.shop_agree_pop ::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.shop_agree_pop *::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.shop_agree_pop ::-webkit-scrollbar-track {
    background: #fff;
}
.shop_agree_pop *::-webkit-scrollbar-track {
    background: #fff;
}
.shop_agree_pop ::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #eef1f4;
    border-radius: 10px;
}
.shop_agree_pop *::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #eef1f4;
    border-radius: 10px;
}
.shop_agree_pop > .shop_agree_pop_title {
    margin-bottom: 40px;
    font-size: 22px;
    color: #0c0c0c;
    font-weight: 500;
    position: relative;
}
@media (max-width: 480px) {
    .shop_agree_pop > .shop_agree_pop_title {
        font-size: 14px;
        margin-bottom: 30px;
    }
}
.shop_agree_pop > .shop_agree_pop_content {
    padding-right: 10px;
    overflow: hidden;
    overflow-y: auto;
    max-height: 365px;
}
.shop_agree_pop > .shop_agree_pop_btn {
    margin-top: 40px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .shop_agree_pop > .shop_agree_pop_btn {
        margin-top: 30px;
    }
}
.shop_agree_pop > .shop_agree_pop_btn a {
    display: block;
    width: calc(50% - 5px);
    height: 50px;
    line-height: 48px;
    border-radius: 25px;
    background: var(--main-btn-point-color);
    text-align: center;
    font-size: 16px;
    color: #fff;
}
@media (max-width: 480px) {
    .shop_agree_pop > .shop_agree_pop_btn a {
        height: 40px;
        line-height: 38px;
        border-radius: 20px;
        font-size: 13px;
    }
}

.shop_agree_popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.shop_agree_popup_bg.active {
    opacity: 1;
    visibility: visible;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
시안확인 모달창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.it_draft_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    transition: 0.3s;
}
.it_draft_modal.it_draftvi_modal {
    opacity: 0;
    visibility: hidden;
}
.it_draft_modal.it_draftvi_modal.active {
    opacity: 1;
    visibility: visible;
}
.it_draft_modal .it_draft_modal_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.it_draft_modal .it_draft_view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    height: 80vh;
    z-index: 1;
    overflow: hidden;
}
.it_draft_modal .it_draft_view .dr_modal_tt {
    background-color: var(--main-box-point-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
}
.it_draft_modal .it_draft_view .dr_modal_tt h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1em;
}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::before,
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::after {
    content: "";
    display: block;
    width: 2px;
    height: 26px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.it_draft_modal .it_draft_view .dr_cont {
    background-color: #fff;
    padding: 0 12px 0 60px;
    height: calc(80vh - 80px);
}
.it_draft_modal .it_draft_view .dr_wrap {
    overflow-y: auto;
    height: 100%;
    padding-right: 42px;
}
.it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-button {
    background-color: #fff;
}
.it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-track {
    background-color: #fff;
}
.it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
}
.it_draft_modal .it_draft_view .dr_it_row.row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 50px;
}
.it_draft_modal.re_correction_modal .it_draft_view .dr_it_row.row1 {
    padding-top: 0;
}
.it_draft_modal .it_draft_view .dr_it_row.row1 .dr_info {
    flex: 1;
}
.it_draft_modal .it_draft_view .dr_it_row .dr_tit {
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 10px;
}
.it_draft_modal .it_draft_view .dr_it_row .it_text {
    color: #0c0c0c;
    font-size: 14px;
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 16px 20px;
}
.it_draft_modal .it_draft_view .dr_it_row.row2 {
    margin-top: 30px;
}
.it_draft_modal .it_draft_view .draft_skin {
    padding-bottom: 50px;
}
.it_draft_modal .it_draft_view .draft_skin .draft_head {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 5px;
    color: #999;
    font-size: 14px;
    font-weight: 600;
}
.it_draft_modal .it_draft_view .draft_skin .draft_head .dr_cell {
    padding: 16px 0;
    line-height: 1em;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body > li {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body > li.on {
    border: 1px solid var(--main-btn-point-color);
    border-radius: 5px;
}
.it_draft_modal .it_draft_view .draft_skin .dr_cell {
    text-align: center;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell + .dr_cell {
    border-left: 1px solid #e7e7e7;
}
.it_draft_modal .it_draft_view .draft_skin .dr_num {
    width: 5.6%;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num {
    color: #999999;
    font-weight: 600;
}
.it_draft_modal .it_draft_view .draft_skin .dr_con {
    width: 46.469%;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con {
    text-align: left;
    padding: 17px;
    color: #0c0c0c;
    line-height: 22px;
    font-weight: 300;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft {
    width: 31.599%;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_draft {
    padding: 30px 19px 20px;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .img_box {
    border-radius: 5px;
    overflow: hidden;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft img {
    width: 300px;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn {
    border-radius: 5px !important;
    font-size: 13px;
    line-height: 38px;
    transition: 0.2s;
    padding: 0 12px;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn {
    border: 1px solid #d6d6d6;
    background-color: #fff;
    flex: 1;
    outline: none;
    color: #0c0c0c;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn + .btn {
    margin-left: 6px;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn.down_btn {
    background-color: var(--main-btn-point-color);
    color: #fff;
    width: 100%;
    margin-top: 5px;
    display: inline-block;
}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn.none_btn {
    cursor: default;
    width: 100%;
    background-color: #e1e1e1;
    border: 1px solid #e1e1e1;
    color: #757575;
}
.it_draft_modal .it_draft_view .draft_skin .dr_name {
    width: 7.625%;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_name {
    padding: 10px;
    color: #0c0c0c;
    font-weight: 300;
}
.it_draft_modal .it_draft_view .draft_skin .dr_date {
    width: 7.81%;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_date {
    padding: 10px;
    color: #0c0c0c;
    font-weight: 300;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .confirmed_on {
    display: none;
}
.it_draft_modal .it_draft_view .draft_skin .draft_body .on .confirmed_on {
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    background-color: var(--main-btn-point-color);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 11px;
    line-height: 1em;
    border-radius: 5px 0 5px 0;
}
.it_draft_modal .it_draft_view .draft_skin .dr_info_none {
    color: var(--main-box-font-color4);
    font-size: 14px;
    text-align: center;
    padding: 60px 0;
    border-bottom: 1px solid #e7e7e7;
}
.it_draft_modal .it_draft_view .draft_skin .dr_info_none img {
    display: inline-block;
    margin-bottom: 15px;
}

.it_draft_modal.re_correction_modal {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.it_draft_modal.re_correction_modal.active {
    opacity: 1;
    visibility: visible;
}
.it_draft_modal.re_correction_modal .btn {
    outline: none;
}
.it_draft_modal.re_correction_modal .it_draft_view .dr_cont {
    padding: 50px 60px 60px;
    overflow: scroll;
}
.it_draft_modal.re_correction_modal .it_draft_view .dr_wrap {
    overflow-y: visible;
    padding-right: 0;
}
.it_draft_modal.re_correction_modal .dr_it_btn {
    margin-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.it_draft_modal.re_correction_modal .dr_it_btn li {
    display: block;
}
.it_draft_modal.re_correction_modal .dr_it_btn .btn {
    width: 230px;
    line-height: 53px;
    border: 1px solid var(--main-btn-point-color);
    background-color: var(--main-btn-point-color);
    border-radius: 5px !important;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
.it_draft_modal.re_correction_modal .dr_it_btn .btn.btn_close_modal {
    background-color: #fff;
    color: var(--main-btn-point-color);
}
/* 에디터 삽입 전 임시 css */
.it_draft_modal.re_correction_modal .editor_box {
    height: 315px;
    width: 100%;
}

.it_draft_modal.it_upload_modal {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.it_draft_modal.it_upload_modal.active {
    opacity: 1;
    visibility: visible;
}
.it_draft_modal.it_upload_modal .it_draft_view {
    height: auto;
}
.it_draft_modal.it_upload_modal .it_draft_view .dr_cont {
    height: auto;
}
.it_draft_modal.it_upload_modal .dr_it_btn {
    margin-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.it_draft_modal.it_upload_modal .dr_it_btn li {
    display: block;
}
.it_draft_modal.it_upload_modal .dr_it_btn .btn {
    width: 230px;
    line-height: 53px;
    border: 1px solid var(--main-btn-point-color);
    background-color: var(--main-btn-point-color);
    border-radius: 5px !important;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    outline: none;
}
.it_draft_modal.it_upload_modal .dr_it_btn .btn.btn_close_modal {
    background-color: #fff;
    color: var(--main-btn-point-color);
}
.it_draft_modal.it_upload_modal label.left_file {
    border-radius: 5px 0 0 5px;
    margin: 0;
    border: 1px solid #e1e1e1;
    color: #757575;
    font-size: 13px;
    background-color: #f2f2f2;
    text-align: center;
    height: 39px;
    line-height: 39px;
    cursor: pointer;
    width: 73px;
    float: left;
}
.it_draft_modal.it_upload_modal input[type="file"] {
    display: none;
}
.it_draft_modal.it_upload_modal .right_file {
    width: calc(100% - 73px);
    float: left;
}
.it_upload_modal div.right_file input {
    outline: none;
    padding: 0 15px;
    margin-bottom: 25px;
    border-radius: 0 5px 5px 0;
    display: block;
    border: 1px solid #e1e1e1;
    border-left: none;
    width: 100%;
    font-size: 13px;
    height: 39px;
    line-height: 39px;
}
.it_draft_modal.it_upload_modal .dr_alert {
    text-align: center;
    font-size: 12px;
    color: #aaaaaa;
    line-height: 1.4em;
}
@media (max-width: 991px) {
    .it_draft_modal .it_draft_view {
        height: 100vh;
        border-radius: 0;
    }
    .it_draft_modal .it_draft_view .form {
        height: 100%;
    }
    .draftview_btn.off,
    .draftview_btn.off:hover {
        color: #999;
    }
    .it_draft_modal .it_draft_view .dr_modal_tt {
        padding: 17.5px 18px;
    }
    .it_draft_modal .it_draft_view .dr_modal_tt h2 {
        font-size: 17px;
    }
    .it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span {
        width: 15px;
        height: 15px;
    }
    .it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::before,
    .it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::after {
        background-color: #ccc;
        height: 20px;
        width: 1px;
    }
    .it_draft_modal .it_draft_view .dr_cont {
        background-color: #f3f5f7;
        padding: 0 15px;
        height: 100%;
    }
    .it_draft_modal .it_draft_view .dr_wrap {
        padding-right: 0;
    }
    .it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar {
        width: 0;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row1 {
        display: block;
        padding-top: 35px;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row1 .dr_info + .dr_info {
        margin-top: 18px;
    }
    .it_draft_modal .it_draft_view .dr_it_row .it_text {
        background-color: #fff;
        font-size: 15px;
        padding: 12.75px 15px;
        border-radius: 2.5px;
    }
    .it_draft_modal.it_draftvi_modal .it_draft_view .dr_it_row.row2 .dr_tit {
        margin-bottom: 0;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box .mo_text {
        position: relative;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box .mo_text p {
        display: inline-block;
        font-size: 14px;
        color: #0c0c0c;
        font-weight: 500;
        margin-right: 22px;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box.open .mo_text p {
        display: none;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box .arr {
        display: inline-block;
        border-bottom: 1px solid #999999;
        border-right: 1px solid #999999;
        width: 8px;
        height: 8px;
        transform: rotate(45deg);
        position: absolute;
        top: 3px;
        right: 2px;
        transition: 0.2s;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box.open .arr {
        transform: rotate(225deg);
        top: 0px;
    }
    .it_draft_modal .it_draft_view .draft_skin {
        padding-bottom: 100px;
    }
    .it_draft_modal .it_draft_view .draft_skin.off {
        display: none;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_head {
        background-color: #fff;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body {
        padding-bottom: 30px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body > li {
        display: block;
        background-color: #fff;
        border: none;
        border-radius: 2.5px;
        padding: 0 15px 15px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body > li + li {
        margin-top: 20px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell {
        width: 100%;
        display: block;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell + .dr_cell {
        border: none;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell .dr_mtt {
        color: #0c0c0c;
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        padding: 12px 0;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #f2f2f2;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num ul {
        display: flex;
        align-items: center;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num li {
        color: #0c0c0c;
        font-size: 13px;
        font-weight: 300;
        position: relative;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num li + li {
        padding-left: 6px;
        margin-left: 6px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num li + li::before {
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        left: 0;
        width: 1px;
        height: 12px;
        background-color: #e6e6e6;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con {
        padding: 0;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text_wrap {
        background-color: #f7f7f7;
        border-radius: 2.5px;
        padding: 15px 5px 15px 15px;
        height: 160px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text {
        overflow-y: auto;
        height: 100%;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text::-webkit-scrollbar {
        width: 4px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text::-webkit-scrollbar-thumb {
        background-color: #e1e1e1;
    }
    .it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-button {
        background-color: #f7f7f7;
    }
    .it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-track {
        background-color: #f7f7f7;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_draft {
        padding: 15px 0 0;
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_draft .img_box {
        border-radius: 2.5px;
        line-height: 33px;
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_draft img {
        width: 100%;
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_draft .btn {
        border-radius: 2.5px !important;
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn {
        width: calc(50% - 3px);
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn + .btn {
        margin-left: 3px;
    }
    .it_draft_modal .it_draft_view .draft_skin .draft_body .on .confirmed_on {
        padding: 7px 8px;
        left: 0px;
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_info_none {
        border-radius: 2.5px;
        background-color: #fff;
        border: none;
        padding: 40px 0;
    }
    .it_draft_modal .it_draft_view .draft_skin .dr_info_none img {
        width: 38px;
        margin-bottom: 10px;
    }

    .it_draft_modal.re_correction_modal .it_draft_view .dr_wrap {
        overflow-y: auto;
        height: 93vh;
        padding-bottom: 30px;
        padding-top: 35px;
    }
    .it_draft_modal .it_draft_view .dr_it_row.row2 {
        margin-top: 18px;
    }
    .it_draft_modal.re_correction_modal .it_draft_view .dr_cont {
        padding: 0 15px;
    }
    .it_draft_modal.re_correction_modal .dr_it_btn {
        margin-top: 15px;
    }
    .it_draft_modal.re_correction_modal .dr_it_btn li {
        flex: 1;
    }
    .it_draft_modal.re_correction_modal .dr_it_btn .btn {
        width: 100%;
        font-size: 15px;
        line-height: 31px;
        border-radius: 2.5px;
    }
    .it_draft_modal.re_correction_modal .dr_it_btn .btn.btn_close_modal {
        margin: 0;
    }

    .it_draft_modal.it_upload_modal .it_draft_view {
        height: 100vh;
    }
    .it_draft_modal.it_upload_modal .it_draft_view .dr_cont {
        height: calc(100vh - 52px);
    }
    .it_draft_modal.it_upload_modal .dr_it_btn {
        margin-top: 15px;
    }
    .it_draft_modal.it_upload_modal .dr_it_btn li {
        flex: 1;
    }
    .it_draft_modal.it_upload_modal .dr_it_btn .btn {
        width: 100%;
        font-size: 15px;
        line-height: 31px;
        border-radius: 2.5px;
    }
    .it_draft_modal.it_upload_modal .dr_it_btn .btn.btn_close_modal {
        margin: 0;
    }
    .it_upload_modal div.right_file input {
        background-color: #fff;
    }
}

/* 재입고 알림 모달창 */
/* 2024-08-19 (주)파이브센스_FIVESENSES.Corp. 재입고알림 모달창 */
.soldout_sms_pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.soldout_sms_pop .sol_m_con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 20px;
    padding: 34px 30px 40px;
    max-width: 640px;
}
.soldout_sms_pop .sol_m_con .modal_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 26px;
}
.soldout_sms_pop .sol_m_con .modal_title .mo_tt {
    color: #222222;
    font-size: 26px;
    font-weight: 600;
    line-height: 1em;
}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close {
    width: 22px;
    height: 22px;
    position: relative;
    border: none;
    background-color: transparent;
}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::before,
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::after {
    content: "";
    display: block;
    width: 105%;
    height: 1px;
    background-color: #cfcfcf;
    position: absolute;
    top: 50%;
    left: 50%;
}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.soldout_sms_pop .sol_m_con .mo_subject {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
}
.soldout_sms_pop .sol_m_con .user .input-box {
    display: flex;
    align-items: center;
}
.soldout_sms_pop .sol_m_con .user .input-box.it_name_box {
    padding: 25px 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}
.soldout_sms_pop .sol_m_con .user .input-box .mo_subject {
    width: 102px;
}
.soldout_sms_pop .sol_m_con .user .input-box .mo_cont {
    width: calc(100% - 102px);
}
.soldout_sms_pop .sol_m_con .user .input-box p.mo_cont {
    color: #333333;
    font-size: 14px;
    line-height: 1.2em;
}
.soldout_sms_pop .sol_m_con .user .input-box input.mo_cont {
    background-color: #f6f6f6;
    border-radius: 5px;
    font-size: 14px;
    padding: 0 15px;
    height: 45px;
    border: none;
}
.soldout_sms_pop .sol_m_con .privacy_box {
    border: 1px solid #eeeeee;
    border-radius: 5px;
    padding: 20px 10px 25px 25px;
    margin-top: 14px;
    margin-bottom: 12px;
    height: 140px;
    overflow: hidden;
}
.soldout_sms_pop .sol_m_con .privacy {
    height: 115px;
    overflow-y: scroll;
    overflow-x: hidden;
    outline: none;
}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar {
    width: 8px;
}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar-thumb {
    background-color: #d6d6d6;
}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar-track {
    background-color: #fff;
}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar-button {
    background-color: #fff;
}
.soldout_sms_pop .sol_m_con .check-box {
    border: none;
    padding-top: 40px;
    padding-bottom: 38px;
}
.soldout_sms_pop .sol_m_con .check-box .check-input + label:after {
    background: url(/img/mo_check_off.jpg) no-repeat 0 0;
    width: 17px;
    height: 17px;
}
.soldout_sms_pop .sol_m_con .check-box .check-input:checked + label:after {
    background: url(/img/mo_check_on.jpg) no-repeat 0 0;
}
.soldout_sms_pop .sol_m_con .check-box .check-label {
    color: #666;
    font-size: 13px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}
.soldout_sms_pop .sol_m_con .check-box .check-label p {
    line-height: 1em;
}
.soldout_sms_pop .sol_m_con .check-input + label .rectangle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #d8d8d8;
}

.soldout_sms_pop .sol_m_con .check-input:checked + label .rectangle {
    background: var(--main-btn-point-color);
    border: 1px solid var(--main-btn-line-point-color);
}

.soldout_sms_pop .sol_m_con .check-input + label .rectangle::before {
    content: "";
    width: 2px;
    height: 4px;
    background: transparent;
    position: absolute;
    top: 7px;
    left: 5px;
    transform: rotate(-45deg);
}
.soldout_sms_pop .sol_m_con .check-input + label .rectangle::after {
    content: "";
    width: 2px;
    height: 8px;
    background: transparent;
    transform: rotate(45deg);
    position: absolute;
    top: 4px;
    left: 9px;
}

.soldout_sms_pop .sol_m_con .check-input:checked + label .rectangle::before {
    width: 1px;
    background: #ffffff;
}

.soldout_sms_pop .sol_m_con .check-input:checked + label .rectangle::after {
    width: 1px;
    background: #ffffff;
}
.soldout_sms_pop .sol_m_con .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.soldout_sms_pop .sol_m_con .btns a {
    color: #333333;
    background-color: #f6f6f6;
    font-size: 17px;
    border-radius: 5px;
    border: 1px solid #f6f6f6;
    display: block;
    padding: 13px 54.5px;
}
.soldout_sms_pop .sol_m_con .btns a.btn-send {
    color: #fff;
    background-color: #235cf5;
    border: 1px solid #235cf5;
}
@media (max-width: 991px) {
    .soldout_sms_pop .sol_m_con {
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        border-radius: 10px 10px 0 0;
        padding: 10px 15px 15px;
        max-width: 100%;
    }
    .soldout_sms_pop .sol_m_con .pay_bar {
        background-color: #e6e6e6;
        width: 40px;
        height: 4px;
        border-radius: 2px;
        margin: 0 auto;
    }
    .soldout_sms_pop .sol_m_con .modal_title {
        margin-top: 40px;
        position: relative;
        border-bottom: none;
    }
    .soldout_sms_pop .sol_m_con .modal_title .mo_tt {
        font-size: 17px;
    }
    .soldout_sms_pop .sol_m_con .modal_title .sol_m_close {
        position: absolute;
        top: -40px;
        right: 0;
    }
    .soldout_sms_pop .sol_m_con .mo_subject {
        color: #000;
        font-size: 14px;
        font-weight: 400;
    }
    .soldout_sms_pop .sol_m_con .user .input-box.it_name_box {
        padding: 0 0 20px;
        border-bottom: 1px solid #d7d7d7;
    }
    .soldout_sms_pop .sol_m_con .user .input-box.it_phone_box {
        display: block;
    }
    .soldout_sms_pop .sol_m_con .user .input-box p.mo_cont {
        width: calc(100% - 55px);
    }
    .soldout_sms_pop .sol_m_con .user .input-box .img_box {
        width: 40px;
        height: 40px;
        border-radius: 2.5px;
        margin-right: 15px;
        overflow: hidden;
    }
    .soldout_sms_pop .sol_m_con .user .input-box .img_box img {
        width: 100%;
    }
    .soldout_sms_pop .sol_m_con .user .input-box input.mo_cont {
        border: 1px solid #d6d6d6;
        background-color: #fff;
        width: 100%;
        height: 40px;
        border-radius: 2.5px;
        margin-top: 10px;
    }
    .soldout_sms_pop .sol_m_con .privacy_box {
        margin-top: 10px;
        border: 1px solid #d6d6d6;
        border-radius: 2.5px;
        padding: 15px 5px 15px 15px;
    }
    .soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar {
        width: 4px;
    }
    .soldout_sms_pop .sol_m_con .check-box {
        padding-top: 38px;
        padding-bottom: 30px;
    }
    .soldout_sms_pop .sol_m_con .btns a {
        padding: 14.5px 15px;
        flex: 1;
        text-align: center;
        border: 1px solid #e1e1e1;
        background-color: #fff;
        border-radius: 2.5px;
        color: #999999;
        font-size: 14px;
        font-weight: 700;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
90일 비밀번호 변경 모달
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.change-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.change-modal.active {
    opacity: 1;
    visibility: visible;
}
.change-modal .back {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
}
.change-modal form {
    width: 640px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    padding: 60px 30px 40px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
}
.change-modal form h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1em;
    color: #1b1b1b;
}
.change-modal form .change-close {
    width: 27px;
    height: 27px;
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 1;
    cursor: pointer;
}
.change-modal form .change-close span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
}
.change-modal form .change-close span::before,
.change-modal form .change-close span::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #ccc;
}
.change-modal form .change-close span::before {
    transform: rotate(45deg);
}
.change-modal form .change-close span::after {
    transform: rotate(-45deg);
}
.change-modal form .bot {
    margin: 40px 0 0;
}
.change-modal form .bot .password_icon {
    width: 72px;
    height: 72px;
    background-color: #f6f6f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.change-modal form .bot .text_row01 {
    color: #333;
    font-size: 18px;
    line-height: 26px;
    margin: 15px auto 25px;
}
.change-modal form .bot .text_row02 {
    color: #666666;
    font-size: 15px;
    line-height: 23px;
}
.change-modal form .bot .btn_wrap {
    margin-top: 35px;
}
.change-modal form .bot .btn_wrap .btn {
    font-size: 17px;
    line-height: 48px;
    width: 180px;
    text-align: center;
    border-radius: 5px !important;
    padding: 0 12px;
}
.change-modal form .bot .btn_wrap .btn.btn_reg_custom {
    color: #333;
    background-color: #f6f6f6;
}
.change-modal form .bot .btn_wrap .btn.now_btn {
    color: #fff;
    background-color: #235cf5;
    margin-left: 10px;
}
@media (max-width: 991px) {
    .change-modal form {
        position: absolute;
        top: auto;
        left: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        border-radius: 10px 10px 0 0;
        padding: 52px 13px 13px;
    }
    .change-modal form .option_btn {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #e6e6e6;
        border-radius: 2px;
        width: 40px;
        height: 4px;
    }
    .change-modal form h1 {
        font-size: 17px;
    }
    .change-modal form .change-close {
        width: 17px;
        height: 17px;
        top: 15px;
        right: 15px;
    }
    .change-modal form .bot {
        margin: 18px 0 0;
    }
    .change-modal form .bot .password_icon {
        width: 48px;
        height: 48px;
    }
    .change-modal form .bot .password_icon img {
        height: 22px;
    }
    .change-modal form .bot .text_row01 {
        font-size: 14px;
        line-height: 19px;
        margin: 10px auto 15px;
    }
    .change-modal form .bot .text_row02 {
        font-size: 13px;
        line-height: 16px;
    }
    .change-modal form .bot .btn_wrap {
        margin-top: 30px;
    }
    .change-modal form .bot .btn_wrap .btn {
        width: calc(50% - 10px);
        font-size: 14px;
        line-height: 43px;
        border-radius: 2.5px !important;
    }
}
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
비밀번호 실패 알럿창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* 2024-08-07 (주)파이브센스_FIVESENSES.Corp. */

.alert_custom_wrap.pas_alert .custom_box {
    width: 355px;
}

.alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont {
    padding: 0;
}
.alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont p {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont .alert_cont p {
    margin-top: 12px;
}
.alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn {
    padding: 0 30px 30px;
    border-top: none;
}

.alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn .alert_btn {
    color: #fff;
    background-color: #235cf5;
    border-radius: 5px !important;
    font-size: 17px;
    padding: 16.5px 0;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 991px) {
    .alert_custom_wrap.pas_alert_v1 .custom_box {
        width: 69%;
        border-radius: 10px;
    }
    .alert_custom_wrap.pas_alert_v2 .custom_box {
        top: auto;
        left: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont {
        padding: 13px 15px 18px;
    }
    .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_close {
        width: 17px;
        height: 17px;
        top: 0;
        right: 0;
    }
    .alert_custom_wrap.pas_alert .option_btn {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #e6e6e6;
        border-radius: 2px;
        width: 40px;
        height: 4px;
    }
    .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont {
        font-size: 14px;
        line-height: 19px;
    }
    .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont p {
        font-size: 16px;
        margin-bottom: 17px;
    }
    .alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont .alert_cont p {
        margin-top: 23px;
    }
    .alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn {
        padding: 0 15px 15px;
    }
    .alert_custom_wrap.pas_alert_v1 .custom_box .alert_custom_btn .alert_btn {
        font-size: 14px;
        padding: 15px 0;
    }
    .alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn .alert_btn {
        font-size: 14px;
        padding: 15.5px 0;
        border-radius: 2.5px !important;
        font-weight: 600;
    }
}

/* 아이디 비밀번호 찾기 */

/* 아이디, 비밀번호 찾기 모달 */
.lost-modal .captcha_sheet {
    margin-top: 19px;
}

.lost-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.lost-modal .back {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
}
.lost-modal form {
    width: 640px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    padding: 60px 30px 30px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}
.lost-modal form .lost-close {
    width: 27px;
    height: 27px;
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 1;
    cursor: pointer;
}
.lost-modal form .lost-close:hover {
    opacity: 1;
}
.lost-modal form .lost-close span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
}
.lost-modal form .lost-close span::before,
.lost-modal form .lost-close span::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #ccc;
}
.lost-modal form .lost-close span::before {
    transform: rotate(45deg);
}
.lost-modal form .lost-close span::after {
    transform: rotate(-45deg);
}
@media (max-width: 991px) {
    .lost-modal form .lost-close {
        width: 17px;
        height: 17px;
        top: 15px;
        right: 15px;
    }
    .lost-modal form #mod_option_btn.option_btn {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #e6e6e6;
        border-radius: 2px;
        width: 40px;
        height: 4px;
    }
}
.lost-modal form h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1em;
    color: #0c0c0c;
}
@media (max-width: 991px) {
    .lost-modal form h1 {
        margin-bottom: 20px;
        font-size: 19px;
    }
}
@media (max-width: 480px) {
    .lost-modal form h1 {
        margin-bottom: 21px;
        font-size: 17px;
    }
}
.lost-modal form p {
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-box-font-color2);
}
.lost-modal form p.text2 {
    font-size: 14px;
    margin-top: 15px;
}
.lost-modal form p.text3 {
    font-size: 12px;
    margin-top: 8px;
    color: var(--main-box-font-color4);
    line-height: 1em;
}
@media (max-width: 991px) {
    .lost-modal form p {
        line-height: 24px;
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .lost-modal form p {
        line-height: 19px;
        font-size: 13px;
    }
    .lost-modal form .tab_cont_pas p.text2 {
        margin-bottom: 5px;
    }
    .lost-modal form p.text3 {
        font-size: 11px;
        line-height: 16px;
    }
    .lost-modal form .tab_cont_pas p.text3 {
        margin-top: 0;
    }
}
.lost-modal form .id_ch_btn {
    display: block;
    color: var(--main-btn-point-color);
    font-size: 12px;
    line-height: 1em;
    margin-top: 8px;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.lost-modal form .bot {
    margin: 40px 0 0;
}
.lost-modal form .bot .tab_btn ul {
    display: flex;
}
.lost-modal form .bot .tab_btn li {
    flex: 1;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
    text-align: center;
    color: var(--main-btn-font-color4);
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    cursor: pointer;
}
.lost-modal form .bot .tab_btn li.on {
    border-color: var(--main-btn-font-point-color);
    color: var(--main-btn-font-point-color);
}
.lost-modal form .bot .tab_cont {
    display: none;
}
.lost-modal form .bot .tab_cont.on {
    display: block;
}
.lost-modal form .bot .sub_tab > ul {
    display: flex;
    margin-top: 20px;
}
.lost-modal form .bot .sub_tab > ul li {
    flex: 1;
    border: 1px solid #e1e1e1;
    line-height: 48px;
    text-align: center;
    color: var(--main-btn-font-color2);
    background-color: #fff;
    font-size: 13px;
    cursor: pointer;
}
.lost-modal form .bot .sub_tab > ul li:nth-child(2) {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}
.lost-modal form .bot .sub_tab > ul li.on {
    background-color: var(--main-btn-point-color);
    border-color: var(--main-btn-point-color);
    color: #fff;
}
.lost-modal form .bot .sub_cont {
    background-color: #f6f6f6;
    border-radius: 5px;
    margin-top: 20px;
    padding: 30px 30px 40px;
}
.lost-modal form .bot .sub_cont .cer_li {
    display: none;
}
.lost-modal form .bot .sub_cont .cer_li.on {
    display: block;
}
.lost-modal form .bot .step {
    display: none;
}
.lost-modal form .bot .step.active {
    display: block;
}
.lost-modal form .bot .input_box {
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.lost-modal form .bot .tab_cont_pas .input_box + .input_box {
    margin-top: 16px;
}
.lost-modal form .bot .input_box .timer_box {
    display: flex;
    position: relative;
    width: calc(100% - 124px);
}

.lost-modal form .bot .input_box .timer_box input {
    flex: 1;
    width: 100%;
}
.lost-modal form .bot .cer_num .input_box {
    margin-top: 10px;
}
.lost-modal form .bot .cer_num .input_box + .input_box {
    margin-top: 15px;
}
.lost-modal form .bot .input_box label {
    width: 124px;
    text-align: left;
    color: #0c0c0c;
    font-size: 16px;
}
.lost-modal form .bot .cer_num .input_box input {
    background-color: #fff;
    font-size: 16px;
    height: 48px;
    width: calc(100% - 124px);
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    padding: 0 20px;
}

.lost-modal form .bot .cer_num .input_box input.input-phone {
     width: calc(100% - 250px);
}


@media (max-width: 991px) {
    .lost-modal form .bot .input_box {
        display: block;
    }
    .lost-modal form .bot .input_box label {
        width: 100%;
        margin-bottom: 13px;
    }
    .lost-modal form .bot .cer_num .input_box {
        margin-top: 0;
    }
    .lost-modal form .bot .cer_num .flost_timer_wrap .input_box {
        margin-top: 22px;
    }
    .lost-modal form .bot .cer_num .input_box + .input_box {
        margin-top: 22px;
    }
    .lost-modal form .bot .input_box.msg-wrap {
        margin-top: 5px !important;
    }
    .lost-modal form .bot .input_box .timer_box {
        width: 100%;
    }
    .lost-modal form .bot .tab_cont_pas .input_box + .input_box {
        margin-top: 20px;
    }
    .lost-modal form .bot .sub_tab > ul li {
        font-size: 13px;
        line-height: 15px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .lost-modal form .id_ch_btn {
        font-size: 11px;
        text-underline-offset: 3px;
        margin-top: 4px;
        margin-bottom: 15px;
    }
    .lost-modal form .bot .input_box {
        margin-top: 13px;
    }
    .lost-modal form .bot .tab_btn li {
        font-size: 14px;
        padding-bottom: 12px;
    }
    .lost-modal form .bot .sub_tab > ul {
        margin-top: 15px;
    }
    .lost-modal form .bot .sub_tab > ul li {
        font-size: 11px;
    }
    .lost-modal form .bot .sub_tab > ul li:first-child {
        border-radius: 2.5px 0 0 2.5px !important;
    }
    .lost-modal form .bot .sub_tab > ul li:last-child {
        border-radius: 0 2.5px 2.5px 0 !important;
    }
    .lost-modal form .bot .input_box label {
        font-size: 14px;
    }
}
.lost-modal form .bot .cer_num input:focus {
    border: 1px solid var(--main-box-line-point-color);
}
.lost-modal form .bot input.hp {
    width: calc(100% - 250px);
    margin-right: 5px;
}
.lost-modal form .bot input.name {
    width: calc(100% - 128px);
    margin-right: 5px;
}
.lost-modal form .bot .step1 input.email {
    width: calc(100% - 128px);
}
.lost-modal form .bot input.id {
    width: calc(100% - 128px);
}
@media (max-width: 991px) {
    .lost-modal form .bot .input_box input {
        height: 46px;
        line-height: 50px;
        font-size: 14px;
        width: 100% !important;
    }
    .lost-modal form .bot input.hp {
        width: 100%;
        margin-right: 0;
    }
    .lost-modal form .bot .sub_cont {
        padding: 25px 15px 15px;
        margin-top: 15px;
        background-color: #f9f9f9;
        overflow-y: auto;
        max-height: 60vh;
    }
}
@media (max-width: 480px) {
    .lost-modal form .bot .input_box input {
        height: 40px;
        line-height: 40px;
        padding: 0;
        padding-left: 12px;
        font-size: 12px;
        border-radius: 2.5px;
    }
}
.lost-modal form .bot .input_box .msg-box {
    color: #ff0000;
}
.lost-modal form .bot .input_box .timer {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(-50%);
}
.lost-modal form .bot .input_box .txt {
    font-size: 13px;
    font-weight: 400;
}
@media (max-width: 991px) {
    .lost-modal form .bot .input_box .msg-box.txt {
        text-align: left;
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    .lost-modal form .bot .input_box .timer {
        font-size: 12px;
    }
}

/* .lost-modal form .bot #modal_captcha_info {
    margin-top: 20px;
    font-size: 14px;
    color: var(--main-box-font-color4);
} */
@media (max-width: 991px) {
    .lost-modal form .bot #modal_captcha_info {
        margin-top: 12px;
        font-size: 13px;
        /* text-align: left; */
    }
}
@media (max-width: 480px) {
    .lost-modal form .bot #modal_captcha_info {
        margin-top: 7px;
        font-size: 10px;
    }
}
@media (max-width: 991px) {
    .lost-modal form .bot {
        margin: 22px 0 0px;
    }
}
.lost-modal form .confirm {
    width: 100%;
    height: 50px;
    line-height: 48px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    background: var(--main-btn-point-color);
    transition: 0.2s;
}
.lost-modal form .cer_me .confirm {
    height: 62px;
    line-height: 60px;
}
.lost-modal form .cer_num .hp_btn {
    width: 120px;
    min-height: 46px;
    line-height: 1.2em;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background: var(--main-btn-point-color);
    transition: 0.2s;
    color: #fff;
    padding: 5px;
    border: 1px solid var(--main-btn-line-point-color);
}
.lost-modal form .cer_num .hp_btn.again_btn {
    background: #999999;
    border-color: #999999;
}
.lost-modal form .cer_num .hp_btn.again_btn:hover {
    background: #999999;
}
.lost-modal form .confirm .confirm_btn {
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
    margin: 30px auto 0;
    background: none;
    border: none;
}
@media (max-width: 991px) {
    .lost-modal form .cer_num .hp_btn {
        width: 100%;
        margin-top: 22px;
    }
    .lost-modal form .confirm {
        height: 46px;
        line-height: 44px;
        font-size: 15px;
        border-radius: 5px;
    }
}
@media (max-width: 480px) {
    .lost-modal form .cer_num .hp_btn {
        border-radius: 2.5px;
    }
    .lost-modal form .confirm {
        height: 45px;
        line-height: 45px;
        font-size: 14px;
        font-weight: 400;
        border-radius: 2.5px;
    }
    .lost-modal form .cer_me .confirm {
        height: 40px;
        line-height: 38px;
    }
    .lost-modal form .confirm .confirm_btn {
        margin-top: 17px;
    }
}
@media (max-width: 991px) {
    .lost-modal form {
        position: absolute;
        /* width: 81%; */
        width: 100%;
        min-height: auto;
        padding: 55px 18px 15px;
        border-radius: 10px 10px 0 0;
        top: auto;
        left: 0;
        transform: none;
        bottom: 0;
    }
}
.lost-modal.active {
    opacity: 1;
    visibility: visible;
}

/* 관리자 추가 인증 */

body.admin-login * {
    font-family: "Noto Sans KR", sans-serif;
}
body.admin-login .hidden {
    display: none !important;
}
body.admin-login ul {
    padding: 0;
    margin: 0;
}
body.admin-login .lost-modal * {
    box-sizing: border-box;
}
body.admin-login .lost-modal ul,
body.admin-login .lost-modal li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    min-height: 48px;
}
body.admin-login .lost-modal form .bot .sub_tab > ul li {
    line-height: 1.2em;
}
body.admin-login #captcha {
    display: flex !important;
    justify-content: center;
    gap: 7px;
}
body.admin-login #captcha .captcha_imgbox {
    width: 160px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}
body.admin-login #captcha .captcha_imgbox #captcha_img {
    width: auto;
    height: 100%;
    border: none;
    display: inline-block;
}
body.admin-login #captcha .capcha_aid {
    width: 31px;
    display: flex;
    flex-flow: column;
    margin: 0;
}
body.admin-login #captcha #captcha_mp3 {
    left: 165px;
}
body.admin-login #captcha #captcha_reload {
    left: 165px;
}
body.admin-login #captcha #captcha_key {
    height: 60px;
    line-height: 60px;
    margin: 0;
    padding: 0 25px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}
body.admin-login #captcha_info {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    text-align: center;
}
.alert_custom_wrap.pas_alert.pas_alert_admin .custom_box {
    width: 640px;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont {
    width: 640px;
    box-sizing: border-box;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .tit {
    color: #1b1b1b;
    font-size: 26px;
    line-height: 1em;
    font-weight: bold;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .cont_box {
    padding: 40px 30px;
    background-color: #f6f6f6;
    border-radius: 5px;
    margin-top: 40px;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .alert_cont p {
    color: #666666;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 400;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step1 {
    padding-top: 20px;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont input[type="radio"] {
    display: none;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .radio_ch {
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    position: relative;
    margin-right: 6px;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont input:checked + .radio_ch::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #235cf5;
    border: 1px solid #235cf5;
    position: absolute;
    top: 3px;
    left: 3px;
}
.alert_custom_wrap.pas_alert_admin .custom_box .method label {
    color: #666666;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alert_custom_wrap.pas_alert_admin .custom_box #modal_captcha_info {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1em;
    font-weight: 400;
    color: #aaa;
    text-align: center;
}
.pas_alert_admin .alert_btn {
    width: 100% !important;
}
.pas_alert_admin .confirm_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    background: #235cf5;
    color: #fff;
    transition: 0.2s;
    border: none;
    outline: none;
    margin-top: 25px;
    transition: 0.2s;
}
.pas_alert_admin .confirm_btn:hover {
    /*background-color: #703df1;*/
    opacity: 0.8;
}
.pas_alert_admin .confirm_btn.again_btn {
    background-color: #999999;
}
.pas_alert_admin .confirm_btn.again_btn:hover {
    background-color: #999999;
}
.pas_alert_admin .captcha_sheet {
    margin-top: 25px;
}
.pas_alert_admin .captcha_sheet .captcha {
    display: flex;
    justify-content: center;
    gap: 7px;
}
.pas_alert_admin .captcha_sheet .captcha .captcha_imgbox {
    width: 240px;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    border-radius: 5px;
    padding: 0; /*padding: 0 25px;*/
}
.pas_alert_admin .captcha_sheet .captcha .captcha_imgbox img {
    width: auto;
    height: 100%;
}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid {
    width: 22px;
    display: flex;
    flex-flow: column;
    margin: 0;
}
.pas_alert_admin .captcha_sheet .captcha #modal_captcha_key {
    width: 240px;
    height: 45px;
    line-height: 45px;
    margin: 0;
    padding: 0 25px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    box-sizing: border-box;
}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3 {
    background: url(/img/modal_captcha_mp3.jpg) no-repeat #e3e3e3;
    background-size: 100%;
}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {
    background: url(/img/modal_captcha_reload.jpg) no-repeat #e3e3e3;
    background-size: 100%;
}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3,
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {
    flex: 1;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    border: none;
    text-indent: -9999px;
    box-sizing: border-box;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e1e1e1;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box {
    display: flex;
    align-items: center;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_wrap {
    position: relative;
    width: calc(100% - 124px);
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box > label {
    width: 124px;
    text-align: left;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input-sm {
    width: 100%;
    height: 46px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    box-shadow: none;
    transition: 0.2s;
    outline: none;
    box-sizing: border-box;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input-sm:focus {
    border: 1px solid #235cf5;
}
.pas_alert_admin .msg-box {
    color: #ff0000;
    font-size: 13px;
    line-height: 1em;
}
.pas_alert_admin .msg-box.txt {
    margin-left: 124px;
    text-align: left;
    margin-top: 12px;
}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_box .timer {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    body.admin-login .lost-modal ul,
    body.admin-login .lost-modal li {
        width: 100%;
    }
    body.admin-login .lost-modal form .bot .cer_num .input_box {
        text-align: left;
    }
    body.admin-login .lost-modal form .bot .input_box label {
        display: block;
        margin-bottom: 13px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont {
        padding: 15px 18px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box {
        bottom: 0;
        top: auto;
        left: 0;
        transform: none;
        border-radius: 10px 10px 0 0;
    }
    .alert_custom_wrap.pas_alert.pas_alert_admin .custom_box {
        width: 100%;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont {
        width: 100%;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .cont_box {
        border-radius: 5px;
        margin-top: 25px;
        padding: 25px 17px 15px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .tit {
        font-size: 16px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .alert_cont p {
        font-size: 13px;
        line-height: 19px;
    }
    .pas_alert_admin .captcha_sheet .captcha #modal_captcha_key {
        background: #fff !important;
        width: auto;
        flex: 1;
        padding: 0 20px;
    }
    .pas_alert_admin .captcha_sheet .captcha .captcha_imgbox {
        width: auto;
        flex: 1;
        padding: 0 20px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box #modal_captcha_info {
        margin-top: 10px;
        font-size: 10px;
    }
    .pas_alert_admin .confirm_btn {
        height: 45px;
        line-height: 45px;
        font-size: 14px;
        margin-top: 20px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 {
        margin-top: 20px;
        padding-top: 20px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box {
        display: block;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box > label {
        width: 100%;
        font-size: 14px;
        padding-bottom: 15px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input-sm {
        font-size: 12px;
        height: 40px;
        line-height: 38px;
        border-radius: 2.5px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_wrap {
        width: 100%;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_box .timer {
        font-size: 12px;
    }
    .pas_alert_admin .msg-box.txt {
        margin-left: 0;
        margin-top: 6px;
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont {
        padding: 15px 18px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .alert_close_wrap {
        margin-bottom: 25px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .method label {
        font-size: 13px;
        line-height: 19px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step1 {
        padding-top: 15px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .radio_ch {
        width: 15px;
        height: 15px;
    }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont input:checked + .radio_ch::after {
        width: 9px;
        height: 9px;
        top: 2px;
        left: 2px;
    }
    .pas_alert_admin .captcha_sheet {
        margin-top: 20px;
    }
}

/* [Warehouse] 주문서 창고 재고부족 전용 알럿 (alert_open extraClass=alert_warehouse) */
.alert_custom_wrap.alert_warehouse .custom_box {
    width: 400px;
    border-radius: 20px;
}

.alert_custom_wrap.alert_warehouse .custom_box .custom_cont {
    padding: 25px 30px 10px;
}

.alert_custom_wrap.alert_warehouse .custom_box .custom_cont .alert_cont {
    padding: 0;
    color: #666;
}

.alert_custom_wrap.alert_warehouse .custom_box .alert_cont .wh_short {
    margin-top: 20px;
    padding: 18px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 5px;
    background-color: rgba(255, 0, 0, 0.06);
}

.alert_custom_wrap.alert_warehouse .custom_box .alert_cont .wh_short .wh_short_title {
    margin-bottom: 5px;
}

.alert_custom_wrap.alert_warehouse .custom_box .alert_cont .wh_short .wh_short_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.alert_custom_wrap.alert_warehouse .custom_box .alert_custom_btn {
    padding: 10px 30px 30px;
}

.alert_custom_wrap.alert_warehouse .custom_box .alert_custom_btn .alert_btn {
    border-radius: 5px;
}

@media (max-width: 480px) {
    /* [Warehouse] 주문서 창고 재고부족 전용 알럿 (alert_open extraClass=alert_warehouse) */
    .alert_custom_wrap.alert_warehouse .custom_box {
        top: auto;
        bottom: 0;
        transform: translate(-50%, 0);
        width: 100%;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background-color: #e6e6e6;
        border-radius: 2px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box .custom_cont {
        padding: 20px 18px 10px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box .alert_cont .wh_short {
        margin-top: 15px;
        padding: 15px;
        font-size: 13px;
        line-height: 19px;
        border-radius: 2.5px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box .alert_cont .wh_short .wh_short_title {
        margin-bottom: 3px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box .alert_cont .wh_short .wh_short_list {
        gap: 3px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box .alert_custom_btn {
        padding: 10px 18px 15px;
    }

    .alert_custom_wrap.alert_warehouse .custom_box .alert_custom_btn .alert_btn {
        border-radius: 2.5px;
    }
}

/* [Warehouse] 주문서 창고 재고부족 주의 문구 */
.ordersheet .ordersheet_write #warehouse_stock_warning_box {
    width: 500px;
    margin-left: 115px;
    margin-bottom: 15px;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 5px;
    background-color: rgba(255, 0, 0, 0.06);
}

.ordersheet .ordersheet_write #warehouse_stock_warning_box .warehouse_stock_warning_msg {
    font-weight: 300;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    /* [Warehouse] 주문서 창고 재고부족 주의 문구 */
    .ordersheet .ordersheet_write #warehouse_stock_warning_box {
        width: 100%;
        margin-left: 0;
        margin-bottom: 23px;
        padding: 15px;
        font-size: 13px;
        line-height: 21px;
        border-radius: 2.5px;
        text-align: center;
    }

    .ordersheet .ordersheet_write #warehouse_stock_warning_box .warehouse_stock_warning_msg {
        font-weight: 400;
        margin-bottom: 10px;
    }
}

/****************************
서브 > 상품상세페이지 > 상품 리뷰 모달
html > shop > ajax.itemreviewmodal.php
****************************/
.it_detail_modal.no_review_img {
    width: 800px;
}
.it_detail_modal .rv_modal .rv_con {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con {
        flex-direction: column;
        padding: 0 25px 65px;
        max-height: 80vh;
        overflow-y: scroll;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_img {
    min-width: 370px;
    max-width: 370px;
    overflow: hidden;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con .rv_img {
        order: 2;
        min-width: 100%;
        max-width: 100%;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_img_big {
    overflow: hidden;
}
.it_detail_modal .rv_modal .rv_con .rv_img_big ul li img {
    width: 100%;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con .rv_img_big {
        position: relative;
        padding-bottom: 15px;
    }
    .it_detail_modal .rv_modal .rv_con .rv_img_big .swiper-pagination {
        bottom: 20px;
    }
    .it_detail_modal .rv_modal .rv_con .rv_img_big .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: #bfbfbf;
        margin: 0 2.5px;
        opacity: 1;
    }
    .it_detail_modal .rv_modal .rv_con .rv_img_big .swiper-pagination-bullet-active {
        background: #235cf5;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_img_thumb {
    margin-top: 8px;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con .rv_img_thumb {
        display: none;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_img_thumb ul li {
    /* width: 40px; */
    /* height: 40px; */
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.it_detail_modal .rv_modal .rv_con .rv_img_thumb ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}
.it_detail_modal .rv_modal .rv_con .rv_txt {
    width: 100%;
    margin-left: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt {
        order: 1;
        width: 100%;
        margin-left: 0;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top {
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .star {
    color: #ffc600;
    font-size: 17px;
    letter-spacing: 0.075em;
    margin-bottom: 8px;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt_top .star {
        margin-bottom: 13px;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_tt {
    font-size: 17px;
    color: #1b1b1b;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_img {
    background: #e7e7e7;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 16px;
}
@media (max-width: 480px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_img {
        width: 40px;
        height: 40px;
        margin-right: 14px;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_img img {
    width: 100%;
    overflow: hidden;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_name {
    color: #222;
    font-size: 13px;
    font-weight: 400;
}
@media (max-width: 480px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_name {
        font-size: 13px;
        font-weight: 600;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_date {
    color: #999;
    font-size: 13px;
    font-weight: 400;
    margin-top: 10px;
}
@media (max-width: 480px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_date {
        font-size: 11px;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_bottom {
    width: 100%;
    padding-top: 25px;
    height: 100%;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt_bottom {
        padding: 15px 0;
        height: 130px;
        margin-bottom: 15px;
    }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_bottom .rv_txt_con {
    overflow-y: scroll;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    height: 20vh;
}
@media (max-width: 480px) {
    .it_detail_modal .rv_modal .rv_con .rv_txt_bottom .rv_txt_con {
        font-size: 14px;
        line-height: 2em;
    }
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio01 input + label span {
    background: url("../img/review_good_off.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio01 input:checked + label span {
    background: url("../img/review_good.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio02 input + label span {
    background: url("../img/review_normal_off.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio02 input:checked + label span {
    background: url("../img/review_normal.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio03 input + label span {
    background: url("../img/review_bad_off.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio03 input:checked + label span {
    background: url("../img/review_bad.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_review_bot .mem_info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.it_detail_modal .rv_modal .use_form_review_bot .mem_info input {
    width: calc(50% - 7.5px);
}
.it_detail_modal .rv_modal .add_img_li li img {
    width: 100%;
}
.it_detail_modal .rv_modal .add_img_li li .btn_del_img {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    border: 1px solid #e5e5e5;
    right: 5px;
    top: 5px;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
}
.it_detail_modal .rv_modal .add_img_li li .btn_del_img:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 1px;
    height: 8px;
    background: #151515;
}
.it_detail_modal .rv_modal .add_img_li li .btn_del_img:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 1px;
    height: 8px;
    background: #151515;
}

/* 상품 상세 문의하기 모달 */
.it_detail_modal {
    max-width: 100%;
    z-index: 1001;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.it_detail_modal.active {
    opacity: 1;
    visibility: visible;
}
.it_detail_modal * {
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.it_detail_modal ::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.it_detail_modal *::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.it_detail_modal ::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.it_detail_modal *::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.it_detail_modal ::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.it_detail_modal *::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.it_detail_modal ::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.it_detail_modal *::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.it_detail_modal ::-webkit-scrollbar-track {
    background: #fff;
}
.it_detail_modal *::-webkit-scrollbar-track {
    background: #fff;
}
.it_detail_modal ::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #d6d6d6;
    border-radius: 10px;
}
.it_detail_modal *::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #d6d6d6;
    border-radius: 10px;
}
.it_detail_modal_bg {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    width: 100%;
}
.it_detail_modal_bg.active {
    opacity: 1;
    visibility: visible;
}
.item_detail .review_write,
.item_detail .qa_write {
    display: none;
}
.it_detail_modal .rv_modal {
    max-width: 100%;
    background: #fff;
    padding: 35px 25px 35px 30px;
    border-radius: 20px;
}
.it_detail_modal .rv_modal.review_write {
    width: 800px;
    display: block;
}
.it_detail_modal .rv_modal.qa_write {
    width: 800px;
    display: block;
}
.it_detail_modal .rv_modal_tt {
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}
.it_detail_modal .rv_modal_tt h2 {
    color: #0c0c0c;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 20px;
}
.it_detail_modal .rv_modal_tt .btn_close_modal {
    display: block;
    width: 21px;
    height: 21px;
    position: relative;
}
.it_detail_modal .rv_modal_tt .btn_close_modal span {
    display: block;
    width: 27px;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.it_detail_modal .rv_modal_tt .btn_close_modal span:after {
    content: "";
    display: block;
    width: 27px;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}
.it_detail_modal .rv_modal .qa_form {
    max-height: 80vh;
    overflow-y: scroll;
    padding: 0;
}
.it_detail_modal .rv_modal .qa_form_head {
    background: #f7f7f7;
    text-align: center;
    padding: 30px 0 25px;
    margin-bottom: 12px;
}

.it_detail_modal .rv_modal .use_form {
    overflow-y: scroll;
    max-height: 80vh;
    padding-right: 10px;
}
.it_detail_modal .rv_modal .use_form .use_tt {
    color: #0c0c0c;
    font-size: 15px;
    font-weight: 500;
    width: 115px;
}
.it_detail_modal .rv_modal .use_form_star {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e7e7e7;
}
.it_detail_modal .rv_modal .use_form_star_con {
    width: calc(100% - 115px);
}
.it_detail_modal .rv_modal .use_form_star_con i {
    color: #ffc600;
    font-size: 17px;
}
.it_detail_modal .rv_modal .use_form_review_top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
}
.it_detail_modal .rv_modal .use_form_review_top_select {
    width: calc(100% - 115px);
}
.it_detail_modal .rv_modal .use_form_review_top_select select {
    color: #999999;
    font-size: 14px;
    width: 100%;
    appearance: none;
    height: 45px;
    line-height: 43px;
    border: none;
    padding: 0 16px;
    background: #f1f1f1 url(../img/icon_review_drop.png) no-repeat calc(100% - 15px) center;
}
.it_detail_modal .rv_modal .use_form_table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    width: 100%;
    display: none;
}
.it_detail_modal .rv_modal .use_form_table li {
    width: 33.33333%;
    position: relative;
    padding: 0 10px;
}
.it_detail_modal .rv_modal .use_form_table li:after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    background: #d7d7d7;
    height: 100px;
}
.it_detail_modal .rv_modal .use_form_table li:last-child:after {
    display: none;
}
.it_detail_modal .rv_modal .use_form_table li h5 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input {
    display: none;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label {
    display: block;
    margin: 0 auto;
    cursor: pointer;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label p {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
    margin-top: 5px;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label span {
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto;
}
.it_detail_modal .rv_modal .rv_btn_sec {
    margin-top: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.it_detail_modal .rv_modal .qa_form_head span {
    display: block;
    width: 25px;
    height: 25px;
    line-height: 23px;
    margin: 0 auto 10px;
    background: var(--main-box-point-color);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}
.it_detail_modal .rv_modal .qa_form_head p {
    color: #0c0c0c;
    font-size: 14px;
    line-height: 1.7;
}
.it_detail_modal .rv_modal .qa_form_body_content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    position: relative;
}
.it_detail_modal .rv_modal .qa_form_body_content label {
    color: #0c0c0c;
    font-size: 15px;
    font-weight: 500;
    width: 65px;
}
.it_detail_modal .rv_modal .qa_form_body_content input + span,
.it_detail_modal .rv_modal .qa_form_body_content textarea + span {
    display: block;
    width: 100%;
    height: 1px;
    background: #e7e7e7;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.it_detail_modal .rv_modal .qa_form_body_content input,
.it_detail_modal .rv_modal .qa_form_body_content textarea {
    width: calc(100% - 65px);
    height: 53px;
    line-height: 51px;
    border: none;
    font-size: 16px;
    color: #0c0c0c;
}
.it_detail_modal .rv_modal .qa_form_body_content textarea {
    width: 100%;
    resize: none;
    height: 160px;
    overflow-y: scroll;
    line-height: 1.6;
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret {
    margin-top: 20px;
    position: relative;
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret input + label {
    color: #5d5d5d;
    font-size: 14px;
    line-height: 20px;
}
.it_detail_modal .rv_modal .qa_form_body_content input + span,
.it_detail_modal .rv_modal .qa_form_body_content textarea + span {
    display: block;
    width: 100%;
    height: 1px;
    background: #e7e7e7;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.it_detail_modal .rv_modal .use_form_review_bot input:focus,
.it_detail_modal .rv_modal .use_form_review_bot input:active,
.it_detail_modal .rv_modal .use_form_review_bot textarea:focus,
.it_detail_modal .rv_modal .use_form_review_bot textarea:active {
    border-bottom-color: var(--main-box-line-point-color);
}
.it_detail_modal .rv_modal .qa_form_body_content input:focus + span,
.it_detail_modal .rv_modal .qa_form_body_content input:active + span,
.it_detail_modal .rv_modal .qa_form_body_content textarea:focus + span,
.it_detail_modal .rv_modal .qa_form_body_content textarea:active + span {
    background: var(--main-box-line-point-color);
}
.it_detail_modal .rv_modal .add_img {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 25px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #e7e7e7;
}
.it_detail_modal .rv_modal .add_img_li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 80%;
}
.it_detail_modal .rv_modal .add_img_li li {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    margin: 0 10px 10px 0;
    position: relative;
}
.it_detail_modal .rv_modal .add_img_btn {
    width: 20%;
    text-align: right;
}

/* 상세페이지 후기 작성 팝업 */
.it_detail_modal .rv_modal .use_form_star_con i.fa-star-o {
    color: #e5e5e5;
}
.it_detail_modal .rv_modal .use_form_star_con i.fa-star-o::before {
    content: "\f005";
}

.it_detail_modal .rv_modal .use_form_review_bot textarea {
    resize: none;
}
.it_detail_modal .rv_modal .use_form_review_bot textarea {
    height: 160px;
    overflow-y: scroll;
    line-height: 1.8;
    margin-top: 10px;
}
.it_detail_modal .rv_modal .use_form_review_bot input[type="file"],
.it_detail_modal .rv_modal .use_form_review_bot textarea[type="file"] {
    display: none;
    appearance: none;
}
.it_detail_modal .rv_modal .use_form_review_bot input,
.it_detail_modal .rv_modal .use_form_review_bot textarea {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 48px;
    box-shadow: none;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #ddd;
    /*border:{top:none; left:none; right:none; bottom:1px solid #e7e7e7}*/
    font-size: 16px;
    font-weight: 300;
    color: #0c0c0c;
}
.it_detail_modal .rv_modal .qa_form_body_content input[type="file"],
.it_detail_modal .rv_modal .qa_form_body_content textarea[type="file"] {
    display: none;
    appearance: none;
}

.it_detail_modal .rv_modal .rv_btn_sec li {
    display: block;
    background: #f6f6f6;
    border-radius: 5px;
    overflow: hidden;
}
.it_detail_modal .rv_modal .rv_btn_sec li.main {
    background: var(--main-btn-point-color);
    margin-left: 6px;
}
.it_detail_modal .rv_modal .rv_btn_sec li a,
.it_detail_modal .rv_modal .rv_btn_sec li button {
    display: block;
    width: 100%;
    height: 50px;
    min-width: 140px;
    line-height: 48px;
    padding: 0 58px;
    text-align: center;
    color: #0c0c0c;
    font-size: 17px;
    font-weight: 400;
    border: none;
}
.it_detail_modal .rv_modal .rv_btn_sec li.main a,
.it_detail_modal .rv_modal .rv_btn_sec li.main button {
    color: #fff;
    background: inherit;
}

@media (max-width: 991px) {
    .it_detail_modal {
        bottom: 0;
        top: initial;
        left: 0;
        right: 0;
        transform: translate(0, 0) rotate(0);
    }
    .it_detail_modal .rv_modal {
        width: 100%;
        padding: 50px 0 0;
        border-radius: 20px 20px 0 0;
    }
    .it_detail_modal .rv_modal.qa_write {
        padding: 30px 0 0;
        width: 100%;
    }
    .it_detail_modal .rv_modal.review_write {
        width: 100%;
    }
    .it_detail_modal .rv_modal_tt {
        justify-content: flex-start;
        padding: 0 25px 0px 25px;
        margin-bottom: 0;
        border: none;
    }
    .it_detail_modal .rv_modal_tt h2 {
        font-size: 19px;
        padding-bottom: 19px;
    }
    .it_detail_modal .rv_modal_tt .btn_close_modal {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .it_detail_modal .rv_modal_tt .btn_close_modal span {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        transform: none;
        background: none;
    }
    .it_detail_modal .rv_modal_tt .btn_close_modal span::before,
    .it_detail_modal .rv_modal_tt .btn_close_modal span::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        top: auto;
        left: auto;
        transform: none;
        background: #ccc;
    }
    .it_detail_modal .rv_modal_tt .btn_close_modal span::before {
        transform: rotate(45deg);
    }
    .it_detail_modal .rv_modal_tt .btn_close_modal span::after {
        transform: rotate(-45deg);
    }
    .it_detail_modal .rv_modal .use_form {
        height: 70vh;
        padding-right: 0;
    }
    .it_detail_modal .rv_modal .use_form_star {
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 40px);
    }
    .it_detail_modal .rv_modal .use_form_star_con {
        text-align: right;
    }
    .it_detail_modal .rv_modal .use_form_review {
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 40px);
    }
    .it_detail_modal .rv_modal .use_form_review_top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    .it_detail_modal .rv_modal .use_form_review_top_select {
        width: 100%;
        margin-top: 20px;
    }
    .it_detail_modal .rv_modal .use_form_table {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 40px);
        display: none;
    }
    .it_detail_modal .rv_modal .use_form_table li {
        width: 100%;
        padding: 12px 0;
    }
    .it_detail_modal .rv_modal .use_form_table li h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label span {
        width: 28px;
        height: 28px;
        background-size: cover !important;
    }
    .it_detail_modal .rv_modal .use_form .use_tt {
        font-size: 16px;
    }
    .it_detail_modal .rv_modal .use_form_review_bot input,
    .it_detail_modal .rv_modal .use_form_review_bot textarea {
        font-size: 16px;
    }
    .it_detail_modal .rv_modal .use_form_review_top_select select {
        font-size: 12px;
        line-height: 35.5px;
        height: 37.5px;
    }
    .it_detail_modal .rv_modal .use_form_review_bot {
        margin-bottom: 80px;
    }
    .it_detail_modal .rv_modal .use_form_review_bot input[type="file"] + label img,
    .it_detail_modal .rv_modal .use_form_review_bot textarea[type="file"] + label img {
        height: 17px;
    }
    .it_detail_modal .rv_modal .rv_btn_sec {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }
    .it_detail_modal .rv_modal .rv_btn_sec li {
        width: 100%;
        border-radius: 0;
    }
    .it_detail_modal .rv_modal .rv_btn_sec li a,
    .it_detail_modal .rv_modal .rv_btn_sec li button {
        width: 100%;
        min-width: auto;
        font-size: 15px;
        height: 48px;
        line-height: 46px;
    }
    .it_detail_modal .rv_modal .rv_btn_sec li.main {
        margin-left: 0;
    }

    .it_detail_modal .rv_modal .qa_form_head {
        display: flex;
        align-items: center;
        padding: 20px 17px;
        margin: 0 25px 15px;
    }
    .it_detail_modal .rv_modal .qa_form_head span {
        width: 23px;
        height: 23px;
        line-height: 20px;
        margin: 0;
        margin-right: 15px;
        font-size: 13px;
    }
    .it_detail_modal .rv_modal .qa_form_head p {
        line-height: 20px;
        font-size: 14px;
        text-align: left;
        color: #0c0c0c;
    }
    .it_detail_modal .rv_modal .qa_form_body {
        padding: 0 25px;
        margin-bottom: 80px;
    }
    .item_detail .use-btn > .pull-left,
    #itemqa .qa-btn > .pull-left {
        float: none !important;
        margin-bottom: 28px;
        text-align: center;
    }
    .it_detail_modal .rv_modal .qa_form_body_content input,
    .it_detail_modal .rv_modal .qa_form_body_content textarea {
        font-size: 15px;
    }
    .it_detail_modal .rv_modal .qa_form_body_content textarea {
        width: 100%;
        resize: none;
        height: 160px;
        overflow-y: scroll;
        line-height: 1.6;
    }
    .it_detail_modal .rv_modal .qa_form_body .qa_secret {
        margin-top: 20px;
        position: relative;
    }
    .it_detail_modal .rv_modal .qa_form_body_content input,
    .it_detail_modal .rv_modal .qa_form_body_content textarea {
        font-size: 15px;
    }
    .it_detail_modal .rv_modal .qa_form_body_content textarea {
        width: 100%;
        resize: none;
        height: 160px;
        overflow-y: scroll;
        line-height: 1.6;
    }
    .it_detail_modal .rv_modal .qa_form_body .qa_secret {
        margin-top: 20px;
        position: relative;
    }
    .it_detail_modal .rv_modal .qa_form_body_content label img {
        height: 17px;
    }
    .it_detail_modal .rv_modal .qa_form_body_content input,
    .it_detail_modal .rv_modal .qa_form_body_content textarea {
        height: 50px;
        line-height: 48px;
        font-size: 15px;
    }
    .it_detail_modal .rv_modal .qa_form_body_content label {
        width: auto;
    }
    .it_detail_modal .rv_modal .qa_form_body .qa_secret input {
        font-size: 13px;
    }
    .it_detail_modal .rv_modal .qa_form_body .qa_secret input + label {
        font-size: 14px;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
검은바 알럿창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.bar_alert_wrap {
    position: fixed;
    z-index: 999999;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    line-height: 1em;
    padding: 10px 19px;
    cursor: default;
}
@media (max-width: 991px) {
    .bar_alert_wrap {
        top: auto;
        bottom: 60px;
        width: calc(100% - 62px);
        text-align: center;
        font-size: 15px;
        background-color: rgba(17, 17, 17, 0.8);
        padding: 15px 19px;
        border-radius: 2.5px;
    }
}


/* 재견적 요청 모달창 */
.it_content_modal {
    max-width: 100%;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.it_content_modal.active {
    opacity: 1;
    visibility: visible;
}
.it_content_modal .it_content_modal_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.it_content_modal .it_content_view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    z-index: 1;
    overflow: hidden;
    background-color: #fff;
    padding: 30px 30px 40px;
}
.it_content_modal .it_content_view .modal_tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 24px;
    margin-bottom: 24px;
    line-height: 1em;
}
.it_content_modal .it_content_view .modal_tit label {
    color: var(--main-box-font-color);
    font-size: 26px;
    font-weight: 700;
}
.it_content_modal .it_content_view .modal_tit span {
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
}
.it_content_modal .it_content_view .modal_tit span::before,
.it_content_modal .it_content_view .modal_tit span::after {
    content: "";
    display: block;
    background-color: #cccccc;
    width: 1px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
}
.it_content_modal .it_content_view .modal_tit span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.it_content_modal .it_content_view .modal_tit span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.it_content_modal .it_content_view .editor_box {
    height: 285px;
    padding-top: 20px;
    padding-right: 20px;
    border-radius: 10px;
    background-color: #f7f7f7;
}
.it_content_modal .it_content_view .editor_box textarea {
    height: 245px !important;
    position: relative;
    width: 100%;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    line-height: 1.4em;
    font-size: 16px;
    margin: 0 0 20px;
    padding-left: 20px;
    padding-bottom: 0;
    background-color: transparent;
    resize: none;
}
.it_content_modal .it_content_view .editor_box textarea::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
}
.it_content_modal .it_content_view .editor_box textarea::-webkit-scrollbar-button {
    background-color: transparent;
}
.it_content_modal .it_content_view .editor_box textarea::-webkit-scrollbar-thumb {
    background-color: #d6d6d6;
}
.it_content_modal .it_content_view .it_content_btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.it_content_modal .it_content_view .it_content_btn li {
    max-width: 140px;
    width: 100%;
}
.it_content_modal .it_content_view .it_content_btn .btn {
    width: 100%;
    height: 50px;
    border-radius: 5px !important;
    font-size: 17px;
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    color: var(--main-btn-font-color);
    line-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.it_content_modal .it_content_view .it_content_btn .btn-main {
    background-color: var(--main-btn-point-color);
    color: #fff;
}

@media (max-width:991px) {
    
    .it_content_modal .it_content_view {
        top: auto;
        left: 0;
        transform: none;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        padding: 58px 0 0;
    }
    .it_content_modal .it_content_view .content_view_box {
        padding: 0 25px;
    }
    .it_content_modal .it_content_view .modal_tit {
        position: relative;
        padding-bottom: 25px;
        margin-bottom: 20px;
    }
    .it_content_modal .it_content_view .modal_tit label {
        font-size: 17px;
    }
    .it_content_modal .it_content_view .modal_tit a {
        position: absolute;
        top: -40px;
        right: -5px;
    }
    .it_content_modal .it_content_view .modal_tit span {
        width: 15px;
        height: 15px;
    }
    .it_content_modal .it_content_view .modal_tit span::before,
    .it_content_modal .it_content_view .modal_tit span::after {
        height: 20px;
    }
    .it_content_modal .it_content_view .editor_box {
        height: 250px;
        padding-top: 15px;
        padding-right: 6px;
    }
    .it_content_modal .it_content_view .editor_box textarea {
        height: 220px !important;
        margin: 0 0 15px;
        padding: 0 0 0 15px;
        font-size: 17px;
    }
    .it_content_modal .it_content_view .editor_box textarea::-webkit-scrollbar {
        width: 6px;
    }
    .it_content_modal .it_content_view .it_content_btn {
        margin-top: 35px;
        gap: 0;
    }
    .it_content_modal .it_content_view .it_content_btn li {
        max-width: 100%;
        flex: 1;
    }
    .it_content_modal .it_content_view .it_content_btn .btn {
        font-size: 16px;
        height: 48px;
        border-radius: 0 !important;
    }
}