@charset "utf-8";

.skinSetting {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 35px;
    line-height: 34px;
    border-radius: 20px !important;
    background: var(--main-btn-point-color);
    color: #fff;
}

@media (max-width:991px) {
    .skinSetting {
        width: 65px;
        height: 25px;
        line-height: 24px;
        font-size: 12px;
    }

    .skinSetting i {
        font-size: 10px !important;
    }

}

/* 팝업창 */
#hd_pop {
    position: relative;
    width: 970px;
    height: 0;
    max-width: 100%;
    margin: 0 auto;
    z-index: 99999;
}

#hd_pop h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.hd_pops {
    position: absolute;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 8px 0px;
    background: #fff;
}

.hd_pops_con img {
    max-width: 100%;
}

#hd_pop .hd_pops_footer {
    padding: 0;
    border-top: 1px solid rgb(247, 247, 247);
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #fff;
}

#hd_pop .hd_pops_footer button {
    width: 65%;
    height: 60px;
    margin: 0;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    background: #fff;
}

#hd_pop .hd_pops_footer button + button {
    width: 35%;
    margin-left: -4px;
    border-left: 1px solid rgb(247, 247, 247);
}

.form_modal .form_modal_wrap .home_btn {
	color:#fff !important;
}
@media (max-width: 991px) {
    #hd_pop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        background: rgba(0, 0, 0, 0.6);
    }

    /* 모바일 팝업레이어 공통 설정 : 중앙 팝업창 */
    #hd_pop .hd_pops_center {
        position: absolute;
        border: 1px solid #e9e9e9;
        background: #fff;
        width: calc(100% - 30px);
        max-width: 450px;
    }
    #hd_pop .hd_pops_center h2 {
        position: absolute;
        font-size: 0;
        text-indent: -9999em;
        line-height: 0;
        overflow: hidden;
    }
    #hd_pop .hd_pops_center .hd_pops_con {
        max-width: 100%;
    }
    #hd_pop .hd_pops_center .hd_pops_con img {
        max-width: 100%;
    }
    #hd_pop .hd_pops_center .hd_pops_footer {
        background: #fff;
        color: #fff;
        text-align: right;
        display: flex;
        align-items: center;
    }
    #hd_pop .hd_pops_center .hd_pops_footer button {
        padding: 5px 10px;
        margin: 0;
        border: 0;
        background: #fff;
        color: #333;
    }

    #hd_pop .hd_pops_center .hd_pops_footer button.hd_pops_reject {
        border-right: 1px solid rgb(247, 247, 247);
    }

    /* 모바일 팝업레이어 공통 설정 : 하단 팝업창 */
    #hd_pop .hd_pops_bottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        overflow: hidden;
        transition: transform 1s ease;
        transform: translateY(100%);
    }

    #hd_pop .hd_pops_bottom.on {
        transform: translateY(0);
    }

    #hd_pop .hd_pops_bottom .hd_pops_con img {
        width: 100%;
        height: 100%;
        max-height: 360px;
        object-fit: cover;
    }

    #hd_pop .hd_pops_bottom .hd_pops_footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        border: none;
    }
    #hd_pop .hd_pops_bottom .hd_pops_footer button {
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        font-size: 12px;
        font-weight: 500;
        color: #555;
        background: transparent;
    }

    #hd_pop .hd_pops_bottom .swiper-slide {
        min-height: 100px;
        height: auto;
    }

    #hd_pop .hd_pops_bottom .swiper-pagination {
        top: 15px;
        right: 15px;
        left: auto;
        bottom: auto;
        width: auto;
        padding: 6px 10px 4px 10px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        color: #bfbebe;
        font-size: 10px;
        font-weight: bold;
    }

    #hd_pop .hd_pops_bottom .swiper-pagination span.swiper-pagination-current {
        color: #fff;
    }
}

/* top_top_banner 시작 */
#fs_topbanner {
    width: 100%;
}

#fs_topbanner .top_banner {
    min-height: 41px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    line-height: 41px;
    color: #fff;
    background: var(--main-bg-point-color);
}

#fs_topbanner > div {
    position: relative;
}

#fs_topbanner .tp_reject {
    position: absolute;
    top: 50%;
    right: 18.5%;
    transform: translateY(-50%);
}

#fs_topbanner .tp_reject img {
    width: auto;
}

/* 유형 이미지 */
#fs_topbanner .bg {
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1550px) {
    /* X버튼 */
    #fs_topbanner .tp_reject {
        right: 15px;
    }
}

@media (max-width: 991px) {
    #fs_topbanner .top_banner {
        min-height: 36px;
        font-size: 13px;
        line-height: 36px;
    }

    #fs_topbanner .container_img {
        font-size: 14px;
    }
    #fs_topbanner .tp_reject img {
        width: 10px;
    }
}

/* sub_text 시작 */
.sub_text {
    padding: 0;
    margin: 70px 0 50px;
}

.sub_text.ca_it_mb {
    margin-bottom: 30px;
}

.sub_text.register_tt {
    margin-top: 50px;
    margin-bottom: 70px;
}

.sub_text h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2em;
    text-align: center;
    color: var(--main-font-color);
}

@media (max-width: 991px) {
    .sub_text {
        margin: 50px 0;
        font-size: 24px;
    }

    .sub_text.register_tt {
        margin-bottom: 30px;
    }

    .sub_text h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sub_text {
        margin: 40px 0 20px;
    }
}

/* 캡챠 */

.captcha {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.captcha legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

.captcha .captcha_imgbox {
    width: 240px;
    height: 45px;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    border-radius: 5px;
    line-height: 45px;
    text-align: center;
}

.captcha .captcha_imgbox img {
    display: inline-block;
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: top;
}

.captcha .capcha_aid {
    display: flex;
    flex-flow: column;
    width: 22px;
    margin: 0;
}

.captcha .mp3_captcha {
    position: absolute;
    top: 0;
    left: auto;
    width: 22px;
    height: 22px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    text-indent: -9999px;
    background: transparent;
    cursor: pointer;
}

.captcha .mp3_captcha span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/modal_captcha_mp3.jpg) no-repeat #e3e3e3;
    background-position: left top;
    background-size: cover;
}

.captcha .reload_captcha {
    position: absolute;
    left: auto;
    top: 22px;
    width: 22px;
    height: 22px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
    background: url(/img/modal_captcha_reload.jpg) no-repeat #e3e3e3;
    background-size: cover;
    text-indent: -9999px;
    cursor: pointer;
}

.captcha .captcha_box {
    width: 240px;
    height: 45px;
    margin: 0;
    padding: 0 25px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1.333em;
    font-weight: bold;
    line-height: 2.8em;
    color: #0c0c0c;
    text-align: center;
    vertical-align: top;
}

span.info_captcha {
    display: block;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 400;
    color: var(--main-box-font-color1);
    text-align: center;
}

/* 비밀번호 찾기 내 모달 */
.lost-modal form span.info_captcha {
    margin-top: 20px;
    font-size: 14px;
    color: var(--main-box-font-color4);
}

/* 게시판 */
.write-wrap .captcha .captcha_imgbox {
    width: 300px;
    height: 50px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.write-wrap .captcha .captcha_imgbox img {
    height: 80%;
    margin-top: 7px;
}

.write-wrap .captcha .capcha_aid {
    position: relative;
    width: 18px;
}

.write-wrap .captcha .mp3_captcha {
    top: 6px;
    width: 18px;
    height: 20px;
}

.write-wrap .captcha .mp3_captcha span {
    background: url(/img/captcha.jpg) no-repeat;
}

.write-wrap .captcha .reload_captcha {
    top: 26px;
    width: 18px;
    height: 20px;
    border: none;
    background: url(/img/captcha.jpg) no-repeat;
    background-position: left bottom;
}

.write-wrap .captcha .captcha_box {
    width: 300px;
    height: 50px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.write-wrap span.info_captcha {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

/* VIEW 페이지 */
#captcha_html .captcha_view_box {
    width: 100%;
}

#captcha_html .input-group {
    order: 1;
    width: 50%;
    margin-right: 20px;
}

#captcha_html #captcha {
    width: 100%;
    display: flex;
    gap: 0;
    margin: 15px 0;
}

#captcha_html #captcha #captcha_key {
    font-size: 15px;
    color: #5d5d5d;
    font-weight: 400;
    padding: 0 15px;
    border: none;
    width: 100%;
    text-align: left;
    background-color: transparent !important;
    height: 43px;
    background-image: none !important;
}

#captcha_html #captcha #captcha_key:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

#captcha_html #captcha .captcha_imgbox {
    order: 2;
    width: calc(50% - 30px);
    border: 1px solid #ededed;
    border-radius: 10px;
    padding: 0 10px;
}

#captcha_html #captcha .capcha_aid {
    position: relative;
    width: 18px;
    order: 3;
    margin-left: 10px;
}

#captcha_html #captcha #captcha_mp3 {
    width: 18px;
    height: 20px;
    top: 2px;
    background: url(/img/captcha.jpg) no-repeat;
}

#captcha_html #captcha #captcha_mp3 span {
    background: url(/img/captcha.jpg) no-repeat;
}

#captcha_html #captcha #captcha_reload {
    background: url(/img/captcha.jpg) no-repeat;
    background-position: left bottom;
    border: none;
    width: 18px;
    height: 20px;
    top: 22px;
    padding: 0;
}

#captcha_html #captcha_info,
#captcha_html .well_box #captcha_info {
    display: none;
}

#captcha #captcha_img,
#captcha.m_captcha #captcha_img {
    border: none;
    width: auto;
    display: inline-block;
    margin: 0;
    height: 80%;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .captcha .captcha_imgbox {
        height: 44px;
        flex: 1;
        padding: 0 15px;
        border-radius: 2.5px;
        line-height: 44px;
    }

    .captcha .captcha_imgbox img {
        width: 145px;
    }

    .captcha .captcha_box {
        width: auto;
        height: 44px;
        flex: 1;
        margin-left: 3px;
        padding: 0 15px;
        border-radius: 2.5px;
        font-size: 14px;
        line-height: 29px;
    }

    span.info_captcha {
        margin-top: 8px;
        font-size: 14px;
    }

    /* 비밀번호 찾기 모달 */
    .lost-modal .captcha .capcha_aid {
        position: absolute;
        left: 50%;
        height: 44px;
        transform: translateX(-50%);
    }

    .lost-modal .captcha .captcha_box {
        width: auto;
        flex: 1;
        height: 44px;
        line-height: 39px;
        padding: 0 15px;
        border-radius: 5px;
        background-color: #fff !important;
    }

    /* 게시판 작성페이지 */
    .write-wrap .captcha .captcha_imgbox {
        width: 125px;
        height: 47px;
        border-radius: 5px;
        padding: 6px 15px 4px;
        border-color: #ededed;
    }

    .write-wrap .captcha .captcha_imgbox img {
        width: auto;
        height: 32px !important;
        margin-top: 0;
    }

    .write-wrap .captcha .mp3_captcha {
        width: 15px;
        height: 20px;
        background: url(/img/m_captcha_mp3_icon.png) center / 14px 14px no-repeat;
        top: 4px;
        left: 1px;
    }

    .write-wrap .captcha .reload_captcha {
        top: 23px;
        left: 1px;
        width: 15px;
        height: 20px;
        border-top: 1px solid #e1e1e1;
        background: url(/img/m_captcha_reload_icon.png) center / 15px 13px no-repeat;
    }

    .write-wrap .captcha .captcha_box {
        width: 125px;
        height: 47px;
        line-height: 47px;
        border-radius: 5px;
        border: 1px solid #ededed;
        background-image: none !important;
    }

    .write-wrap span.info_captcha {
        font-size: 15px;
        margin-top: 14px;
    }

    #captcha_html #captcha {
        flex-wrap: wrap;
    }
    #captcha_html .input-group {
        width: 100%;
        margin: 0 0 17px;
    }
    #captcha_html #captcha #captcha_key {
        height: 44px;
        font-size: 15px;
        background-image: none !important;
        padding: 0 17px;
    }
    #captcha_html #captcha .captcha_imgbox {
        width: calc(100% - 27px);
        height: 45px;
        line-height: 43px;
        border-radius: 5px;
        background-color: #fff;
        border-color: #ededed;
        padding: 10px 10px 6px;
    }
    #captcha #captcha_img,
    #captcha.m_captcha #captcha_img {
        height: 28px;
        margin-top: 0;
    }
    #captcha_html #captcha .capcha_aid {
        width: 20px;
        position: relative;
    }
    #captcha #captcha_mp3 {
        top: 0;
    }
    #captcha #captcha_reload {
        top: 20px;
    }
    #captcha_html #captcha #captcha_mp3 span {
        background: none;
    }
    #captcha_html #captcha #captcha_mp3 {
        background: url(/img/m_captcha_mp3_icon.png) center / 18px 18px no-repeat;
        width: 20px;
        height: 20px;
        top: 0;
    }
    #captcha_html #captcha #captcha_reload {
        background: url(/img/m_captcha_reload_icon.png) center / 17px 15px no-repeat;
        width: 21px;
        height: 24px;
        border-top: 1px solid #ededed;
    }
}

/* 페이지네이션 기본 세팅 (상품리스트)*/
.pagination {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    border-radius: 4px;
    font-family: "Pretendard";
}

/* 페이지네이션 margin 기본값 */
.pagination:not(.board-body *) {
    margin: 60px 0 0;
}

/* 상품 상세페이지 페이지네이션 */
.item-wrap.item_detail .pagination {
    margin: 0;
}

/* 페이지네이션 번호 */
.pagination > li {
    display: inline;
}

.pagination:not(.board-body *) li a,
.pagination:not(.board-body *) li span {
    position: relative;
    margin: 0 13px;
    padding: 0;
    border: none;
    border-radius: 0;
    font-size: 15px;
    color: var(--main-btn-font-color4);
    background: none;
}

/*  페이지네이션 < 아이콘 */
.pagination:not(.board-body *) > li:first-child > a,
.pagination:not(.board-body *) > li:first-child > span {
    margin: 0 4px 0 0;
}

/*  페이지네이션 << 아이콘 */
.pagination:not(.board-body *) li:first-child a i::before {
    content: "\f104" "\f104";
}

/*  페이지네이션 > 아이콘 */
.pagination:not(.board-body *) > li:last-child > a,
.pagination:not(.board-body *) > li:last-child > span {
    margin: 0 0 0 4px;
}

/*  페이지네이션 >> 아이콘 */
.pagination:not(.board-body *) li:last-child a i::before {
    content: "\f105" "\f105";
}

.pagination:not(.board-body *) li.active a,
.pagination:not(.board-body *) li.active a:hover {
    font-weight: 500;
    color: var(--main-btn-font-point-color);
}

/* 페이지네이션 선택 불가 스타일 */
.pagination li.disabled * {
    color: #777;
    cursor: not-allowed;
}

/* 게시판 페이지네이션 */

.board-body .pagination {
    margin: 30px 0 40px;
}

.board-body .pagination li a,
.board-body .pagination li span {
    display: inline-block;
    min-width: 32px;
    margin: 0 1px;
    padding: 0 5px;
    border: 1px solid #fff;
    border-radius: 7px;
    line-height: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #999;
    background-color: #fff;
    transition: 0.2s;
}

.board-body .pagination > li:first-child > a,
.board-body .pagination > li:first-child > span {
    margin-right: 14px;
}

.board-body .pagination li:first-child a i::before {
    content: "\f104";
}

.board-body .pagination li:nth-of-type(2) a {
    display: none;
}

/* ••• 표시를 위해 추가 css 작업 */
.board-body .pagination li:nth-last-of-type(2) a i {
    position: relative;
    top: -4px;
}

.board-body .pagination li:nth-last-of-type(2) a i::before {
    content: "";
    display: block;
    width: 13px;
    height: 3px;
    background: url(../../../img/dot_icon.png) center / 13px 3px no-repeat;
}

.board-body .pagination > li:last-child > a,
.board-body .pagination > li:last-child > span {
    margin-left: 14px;
}

.board-body .pagination li:last-child a i::before {
    content: "\f105";
}

.board-body .pagination li:first-child a i,
.board-body .pagination li:last-child a i {
    line-height: 28px !important;
    font-size: 24px !important;
    color: #545454;
}

.board-body .pagination li.active a,
.board-body .pagination li.active a:hover {
    border: 1px solid #0c0c0c !important;
    background-color: #0c0c0c !important;
    font-weight: 600;
    color: #fff !important;
}

.board-body .pagination li:not(.active) span:hover,
.board-body .pagination li:not(.active) span:focus,
.board-body .pagination li:not(.active) a:hover,
.board-body .pagination li:not(.active) a:focus {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
}

@media (max-width: 991px) {
    .pagination:not(.board-body *) {
        margin: 40px 0;
    }

    .pagination:not(.board-body *) li a,
    .pagination:not(.board-body *) li span {
        margin: 0 10px;
        font-size: 13px;
    }

    .board-body .pagination li a,
    .board-body .pagination li span {
        min-width: 29px;
        height: 29px;
        border-radius: 5px;
        line-height: 29px;
        font-size: 15px;
    }

    .board-body .pagination > li:first-child > a,
    .board-body .pagination > li:first-child > span {
        margin-right: 15px;
    }

    .board-body .pagination > li:last-child > a,
    .board-body .pagination > li:last-child > span {
        margin-left: 15px;
    }

    .board-body .pagination li:first-child a i,
    .board-body .pagination li:last-child a i {
        line-height: 29px !important;
        font-size: 22px !important;
        color: #545454;
    }

    .board-body .pagination li:first-child a i::before,
    .board-body .pagination li:last-child a i::before {
        display: block;
    }
}

/* 라디오버튼 ○ 형태*/
/* 클래스명 : radio_check */
.radio_check input {
    display: none;
}

.radio_check input + label {
    display: flex;
    align-items: center;
    color: #0c0c0c;
    cursor: pointer;
    user-select: none;
}

.radio_check input + label .circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d8d8;
    margin-right: 7px;
    top: 1px;
}

.radio_check input + label .circle::before {
    content: "";
    width: 2px;
    height: 6px;
    border-radius: 3px;
    background: #d8d8d8;
    position: absolute;
    top: 9px;
    left: 6px;
    transform: rotate(-45deg);
}

.radio_check input + label .circle::after {
    content: "";
    width: 2px;
    height: 10px;
    border-radius: 5px;
    background: #d8d8d8;
    transform: rotate(45deg);
    position: absolute;
    top: 5px;
    left: 11px;
}

.radio_check input:checked + label .circle {
    border-color: var(--main-btn-line-point-color);
    background: var(--main-btn-point-color);
}

.radio_check input:checked + label .circle::before,
.radio_check input:checked + label .circle::after {
    background: #fff;
}

/* itemqa.skin.php */
.qa_form .radio_check input + label .circle {
    width: 20px;
    height: 20px;
}

.qa_form .radio_check input + label .circle:before {
    top: 8px;
    left: 5px;
}
.qa_form .radio_check input + label .circle:after {
    top: 4px;
    left: 10px;
}

/* 위시리스트 라디오 체크 커스텀 */
.wishlist_body .radio_check input + label {
    position: relative;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.wishlist_body .radio_check input + label .circle {
    top: 0;
    width: 26px;
    height: 26px;
    margin-right: 16px;
}

.wishlist_body .radio_check input + label .circle::before {
    top: 12px;
    left: 7px;
}

.wishlist_body .radio_check input + label .circle::after {
    top: 6px;
    left: 13px;
    height: 13px;
}

/* 장바구니 */
.cart_wrap .radio_check input + label .circle {
    width: 26px;
    height: 26px;
    margin-right: 16px;
}
.cart_wrap .radio_check input + label .circle:before {
    height: 7px;
    width: 3px;
    top: 12px;
    left: 7px;
}
.cart_wrap .radio_check input + label .circle:after {
    width: 3px;
    height: 13px;
    top: 6px;
    left: 13px;
}

/* 라디오박스 □ 형태 */
/* 클래스명 ch_check  */

.check-input {
    display: none;
}

.ch_check input {
    display: none;
}

.ch_check input + label .circle {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #d8d8d8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ch_check input + label .circle::before {
    content: "";
    width: 2px;
    height: 4px;
    border-radius: 3px;
    background: #d8d8d8;
    position: absolute;
    top: 7px;
    left: 5px;
    transform: rotate(-45deg);
}
.ch_check input + label .circle::after {
    content: "";
    width: 2px;
    height: 8px;
    border-radius: 5px;
    background: #d8d8d8;
    transform: rotate(45deg);
    position: absolute;
    top: 4px;
    left: 9px;
}
.ch_check input:checked + label .circle {
    background: var(--main-btn-point-color);
    border: 1px solid var(--main-btn-line-point-color);
}
.ch_check input:checked + label .circle::before {
    background: #ffffff;
}
.ch_check input:checked + label .circle::after {
    background: #ffffff;
}

@media (max-width: 991px) {
    .radio_check input + label .circle {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

    .radio_check input + label .circle::before {
        height: 5px;
        top: 10px;
        left: 7px;
    }

    .radio_check input + label .circle::after {
        height: 11px;
        top: 6px;
        left: 12px;
    }

    /* 위시리스트 */
    .wishlist-skin .radio_check input + label {
        position: relative;
        display: flex !important;
        width: auto !important;
        height: auto !important;
    }
    .wishlist-skin .radio_check input + label .circle {
        top: 0;
        margin-right: 0;
    }

    /* 장바구니 */
    .cart_wrap .radio_check input + label .circle {
        margin-right: 8px;
        width: 24px;
        height: 24px;
    }
    .cart_wrap .radio_check input + label .circle:before {
        top: 10px;
        left: 7px;
        height: 6px;
        width: 2px;
    }
    .cart_wrap .radio_check input + label .circle:after {
        top: 6px;
        left: 12px;
        height: 11px;
        width: 2px;
    }

    .ch_check input + label .circle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 15px;
        height: 15px;
        border-radius: 3px;
    }

    .ch_check input + label .circle::before {
        top: 5px;
        left: 3px;
    }
    

    .ch_check input:checked + label .circle::before {
        top: 5px;
        left: 3px;
    }

    .ch_check input + label .circle::after {
        top: 2px;
        left: 7px;
    }
}

@media (max-width: 480px) {
    .radio_check input + label {
        font-size: 14px;
    }

    .radio_check input + label .circle {
        width: 17px;
        height: 17px;
        margin-right: 5px;
    }

    .radio_check input + label .circle::before {
        width: 2px;
        height: 5px;
        border-radius: 1.5px;
        top: 6px;
        left: 3px;
    }

    .radio_check input + label .circle::after {
        width: 2px;
        height: 8px;
        border-radius: 3.5px;
        top: 3px;
        left: 7px;
    }

    /*  결제 진행 필수 동의 */
    .ordersheet_payment_agree .radio_check input + label .circle {
        width: 21px;
        height: 21px;
    }

    .ordersheet_payment_agree .radio_check input + label .circle::before {
        top: 9px;
        left: 6px;
    }

    .ordersheet_payment_agree .radio_check input + label .circle::after {
        height: 10px;
        top: 5px;
        left: 10px;
    }
}

/* ======================================================== */
.at-html.fixed {
    position: static;
}

.at-html.login-intro .at-body {
    height: 100vh;
}
.mob_foot_menu.login-intro {
    display: none;
}


.load_text {
    display: inline-block;
    background-color: #f3f5f9;
    padding: 6px;
    width: 50%;
    height: 20px;
    border-radius: 5px;
}
@media (max-width: 991px) {
    .load_text {
        height: 15px;
        border-radius: 4px;
    }
}
.load_text.w10 {
    width: 10%;
}
.load_text.w20 {
    width: 20%;
}
.load_text.w30 {
    width: 30%;
}
.load_text.w40 {
    width: 40%;
}
.load_text.w50 {
    width: 50%;
}
.load_text.w60 {
    width: 60%;
}
.load_text.w70 {
    width: 70%;
}
.load_text.w80 {
    width: 80%;
}
.load_text.w90 {
    width: 90%;
}
.load_text.w100 {
    width: 100%;
}
.post_label .load_text {
    width: 40px;
    padding: 4px;
}
.new_label .load_text {
    width: 10px;
}
.load_blink {
    background: linear-gradient(45deg, #f3f5f9, #f3f5f9, #ffffff, #f3f5f9);
    background-size: 200% 200%;
    animation: flow 1s ease infinite;
}
@keyframes flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}


.order_loading_wrap {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    z-index: 9999;
}
.order_loading_wrap .text {
    margin-top: 15px;
    color: #fff;
    font-size: 12px;    
    line-height: 16px;
    padding-bottom: 10px;
}
@media (max-width: 991px) {
    .order_loading_wrap {
        width: 100%;
    }
}
.order_loading_wrap .donut {
    display: inline-block;
    width: 50px;
    height: 50px;
    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;
}
/* ======================================================== */