@charset "UTF-8";

/* 특정페이지 페이지네이션 */
.at-body.mypage_bg .pagination {
    margin: 60px 0 80px;
}

/* 로그인 페이지 시작 */

.custom-login {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 0;
}

.login-page-title {
    font-weight: 600;
    margin: 60px 0 15px;
    font-size: 33px;
    color: #151515;
    line-height: 1.1;
}

.member-login {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}

/* 회원 ~ 비회원 탭 */

.custom-login .nav-tabs {
    display: flex;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 3px;
    border-bottom: none;
}

.custom-login .nav-tabs .nav-item {
    display: block;
    border: 1px solid #d6d6d6;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    margin-bottom: 0px;
    width: 50%;
    text-align: center;
    overflow: hidden;
}

.custom-login .nav-tabs .nav-item + .nav-item {
    margin-left: -1px;
    border-radius: 0 4px 4px 0;
}

.custom-login .nav-tabs .nav-item.active {
    border: 1px solid var(--main-btn-line-point-color);
    position: relative;
    z-index: 1;
}

.custom-login .nav-item .nav-link {
    height: 58px;
    line-height: 56px;
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-btn-font-color4);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    cursor: pointer;
}

.custom-login .nav-item.active .nav-link {
    color: var(--main-btn-font-point-color);
}

/* 아이디, 주문번호, 비밀번호 */
.custom-login .input_div {
    margin-bottom: 12px;
}

.custom-login .input_div input {
    display: block;
    width: 100%;
    height: 58px;
    line-height: 56px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 3px !important;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    color: #0c0c0c;
    outline: none;
    box-shadow: none;
}

.custom-login .input_div input:first-child {
    margin-bottom: 14px;
}

.custom-login .login-opt {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 35px;
}

.custom-login .login-opt input {
    display: none;
}

.custom-login .login-opt input + label {
    position: relative;
    padding-left: 23px;
    font-size: 13px;
    font-weight: 400;
    color: var(--main-box-font-color4);
    cursor: pointer;
}

.custom-login .login-opt input + label::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/img/login_check.png) no-repeat;
}

.custom-login .login-opt input:checked + label::after {
    background: url(../img/login_checked_on.png) no-repeat;
}

/* 로그인, 확인 버튼 */
.custom-login .login-btn {
    height: 58px;
    line-height: 56px;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.custom-login .login-btn button {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: var(--main-btn-point-color);
    border: none;
    border-radius: 3px;
}

.custom-login .login-btn button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.custom-login .login-btn button:hover::after {
    opacity: 0.1;
}

/* 회원가입, 아이디 비밀번호 찾기 */
.custom-login .lost-box {
    display: flex;
    justify-content: center;
}

.custom-login .lost-box a {
    display: block;
    position: relative;
    margin: 0;
    margin-right: 33px;
    padding: 0;
    padding-right: 33px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-btn-font-color2);
}

.custom-login .lost-box a:last-child {
    margin: 0;
    padding: 0;
}

.custom-login .lost-box a::after {
    display: block;
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    top: 2px;
    right: 0;
    background: #ddd;
}

.custom-login .lost-box a:last-child::after {
    display: none;
}

/* 또는 */
.custom-login .floating_or {
    position: relative;
    z-index: 1;
    margin: 50px 0 40px;
    font-size: 17px;
    font-weight: 300;
    color: var(--main-box-font-color4);
    text-align: center;
}

.custom-login .floating_or::before,
.custom-login .floating_or::after {
    content: "";
    width: calc(100% - 276px);
    height: 1px;
    position: absolute;
    top: 8px;
    z-index: -1;
    background: #e3e3e3;
}

.custom-login .floating_or::before {
    left: 0;
}

.custom-login .floating_or::after {
    right: 0;
}

/* 3초만에 빠른 회원가입 */
.custom-login .floating_wing {
    width: 230px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #0c0c0c;
    background: #f2f2f2;
    border-radius: 22px;
    animation: ani 0.6s ease-in-out infinite alternate;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.custom-login .floating_wing::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: -17px;
    border-style: solid;
    border-width: 9px;
    border-left-width: 7px;
    border-right-width: 7px;
    border-color: #f2f2f2 transparent transparent transparent;
}

@keyframes ani {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, 4px, 0);
    }
}

/* SNS 로그인 */

.custom-login #sns_login {
    margin: 0;
    padding: 0;
    border: 0;
}

.custom-login #sns_login a {
    width: 100%;
    height: 60px;
    line-height: 58px;
    display: block;
    position: relative;
    margin-bottom: 13px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    text-align: center;
    overflow: hidden;
    transition: all 0.1s ease-in-out;
}

.custom-login #sns_login a.kakao {
    color: #3a2020;
    background: #ffe800;
}

.custom-login #sns_login a.naver {
    background: #21bc6f;
}

.custom-login #sns_login a.apple {
    background: #000;
}

.custom-login #sns_login a.google {
    background: #fff;
    color: #222;
    border: 1px solid #dcdcdc;
}

.custom-login #sns_login a.facebook {
    background: #445d99;
}

.custom-login #sns_login a.naver,
.custom-login #sns_login a.apple,
.custom-login #sns_login a.facebook,
.custom-login #sns_login a.twitter {
    color: #fff;
}

.custom-login #sns_login a img {
    position: absolute;
    left: 19px;
}

.custom-login #sns_login a.kakao img {
    top: 19px;
}

.custom-login #sns_login a.naver img {
    top: 20px;
}

.custom-login #sns_login a.google img {
    top: 18px;
    left: 18px;
}

.custom-login #sns_login a.facebook img {
    top: 18px;
}

.custom-login #sns_login a.apple img {
    top: 17px;
}

.custom-login .social-login-sheet {
    max-width: 500px;
    display: flex;
    flex-flow: column;
    margin: 0 auto;
}

.custom-login .email_login_chi {
    margin: 30px 0 50px;
    text-align: center;
}

.custom-login .email_login_chi a {
    font-size: 16px;
    color: #444;
    position: relative;
}

.custom-login .email_login_chi a + a {
    padding-left: 18px;
    margin-left: 15px;
    display: inline-block;
}

.custom-login .email_login_chi a + a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #ddd;
}

@media (max-width: 991px) {
    .member-login {
        max-width: 100%;
    }

    .custom-login .nav-tabs {
        border-radius: 0;
        margin-bottom: 9px;
    }

    .custom-login .nav-item .nav-link {
        height: 48px;
        line-height: 47px;
    }

    .custom-login .input_div {
        margin-bottom: 8px;
    }

    .custom-login .input_div input {
        height: 46px;
        line-height: 44px;
        padding: 0 15px;
        font-size: 15px;
    }

    .custom-login .input_div input:first-child {
        margin-bottom: 10px;
    }

    .custom-login .login-opt {
        gap: 15px;
        margin-bottom: 21px;
    }

    .custom-login .login-opt input + label {
        padding-left: 20px;
        font-size: 13px;
    }

    .custom-login .login-opt input + label::after {
        width: 15px;
        height: 15px;
        background: url(/img/mlogin_check.png) no-repeat center center / cover;
        background-size: 15px;
    }

    .custom-login .login-opt input:checked + label::after {
        background: url(../img/mlogin_checked_on.png) no-repeat;
        background-size: 15px;
    }

    .custom-login .login-btn {
        margin-bottom: 15px;
        height: 45px;
        line-height: 45px;
    }

    .custom-login .login-btn button {
        font-size: 16px;
    }

    .custom-login .lost-box a {
        margin-right: 17px;
        padding-right: 17px;
        font-size: 15px;
    }

    .custom-login .floating_or {
        margin: 38px 0;
        font-size: 14px;
    }

    .custom-login .floating_or::before,
    .custom-login .floating_or::after {
        width: 45%;
        top: 6px;
    }

    .custom-login .floating_wing {
        width: 195px;
        height: 38px;
        padding: 0;
        font-size: 14px;
    }

    .custom-login #sns_login a {
        height: 49px;
        line-height: 49px;
        font-size: 15px;
    }

    .custom-login #sns_login a img {
        left: 24px;
    }

    .custom-login #sns_login a.kakao img {
        height: 18px;
        top: 14px;
    }

    .custom-login #sns_login a.naver img {
        height: 13px;
        top: 16px;
        left: 26px;
    }

    .custom-login #sns_login a.apple img {
        height: 19px;
        top: 11px;
    }

    .custom-login #sns_login a.google img {
        height: 19px;
        top: 12px;
        left: 21px;
    }

    .custom-login #sns_login a.twitter img {
        height: 15px;
        top: 14px;
        left: 23px;
    }

    .custom-login #sns_login a.facebook img {
        height: 18px;
        top: 13px;
        left: 27px;
    }

    .custom-login .social-login-sheet {
        margin-top: 0;
    }

    .custom-login .email_login_chi a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .custom-login .login-opt input + label::after {
        width: 11px;
        height: 11px;
        background-size: 11px;
    }

    .custom-login .login-opt input:checked + label::after {
        background-size: 11px;
    }

    .custom-login .floating_or::before,
    .custom-login .floating_or::after {
        width: 41%;
    }

    .custom-login #sns_login a.kakao img {
        height: 15px;
    }

    .custom-login #sns_login a.naver img {
        height: 13px;
        top: 15px;
    }
    .custom-login #sns_login a.apple img {
        height: 17px;
        top: 12px;
    }

    .custom-login #sns_login a.google img {
        height: 17px;
        left: 22px;
    }

    .custom-login #sns_login a.twitter img {
        height: 13px;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
로그인 페이지
html > skin > member > basic > login.skin.php=
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/* 240516 */
.at-html.login-intro .wing-right {
    height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}
.at-html.login-intro #thema_wrapper {
    background-color: #f7f7f7;
}
.at-html.login-intro .point_color {
    color: var(--main-btn-point-color);
}
.at-html.login-intro .sub_text {
    display: none;
}
.at-html.login-intro .at-body > .container_fix {
    max-width: 1360px;
    height: 100%;
}
.at-html.login-intro .at-body .at-content {
    /* padding: 96px 0 0; */
    padding: 0 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.at-html.login-intro .login_intro_img {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    min-width: 430px;
}
.at-html.login-intro .login_intro_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.at-html.login-intro .custom-login {
    max-width: inherit;
    width: 100%;
}
.at-html.login-intro .login-body {
    display: flex;
    width: 100%;
}
.at-html.login-intro .member-login,
.at-html.login-intro .non-members-login {
    /* max-width: 460px; */
    max-width: 715px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    padding: 44px 9.526% 47px;
    border-radius: 0 20px 20px 0;
}
.at-html.login-intro .member-login.id_login {
    padding-top: 144px;
}
.at-html.login-intro .member-login.id_login {
    text-align: center;
}

.at-html.login-intro .member-login h4 {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 30px;
}
.at-html.login-intro .member-login h4.intro_closed_mall {
    padding-top: 19px;
}
.at-html.login-intro .custom-login .member-login .nav-tabs li a {
    height: 50px;
    line-height: 48px;
}
.at-html.login-intro .custom-login .member-login .nav-tabs {
    margin-bottom: 10px;
    display: none;
}
.at-html.login-intro .custom-login .member-login .tab-content .form-group input {
    height: 50px;
    line-height: 48px;
    margin-bottom: 10px;
    padding: 0 20px;
}
.at-html.login-intro .custom-login .member-login .tab-content .login-opt {
    padding-top: 10px;
    margin-bottom: 25px;
}
.at-html.login-intro .custom-login .member-login .login-btn {
    height: 50px;
    line-height: 48px;
    margin-bottom: 20px;
}
.at-html.login-intro .custom-login .member-login .login-btn button {
    font-size: 16px;
    font-weight: 500;
}
.at-html.login-intro .custom-login .member-login .tab-content .or {
    margin: 35px 0 20px;
}
.at-html.login-intro .custom-login .member-login .tab-content .lost-box a {
    color: #999999;
    transition: all 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
    .at-html.login-intro .custom-login .member-login .tab-content .lost-box a:hover {
        color: #333;
    }
}

.at-html.login-intro .custom-login .member-login .floating,
.at-html.login-intro .custom-login .social-login-sheet .floating {
    width: 200px;
    height: 35px;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}
.at-html.login-intro .custom-login #sns_login a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
}
.at-html.login-intro .custom-login #sns_login a.kakao img {
    top: 13px;
}
.at-html.login-intro .custom-login #sns_login a.naver img {
    top: 13px;
}
.at-html.login-intro .custom-login #sns_login a.google img {
    top: 11px;
}
.at-html.login-intro .custom-login #sns_login a.facebook img {
    top: 11px;
    left: 23px;
}
.at-html.login-intro .intro_adult_text {
    padding-top: 10px;
}
.at-html.login-intro .intro_adult_text p {
    font-size: 14px;
    color: #666666;
    text-align: center;
    line-height: 1.6em;
}
.at-html.login-intro .intro_adult_text a {
    font-weight: 500;
    color: #010101;
    text-decoration: underline;
    text-underline-offset: 5px;
}
@media (max-width: 1400px) {
    .at-html.login-intro .member-login,
    .at-html.login-intro .non-members-login {
        padding: 44px 2.526% 40px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or::before {
        height: 1em;
        background-color: #fff;
        left: 50%;
        transform: translateX(-50%);
        width: 10%;
        top: 0;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or::after {
        width: 100%;
        z-index: -2;
    }
}
@media (max-width: 1200px) {
    .at-html.login-intro .login_intro_img {
        max-width: 715px;
        margin: 0 auto;
    }
}
@media (max-width: 991px) {
    .at-html.login-intro #thema_wrapper {
        background-color: #fff;
    }
    .at-html.login-intro .at-body > .container_fix {
        height: auto;
    }
    .at-html.login-intro .at-body .at-content {
        padding-top: 30px;
    }
    .at-html.login-intro .login-body {
        display: block;
    }
    .at-html.login-intro .login_intro_img {
        text-align: center;
        color: #999999;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.6em;
        padding: 0 9.526% 0;
        min-width: auto;
    }
    .at-html.login-intro .login_intro_img > .intro_adult {
        border-bottom: 1px solid #e9e9e9;
        padding-bottom: 25px;
    }
    .at-html.login-intro .login_intro_img .intro_adult img {
        width: 56px;
        margin: 0 auto 12px;
        display: inline-block;
    }
    .at-html.login-intro .login_intro_img .intro_closed_mall img {
        width: 168px;
        margin: 0 auto;
        display: inline-block;
    }
    .at-html.login-intro .member-login,
    .at-html.login-intro .non-members-login {
        box-shadow: none;
        padding-top: 35px;
        padding: 34px 9.526% 40px;
    }
    .at-html.login-intro .member-login.id_login {
        padding-top: 44px;
    }
    .at-html.login-intro .member-login h4 {
        text-align: center;
        font-size: 15px;
        margin-bottom: 20px;
    }
    .at-html.login-intro .custom-login .member-login .nav-tabs li a {
        height: 40px;
        line-height: 38px;
    }
    .at-html.login-intro .custom-login .member-login .nav-tabs li:nth-child(1) a {
        border-radius: 4px 0 0 4px;
    }
    .at-html.login-intro .custom-login .member-login .nav-tabs li:nth-child(2) a {
        border-radius: 0 4px 4px 0;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .form-group input {
        height: 45px;
        line-height: 40px;
        border-radius: 4px !important;
        padding: 0 15px;
        border: 1px solid #e3e3e3;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .login-opt {
        justify-content: center;
        padding-top: 5px;
        margin-bottom: 20px;
    }
    .at-html.login-intro .custom-login .member-login .login-btn {
        height: 40px;
        line-height: 40px;
        margin-bottom: 18px;
    }
    .at-html.login-intro .custom-login #sns_login a.kakao img {
        top: 15px;
    }
    .at-html.login-intro .custom-login #sns_login a.naver img {
        top: 16px;
    }
    .at-html.login-intro .custom-login #sns_login a.google img {
        top: 12px;
    }
    .at-html.login-intro .custom-login #sns_login a.facebook img {
        top: 13px;
        left: 26px;
    }
}
@media (max-width: 480px) {
    .at-html.login-intro .custom-login .member-login .tab-content .login-opt input + label::after {
        width: 13px;
        height: 13px;
        background-size: 13px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .login-opt input + label {
        font-size: 12px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or {
        margin: 30px 0 20px;
        font-size: 13px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or::before {
        width: 20%;
    }
    .at-html.login-intro .custom-login .member-login .floating,
    .at-html.login-intro .custom-login .social-login-sheet .floating {
        font-size: 11px;
        width: 140px;
        height: 24px;
        padding: 2px 15px 0;
    }
    .at-html.login-intro .intro_adult_text p {
        font-size: 12px;
    }
}

/* 회원가입 페이지 */
.register-wrap {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    padding-bottom: 20px;
}

.register-wrap .register_sheet .reg_tab {
    display: flex;
    justify-content: center;
    gap: 13px;
    position: relative;
    padding: 0 83.5px;
}

.register-wrap .register_sheet .reg_tab li {
    height: 60px;
    line-height: 58px;
    flex: 1;
    margin-bottom: 59px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.register-wrap .register_sheet .reg_tab li.active {
    background: var(--main-btn-point-color);
    border-color: var(--main-btn-line-point-color);
}

.register-wrap .register_sheet .reg_tab li a {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: var(--main-btn-font-color4);
    text-align: center;
}

.register-wrap .register_sheet .reg_tab li.active a {
    font-weight: 500;
    color: #fff;
}

.register-wrap .register_sheet .reg_form {
    max-width: 540px;
    margin: 0 auto;
}

.register-wrap .register_sheet .reg_form_com {
    margin-bottom: 40px;
    padding: 0 0 40px;
    border-bottom: 1px solid #d6d6d6;
}

.register-wrap .register_sheet .reg_form_bui {
    display: none;
}

.register-wrap .register_sheet .reg_form_bui.active {
    display: block;
}

.register-wrap .register_sheet .reg_form_com .input-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.register-wrap .register_sheet .reg_form_com .input-box:last-child {
    margin-bottom: 0;
}

.register-wrap .register_sheet .reg_form_com .input-box-msg {
    align-items: flex-end;
    flex-flow: column;
}

.register-wrap .register_sheet .reg_form_com .input-box-msg div {
    width: 100%;
    display: flex;
    align-items: center;
}

.register-wrap .register_sheet .reg_form_com .input-box label {
    width: 136px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-box-font-color);
    line-height: 46px;
}

.register-wrap .register_sheet .reg_form_com .input-box label .essential {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--main-box-point-color) !important;
    position: relative;
    top: 9px;
    right: -4px;
    font-size: 0;
    background-image: none !important;
}

.register-wrap .register_sheet .reg_form .red {
    display: none;
}

.register-wrap .register_sheet .reg_form_com .input-box input {
    width: calc(100% - 136px);
    height: 46px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    box-shadow: none;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #fff;
    color: #0c0c0c;
    outline: none;
}

.register-wrap .register_sheet .reg_form_bui .addr > div {
    width: calc(100% - 136px);
}

.register-wrap .register_sheet .reg_form_bui .addr > div input {
    width: 100%;
}

.register-wrap .register_sheet .reg_form_com .input-box input:focus {
    border: 1px solid var(--main-box-line-point-color);
}

.register-wrap .register_sheet .reg_form_com .input-box .msg-box {
    width: calc(100% - 136px);
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    margin-top: 12px;
    display: none;
}

.register-wrap .register_sheet .reg_form_com .input-box .msg-box.txt {
    display: block;
}

.register-wrap .register_sheet .reg_form_com .input-box .msg-box.id,
.register-wrap .register_sheet .reg_form_com .input-box .msg-box.pw {
    color: #ff0000;
}

.register-wrap .register_sheet .reg_form_per .input-box-msg.email > div.email_msg {
    width: calc(100% - 136px);
    flex-direction: column;
}

.register-wrap .register_sheet .reg_form_per .input-box-msg.email > div.email_msg > div {
    width: 100%;
    color: #ff0000;
    font-weight: 400;
    margin-bottom: 0;
}

.register-wrap .register_sheet .reg_form_com .input-box.reg_form_name {
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 10px;
}

.register-wrap .register_sheet .reg_form_com .reg_form_name.input-box .reg_form_name_box {
    width: calc(100% - 136px);
}

.register-wrap .register_sheet .reg_form_com .input-box.addr {
    align-items: flex-start;
}

.register-wrap .register_sheet .reg_form .reg_terms {
    padding: 0 20px;
}

.register-wrap .register_sheet .reg_form_com .reg_form_name.input-box input {
    width: 100%;
}

.register-wrap .register_sheet .reg_form_com .reg_form_name .cert-box {
    width: 100%;
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
    width: 100%;
    background: #bfbfbf;
    border-radius: 5px !important;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 10px;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: 0.3s;
    background-color: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #999999 !important;
}

.register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn:hover {
    background: var(--main-box-point-color);
    color: #fff !important;
}

.register-wrap .register_sheet .reg_form_com .reg_form_name .msg-box {
    width: 100%;
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    font-weight: 400;
    line-height: 20px;
}

.register-wrap .register_sheet .reg_form_com .input-box-msg .nick,
.register-wrap .register_sheet .reg_form_com .input-box-msg .hp {
    flex-flow: column;
    align-items: flex-end;
}

.register-wrap .register_sheet .reg_form_com .input-box .msg-box.txt.gray {
    color: var(--main-box-font-color4);
}

.register-wrap .register_sheet .reg_form_per .input-box.addr .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.homepage .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.tel .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.signature .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.profile .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.recommend .re_input_box {
    width: calc(100% - 136px);
}

.register-wrap .register_sheet .reg_form_per .input-box.addr .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.homepage .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.tel .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.signature .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.profile .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.recommend .re_input_box input {
    width: 100%;
}

.register-wrap .register_sheet .reg_form_com .input-box .re_input_box #daum_juso_pagemb_zip,
.register-wrap .register_sheet .reg_form_com .input-box.addr #daum_juso_pagecom_zip {
    max-height: 400px;
}

.register-wrap .register_sheet .reg_form_com .input-box textarea {
    line-height: 21px;
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    width: 100%;
    height: 130px;
    resize: none;
    background: #fff;
}

.register-wrap .register_sheet .reg_form .reg_terms h2 {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-box-font-color);
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box {
    position: relative;
    padding: 0;
    padding-bottom: 23px;
    border: none;
}

.register-form .check-input {
    display: none;
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    padding-left: 0px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
    color: #999999;
    margin: 0;
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input:checked + label {
    color: var(--main-box-font-color);
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 7px;
    right: 0;
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::before,
.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::after {
    content: "";
    width: 8px;
    height: 1px;
    position: absolute;
    background: var(--main-box-font-color);
    transition: all 100ms linear;
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::before {
    right: 6px;
    transform: rotate(-45deg);
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::after {
    transform: rotate(45deg);
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .arrow::before {
    transform: rotate(45deg);
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .arrow::after {
    transform: rotate(-45deg);
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .detail-content {
    height: 0;
    line-height: 22px;
    display: block;
    margin-top: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    overflow-y: auto;
    font-size: 13px;
    font-weight: 300;
    border: none;
    background: #f8f8f8;
    color: #999;
    transition: all 250ms linear;
    overflow: hidden;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .detail-content {
    height: 145px;
    margin-top: 20px;
    padding: 20px 6px 20px 20px;
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box .detail-content .cf_box {
    overflow-y: auto;
    height: 105px;
    padding-right: 5px;
}

.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .detail-content .cf_box::-webkit-scrollbar {
    width: 4px;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .detail-content .cf_box::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    width: 4px;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .detail-content .cf_box::-webkit-scrollbar-button {
    background-color: #f8f8f8;
}

.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap {
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    text-align: center;
}

.register-wrap .register_sheet .reg_form .regis_interest {
    position: relative;
    margin: 0;
    margin-top: 10px;
    padding: 40px 0 0;
    font-size: 16px;
    font-weight: 400;
    border: none;
    color: #444;
}

.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap.register_btn #btn_submit.regbtn {
    border-radius: 5px;
    width: 100%;
    height: 58px;
    line-height: 58px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: var(--main-btn-point-color);
}

.register-wrap .register_sheet .reg_form .regis_interest::after {
    content: "";
    width: 200%;
    height: 18px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #eff2f5;
}

.register-wrap .register_sheet .input-box.with-button input {
    margin-right: 5px;
    width: calc(100% - 261px) !important;
}

.register-wrap .register_sheet .input-box .hp_req {
    width: 120px;
    min-height: 46px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background: var(--main-btn-point-color);
    transition: 0.2s;
    color: #fff;
    padding: 5px;
}

.register-wrap .register_sheet .input-box .hp_req.hp_chk {
    background: #999999;
}

.register-wrap .register_sheet .input-box .hp_req.again {
    background: #999999;
}

.register-wrap .register_sheet .input-box.with-timer .timer {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(-50%);
    top: 50%;
    right: 140px;
    color: red;
}

.register-wrap .register_sheet .reg_form .captcha_html {
    padding-top: 39px;
}

@media (max-width: 991px) {
    .at-content.register_cont {
        padding-bottom: 0;
    }

    .register-wrap {
        padding-bottom: 0;
        max-width: 100%;
    }

    .register-wrap .register_sheet {
        width: 100%;
    }

    .register-wrap .register_sheet .reg_tab {
        gap: 10px;
        padding: 0;
        padding-bottom: 38px;
        margin-bottom: 60px;
    }

    .register-wrap .register_sheet .reg_tab li {
        height: 47px;
        line-height: 45px;
        margin-bottom: 0;
    }

    .register-wrap .register_sheet .reg_tab li a {
        font-size: 15px;
    }

    .register-wrap .register_sheet .reg_tab::after {
        content: "";
        width: 200%;
        height: 18px;
        position: absolute;
        bottom: 0;
        background: #eff2f5;
    }

    .register-wrap .register_sheet .reg_form_com .reg_form_name.input-box .reg_form_name_box {
        width: 100%;
    }

    .register-wrap .register_sheet .reg_form_com {
        position: relative;
        margin-bottom: 30px;
        border: none;
    }

    .register-wrap .register_sheet .reg_form_com .input-box {
        display: block;
        margin-bottom: 20px;
    }

    .register-wrap .register_sheet .reg_form_com .input-box-msg div {
        display: block;
    }

    .register-wrap .register_sheet .reg_form_com .input-box label {
        margin-bottom: 0;
        font-size: 16px;
    }

    .register-wrap .register_sheet .reg_form_com .input-box input {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        border-radius: 2.5px;
    }

    .register-wrap .register_sheet .reg_form_bui .addr > div {
        width: 100%;
    }

    .register-wrap .register_sheet .reg_form_com .input-box .msg-box {
        width: 100%;
    }

    .register-wrap .register_sheet .reg_form_per .input-box-msg.email > div.email_msg {
        width: 100%;
    }

    .register-wrap .register_sheet .reg_form_per .input-box.addr .re_input_box,
    .register-wrap .register_sheet .reg_form_per .input-box.homepage .re_input_box,
    .register-wrap .register_sheet .reg_form_per .input-box.tel .re_input_box,
    .register-wrap .register_sheet .reg_form_per .input-box.signature .re_input_box,
    .register-wrap .register_sheet .reg_form_per .input-box.profile .re_input_box,
    .register-wrap .register_sheet .reg_form_per .input-box.recommend .re_input_box {
        width: 100%;
    }

    .register-wrap .register_sheet .reg_form_com .reg_form_name .cert-box {
        margin-top: 15px;
    }

    .register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
        padding: 9.25px 10px;
        font-size: 14px;
        font-weight: 500;
    }
    .register-wrap .register_sheet .reg_form_com .reg_form_name .msg-box {
        margin: 5px 0 20px;
        font-size: 13px;
        margin-top: 10px;
    }

    .register-wrap .register_sheet .input-box .hp_req {
        width: 100%;
        margin-top: 5px;
    }

    .register-wrap .register_sheet .input-box.with-button input {
        width: 100% !important;
        font-size: 14px;
        font-weight: 500;
        border-radius: 2.5px;
    }
    .register-wrap .register_sheet .input-box.with-timer .timer {
        right: 15px;
        top: 50px;
    }
    .register-wrap .register_sheet .input-box .hp_req {
        width: 100%;
        margin-top: 5px;
    }

    .register-wrap .register_sheet .reg_form .reg_terms h2 {
        font-size: 15px;
        font-weight: 600;
    }

    .register-wrap .register_sheet .reg_form .reg_terms .check-box {
        padding-bottom: 19px;
        margin-bottom: 19px;
        border-bottom: 1px solid #e1e1e1;
    }

    .register-wrap .register_sheet .reg_form .reg_terms .check-box:nth-child(7) {
        border-bottom: none;
    }

    .register-wrap .register_sheet .reg_form_com .input-box textarea {
        line-height: 19px;
        font-size: 13px;
    }

    .register-wrap .register_sheet .reg_form_com::after {
        content: "";
        width: 200%;
        height: 18px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #eff2f5;
    }

    .register-wrap .register_sheet .reg_form .reg_terms {
        padding: 0;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow {
        top: 10px;
        right: 2px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box.active .detail-content {
        padding: 15px 5px 15px 15px;
        font-size: 11.5px;
        line-height: 21.5px;
    }
    .register-wrap .register_sheet .reg_form .regis_interest {
        font-size: 17px;
        font-weight: 600;
        padding: 30px 0 0;
    }
    .register-wrap .register_sheet .reg_form .captcha_html {
        padding-top: 30px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap {
        width: 100%;
        margin-top: 50px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap.register_btn #btn_submit.regbtn {
        width: 100%;
        padding: 0 45px;
        height: 48px;
        line-height: 46px;
        font-size: 15px;
        border-radius: 2.5px;
    }
}

@media (max-width: 480px) {
    .register-wrap .register_sheet .reg_tab {
        padding-bottom: 25px;
        margin-bottom: 35px;
    }

    .register-wrap .register_sheet .reg_form_com {
        padding: 0 0 30px;
    }
    .register-wrap .register_sheet .reg_form_com .input-box .msg-box.txt {
        margin-top: 6px;
    }

    .register-wrap .register_sheet .reg_form_com .reg_form_name .cert-box {
        margin-top: 10px;
    }
    .register-wrap .register_sheet .reg_form_com .reg_form_name .msg-box {
        font-size: 12px;
        line-height: 15px;
        margin-top: 6px;
        display: block;
    }
    .register-wrap .register_sheet .input-box .hp_req {
        font-size: 14px;
    }
    .register-wrap .register_sheet .input-box.with-button input {
        height: 40px;
        line-height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }
    .register-wrap .register_sheet .input-box.with-timer .timer {
        top: 47px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms h2 {
        font-size: 13px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box {
        padding-bottom: 16px;
        margin-bottom: 17px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label {
        font-size: 14px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label::after {
        display: none;
    }
    .register-wrap .register_sheet .reg_form_com::after {
        height: 9px;
    }
    .reg_terms .radio_check input + label .circle::before {
        top: 7px;
        left: 4px;
    }
    .reg_terms .radio_check input + label .circle::after {
        top: 3.5px;
        left: 8px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow {
        width: 8px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::before {
        right: 6px;
    }
    .register-wrap .register_sheet .reg_form .regis_interest::after {
        height: 9px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap {
        margin-top: 40px;
    }
}

/* 소셜 회원가입 skin/social/social_register_member.skin.php */
.register-wrap.register_social .register_sheet .reg_form {
    min-width: 540px;
}

.register-wrap.register_social .register_sheet .reg_form_com {
    padding: 0;
    border-bottom: none;
}

.register-wrap.register_social .register_sheet .reg_form .reg_terms {
    padding: 0;
}

.register-wrap.register_social .register_sheet .reg_form .reg_terms .regbtn-wrap {
    margin-top: 0;
}

@media (max-width: 991px) {
    .register-wrap.register_social {
        display: block;
    }

    .register-wrap.register_social .area-box {
        float: none;
        width: 100%;
    }
    .register-wrap.register_social .register_sheet .reg_form {
        min-width: 100%;
    }

    .register-wrap.register_social .register_sheet .reg_form_com::after {
        display: none;
    }
}

/* 소셜 추가정보 기입 skin/social/social_addition_member.skin.php */
.register-wrap.register_addition .register_sheet .reg_form_com {
    padding: 0;
    border-bottom: none;
}

.register-wrap.register_addition .register_sheet .reg_form .reg_terms {
    padding: 0;
}

.register-wrap.register_addition .register_sheet .reg_form .reg_terms .regbtn-wrap {
    margin-top: 0;
}

@media (max-width: 991px) {
    .register-wrap.register_addition .register_sheet .reg_form_com::after {
        display: none;
    }
}

/* 회원가입 완료페이지 */
.register_result_sheet {
    padding-top: 100px;
}
.register_result_sheet .txt-box {
    text-align: center;
}
.register_result_sheet .txt-box h1 {
    line-height: 42px;
    font-size: 30px;
    font-weight: 400;
    color: var(--main-font-color);
}
.register_result_sheet .txt-box h1 span {
    font-weight: bold;
}
.register_result_sheet .txt-box p {
    line-height: 25px;
    margin-top: 25px;
    font-size: 15px;
    font-weight: 400;
    color: var(--main-font-color);
}
.register_result_sheet .info-box {
    margin-top: 25px;
    text-align: center;
}
.register_result_sheet .info-box p {
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-font-point-color);
}
.register_result_sheet .info-box p span {
    font-weight: 500;
}
.register_result_sheet .alert-box {
    line-height: 24px;
    padding: 21px 20px;
    font-size: 13px;
    font-weight: 300;
    background: #fafafa;
    color: var(--main-box-font-color4);
    text-align: center;
    max-width: 1100px;
    margin: 40px auto 0;
}
.register_result_btn {
    margin: 40px 0 50px !important;
}
.register_result_btn a {
    height: 60px;
    line-height: 58px;
    padding: 0 57px;
    font-size: 17px;
    font-weight: 400;
    display: inline-block;
    color: #fff;
    border-radius: 30px !important;
}
@media (max-width: 991px) {
    .register_result_sheet {
        padding-top: 43px;
    }
    .register_result_sheet .txt-box h1 {
        line-height: 36px;
        font-size: 25px;
    }
    .register_result_sheet .txt-box p {
        line-height: 22px;
        font-size: 14px;
        margin-top: 13px;
    }
    .register_result_sheet .info-box p {
        line-height: 21px;
        font-size: 15px;
    }
    .register_result_sheet .alert-box {
        padding: 15px;
        margin: 31px auto 0;
        font-size: 14px;
        line-height: 23px;
    }
    .register_result_btn {
        margin: 30px 0 0 !important;
    }
    .register_result_btn a {
        height: 46px;
        line-height: 45px;
        padding: 0;
        font-size: 16px;
        width: 110px;
    }
}

@media (max-width: 480px) {
    .register_result_sheet .txt-box h1 {
        line-height: 33px;
        font-size: 26px;
    }
    .register_result_sheet .txt-box p {
        line-height: 23px;
        font-size: 14px;
        font-weight: 300;
    }
    .register_result_sheet .info-box p {
        line-height: 23px;
        font-size: 15px;
    }
}

/* 마이페이지 */
/* 
마이페이지 대시보드 전체 노출을 위해 따로 뺌
마이페이지 대시보드 html > skin > member > basic > mypage_dashboard.php
*/
.at-body.mypage {
    padding-top: 40px;
}
.at-body.mypage_bg {
    background-color: #f9f9f9;
}
.mypage_dashboard {
    border: 0;
    background: #f9f9f9;
    padding: 60px 0;
}
.mypage_dashboard .container_fix {
    display: flex;
}
.mypage_dashboard .quart_box {
    width: 19.231%;
    min-height: 150px;
    border-right: 0;
    background: #fff;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
}
.mypage_dashboard .quart_box .more-btn a {
    font-size: 15px;
    color: #0c0c0c;
    font-weight: 400;
}
.mypage_dashboard .quart_box .more-btn a .arrow_box {
    display: inline-block;
    width: 7px;
    height: 13px;
    background-image: url(../img/arrow_box.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 12px;
}
.mypage_dashboard .quart_box .quart-description span {
    font-size: 20px;
    color: var(--main-box-font-point-color);
    font-weight: 500;
    margin-top: 20px;
    display: block;
}
.mypage_dashboard .quart_box .left_info {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.mypage_dashboard .quart_box .left_info .icon_box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.mypage_dashboard .quart_box .left_info .icon_box .member_icon {
    display: block;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}
.mypage_dashboard .quart_box .left_info .icon_box .member_icon img {
    display: block;
    width: 100%;
}
.mypage_dashboard .quart_box .left_info .text_box {
    display: flex;
    flex-direction: column;
}
.mypage_dashboard .quart_box .left_info .text_box .name_box {
    font-size: 20px;
    color: #0c0c0c;
    font-weight: 400;
}
.mypage_dashboard .quart_box .left_info .text_box .level_text {
    font-size: 14px;
    color: #777777;
    font-weight: 400;
    margin-top: 10px;
}
.mypage_dashboard .quart_box .right_info {
    position: relative;
}
.mypage_dashboard .quart_box .right_info a {
    display: block;
    width: 78px;
    padding: 6px 5px;
    border: 1px solid #999999;
    border-radius: 14px;
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    text-align: center;
    transition: 0.1s;
}
.mypage_dashboard .quart_box .right_info a:hover {
    border-color: var(--main-btn-font-point-color);
    color: var(--main-btn-font-point-color);
}
.mypage_dashboard .quart_box .right_info .edit_list_wrap {
    display: none;
}
.mypage_dashboard .quart_box .right_info .edit_list {
    width: 170px;
    position: absolute;
    z-index: 5;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
}
.mypage_dashboard .quart_box .right_info .edit_list::before {
    content: "";
    display: block;
    border: 16px solid #fff;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
    border-left: 0;
    border-bottom: 0;
}
.mypage_dashboard .quart_box .right_info .edit_list li a {
    font-size: 14px;
    color: #0c0c0c;
    font-weight: 400;
    height: auto;
    line-height: 50px;
    border: 0;
    border-radius: 0;
    text-align: center;
    display: block;
    width: 100%;
}
.mypage_dashboard .quart_box .right_info .edit_list li a:hover {
    background: var(--main-btn-point-color);
    color: #fff;
}
.mypage_dashboard .quart_info {
    flex-direction: unset;
    align-items: center;
    width: 39%;
}
.mypage_dashboard .quart_box + .quart_box {
    margin-left: 1.1023%;
}
@media (max-width: 991px) {
    .mypage_dashboard {
        background: #fff;
        padding: 0;
        margin-bottom: 0;
    }
    .mypage_dashboard .quart_box {
        width: 100%;
        padding: 35px 0;
        min-height: auto;
    }
    .mypage_dashboard .quart_box .left_info .icon_box {
        width: 90px;
        height: 90px;
        margin-right: 30px;
    }
    .mypage_dashboard .quart_box .left_info .icon_box .member_icon {
        display: block;
        width: 100%;
        height: 100%;
        background: #f0f0f0;
    }
    .mypage_dashboard .quart_box .left_info .text_box {
        display: flex;
        flex-direction: column;
    }
    .mypage_dashboard .quart_box .left_info .text_box .name_box {
        font-size: 20px;
        /* color: #0c0c0c; */
        font-weight: 400;
    }
    .mypage_dashboard .quart_box .left_info .text_box .level_text {
        font-size: 14px;
        color: #777;
        font-weight: 400;
        margin-top: 10px;
    }
    .mypage_dashboard .quart_box .right_info a {
        width: 75px;
        height: 27px;
        line-height: 27px;
        font-size: 14px;
        padding: 0 5px;
    }
    .mypage_dashboard .quart_box .right_info .edit_list_wrap {
        display: none;
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10;
    }
    .mypage_dashboard .quart_box .right_info .edit_list {
        top: unset;
        bottom: 60px;
        left: 0;
        z-index: 10;
        box-shadow: 0 0 0;
        transform: none;
        width: 100%;
        background: transparent;
        padding: 0 15px;
    }
    .mypage_dashboard .quart_box .right_info .edit_list::before {
        display: none;
    }
    .mypage_dashboard .quart_box .right_info .edit_list li a {
        display: block;
        background: #dcdcdc;
        line-height: 60px;
        font-size: 18px;
        color: #777;
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #bababa;
    }
    .mypage_dashboard .quart_box .right_info .edit_list li a:hover {
        color: #0c0c0c;
        background: #e7e7e7;
    }
    .mypage_dashboard .quart_box .right_info .edit_list li:first-child a {
        border-top: 0;
        border-radius: 10px 10px 0 0;
    }
    .mypage_dashboard .quart_box .right_info .edit_list li:nth-child(4) a {
        border-radius: 0 0 10px 10px;
    }
    .mypage_dashboard .quart_box .right_info .edit_list .cancel_btn {
        display: block;
        background: #fff;
        line-height: 60px;
        font-size: 18px;
        color: #0c0c0c;
        font-weight: 500;
        border-radius: 15px;
        text-align: center;
        margin-top: 15px;
        overflow: hidden;
    }
    .mypage_dashboard .quart_box .right_info .edit_list .cancel_btn:hover {
        background: #fff;
    }
}
@media (max-width: 480px) {
    .mypage_dashboard .quart_box {
        padding: 28px 0;
    }
    .mypage_dashboard .quart_box .left_info .text_box .name_box {
        font-size: 18px;
    }
    .mypage_dashboard .quart_box .left_info .text_box .level_text {
        font-size: 15px;
        margin-top: 10px;
    }
    .mypage_dashboard .quart_box .right_info .edit_list li a {
        font-size: 16px;
        line-height: 49px;
    }
    .mypage_dashboard .quart_box .right_info .edit_list .cancel_btn {
        font-size: 16px;
        line-height: 49px;
        border-radius: 2.5px;
        margin-top: 6px;
    }
}

.profil_wrap {
    display: none;
}
.profil_wrap.reg_profile {
    display: block !important;
}
.profil_wrap .profil_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 620px;
    max-width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
}
.profil_wrap .profil_close {
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .profil_wrap .profil_close {
        margin-bottom: 0;
    }
}
.profil_wrap .profil_close .profil_close_btn {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    flex-grow: 1;
}
@media (max-width: 991px) {
    .profil_wrap .profil_close .profil_close_btn {
        width: 15px;
        height: 15px;
    }
}
.profil_wrap .profil_close .profil_close_btn span {
    display: block;
    width: 100%;
    height: 100%;
}
.profil_wrap .profil_close .profil_close_btn span::before {
    content: "";
    display: block;
    width: 1px;
    height: 21px;
    background: #cfcfcf;
    position: absolute;
    top: 0;
    right: 10px;
    transform: rotate(-45deg);
}
.profil_wrap .profil_close .profil_close_btn span::after {
    content: "";
    display: block;
    width: 1px;
    height: 21px;
    background: #cfcfcf;
    position: absolute;
    top: 0;
    right: 10px;
    transform: rotate(45deg);
}
@media (max-width: 991px) {
    .profil_wrap .profil_close .profil_close_btn span::before {
        height: 17.5px;
        width: 2px;
    }
    .profil_wrap .profil_close .profil_close_btn span::after {
        height: 17.5px;
        width: 2px;
    }
}
.profil_wrap .profil_box .title h2 {
    font-size: 30px;
    color: #0c0c0c;
    font-weight: 600;
}
.profil_wrap .profil_box .profil_cont .profil_img {
    position: relative;
    margin: 40px auto 60px;
    width: 220px;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_container {
    width: 100%;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_container img {
    display: block;
    width: 100%;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_file {
    position: absolute;
    bottom: 0;
    right: 0;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
    display: block;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
}
.profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file img {
    width: 100%;
}
.profil_wrap .profil_box .profil_cont .profil_txt {
    text-align: center;
}
.profil_wrap .profil_box .profil_cont .profil_txt p {
    font-size: 17px;
    color: #0c0c0c;
    font-weight: 400;
    line-height: 32px;
}
.profil_wrap .profil_box .profil_cont .profil_btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
}
.profil_wrap .profil_box .profil_cont .profil_btn .pbtn {
    width: 49.108%;
    height: 53px;
    line-height: 51px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    border: 0;
    border-radius: 5px;
    background: var(--main-btn-point-color);
    text-align: center;
}
.profil_wrap .profil_box .profil_cont .profil_btn .pbtn.profil_none {
    border: 1px solid #dcdcdc;
    color: #0c0c0c;
    background: #fff;
    margin-left: 1.784%;
}
@media (max-width: 991px) {
    .profil_wrap .profil_box .profil_cont .profil_btn .pbtn + .pbtn {
        margin-left: 1.56%;
    }
}
.profil_wrap .add_box {
    display: none;
    width: 170px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 82px;
}
.profil_wrap .add_box .add_ul {
    width: 170px;
    max-width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
}
.profil_wrap .add_box .add_ul::before {
    content: "";
    display: block;
    border: 16px solid #fff;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-left: 0;
    border-bottom: 0;
}
.profil_wrap .add_box .add_ul li {
    text-align: center;
    font-size: 14px;
    color: #0c0c0c;
    font-weight: 400;
    line-height: 50px;
    position: relative;
    z-index: 2;
}
.profil_wrap .add_box .add_ul li a {
    display: block;
    width: 100%;
}
.profil_wrap .add_box .add_ul:hover::before {
    border-color: #e8edf3;
}
.profil_wrap .add_box .add_ul:hover li {
    background: #e8edf3;
}
.profil_wrap .add_box .add_ul:hover li a {
    color: var(--main-box-font-color);
}
.profil_wrap .add_box .add_ul .edit_li label {
    width: 100%;
    cursor: pointer;
}
.profil_wrap .add_box .add_ul .edit_li input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
@media (max-width: 991px) {
    .profil_wrap .profil_container {
        width: 95%;
        padding: 15px 15px 30px;
        border-radius: 10px;
    }
    .profil_wrap .profil_box .title h2 {
        font-size: 21px;
    }
    .profil_wrap .profil_box .profil_cont .profil_img {
        width: 150px;
        margin: 16px auto 30px;
    }
    .profil_wrap .profil_box .profil_cont .profil_img .img_container {
        height: 150px;
    }
    .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
        width: 35px;
        height: 35px;
    }
    .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file img {
        display: block;
        width: 100%;
    }
    .profil_wrap .profil_box .profil_cont .profil_txt p {
        font-size: 17px;
        line-height: 22px;
    }
    .profil_wrap .profil_box .profil_cont .profil_btn {
        margin-top: 30px;
    }
    .profil_wrap .profil_box .profil_cont .profil_btn .pbtn {
        height: 50px;
        line-height: 48px;
        font-size: 16px;
        border-radius: 2.5px;
    }
    .profil_wrap .add_box {
        display: none;
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100;
        transform: none;
        top: unset;
    }
    .profil_wrap .add_box .add_ul {
        position: absolute;
        top: unset;
        bottom: 55px;
        left: 0;
        z-index: 10;
        box-shadow: 0 0 0;
        transform: none;
        background: transparent;
        width: calc(100% - 30px);
        left: 15px;
    }
    .profil_wrap .add_box .add_ul::before {
        display: none;
    }
    .profil_wrap .add_box .add_ul li a {
        border: 1px solid #bababa;
        display: block;
        background: #dcdcdc;
        line-height: 60px;
        font-size: 18px;
        color: #777;
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #bababa;
        border-top: 0;
    }
    .profil_wrap .add_box .add_ul li a:hover {
        color: #222;
        background: #e7e7e7;
    }
    .profil_wrap .add_box .add_ul li label {
        display: block;
        background: #dcdcdc;
        line-height: 60px;
        font-size: 18px;
        color: #777;
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #bababa;
        border-top: 0;
    }
    .profil_wrap .add_box .add_ul li label:hover {
        color: #222;
        background: #e7e7e7;
    }
    .profil_wrap .add_box .add_ul li:hover {
        background: transparent;
    }
    .profil_wrap .add_box .add_ul li.edit_li {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }
    .profil_wrap .add_box .add_ul li.delete_img a {
        border-radius: 0 0 10px 10px;
    }
    .profil_wrap .add_box .add_ul .cancel_btn {
        display: block;
        background: #fff;
        line-height: 60px;
        font-size: 18px;
        color: #1b1b1b;
        font-weight: 500;
        border-radius: 15px;
        text-align: center;
        margin-top: 15px;
        overflow: hidden;
    }
    .profil_wrap .add_box .add_ul .cancel_btn:hover {
        background: #fff;
    }
}
@media (max-width: 480px) {
    .profil_wrap .profil_box .title h2 {
        font-size: 18px;
    }
    .profil_wrap .profil_box .profil_cont .profil_img {
        width: 130px;
        margin: 13px auto 30px;
    }
    .profil_wrap .profil_box .profil_cont .profil_img .img_container {
        height: 130px;
    }
    .profil_wrap .profil_box .profil_cont .profil_txt p {
        font-size: 13px;
    }
    .profil_wrap .profil_box .profil_cont .profil_btn .pbtn {
        font-size: 14px;
    }
    .profil_wrap .add_box .add_ul li a {
        line-height: 49px;
        font-size: 16px;
    }
    .profil_wrap .add_box .add_ul li label {
        line-height: 49px;
        font-size: 16px;
    }
    .profil_wrap .add_box .add_ul .cancel_btn {
        display: block;
        background: #fff;
        line-height: 49px;
        font-size: 16px;
        color: #1b1b1b;
        font-weight: 500;
        border-radius: 15px;
        text-align: center;
        margin-top: 15px;
        overflow: hidden;
        border-radius: 2.5px;
        margin-top: 5px;
    }
}

.profil_bg {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}
/*
마이페이지 좌측 윙
마이페이지 좌측 윙 html > skin > member > basic > mypage_wing.php
*/
.mypage_wing {
    width: auto;
    display: flex;
    gap: 50px;
}
.mypage_wing .mypage-sections01 {
    width: 200px;
}
.mypage_wing .mypage-sections01 h1 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 500;
    color: var(--main-font-color);
}
.mypage_wing .mypage-sections01 ul {
    width: 100%;
    display: block;
    border: 1px solid #f2f2f2;
}
.mypage_wing .mypage-sections01 ul li {
    height: 50px;
    line-height: 48px;
    padding: 0 20px;
    background-color: #fff;
    border-bottom: 1px solid #f2f2f2;
    transition: all 200ms linear;
    display: flex;
    align-items: center;
}
.mypage_wing .mypage-sections01 ul li:last-child {
    border: none;
}
.mypage_wing .mypage-sections01 ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: var(--main-box-font-color3);
    line-height: 1.5;
}
.mypage_wing .mypage-sections01 ul li a span {
    width: 5px;
    height: 12px;
    display: block;
    position: relative;
}
.mypage_wing .mypage-sections01 ul li a span::before,
.mypage_wing .mypage-sections01 ul li a span::after {
    content: "";
    width: 110%;
    height: 1px;
    position: absolute;
    background: var(--main-box-font-color3);
    transition: all 200ms linear;
}
.mypage_wing .mypage-sections01 ul li a span::before {
    top: 3px;
    transform: rotate(45deg);
}
.mypage_wing .mypage-sections01 ul li a span::after {
    bottom: 3px;
    transform: rotate(-45deg);
}
.mypage_wing .mypage-sections01 ul li:hover {
    background: #fafafa;
}
.mypage_wing .mypage-sections01 ul li:hover a {
    color: var(--main-btn-font-point-color);
}
.mypage_wing .mypage-sections01 ul li:hover a span::before,
.mypage_wing .mypage-sections01 ul li:hover a span::after {
    background: var(--main-btn-line-point-color);
}
.mypage_wing .mypage-sections02 {
    width: calc(100% - 200px);
    display: table-cell;
}
.mypage_wing .mypage-sections02 section {
    overflow: hidden;
    margin-bottom: 90px;
}
.mypage_wing .mypage-sections02 section .head {
    padding: 0;
    border: none;
    color: #111;
    overflow: hidden;
}
.mypage_wing .mypage-sections02 section .head .orderform_title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 25px;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-box-font-color);
    border-bottom: 1px solid #444;
    line-height: 1em;
}
.mypage_wing .mypage-sections02 section .head .orderform_title a {
    font-size: 17px;
    font-weight: 400;
    color: var(--main-box-font-color2);
}
.mypage_wing .mypage-sections section .body.section-table {
    display: table;
    width: 100%;
}
.mypage_wing .mypage-sections section .body.section-table .section-table-head {
    display: table-header-group;
}
.mypage_wing .mypage-sections section .body.section-table .section-table-body {
    display: table-row-group;
}
.mypage_wing .mypage-sections section .body.section-table .section-table-body .section-table-row {
    display: table-row;
}
.mypage_wing .mypage-sections section .body.section-table .section-table-body .section-cell .img {
    max-width: 100px;
    display: inline-block;
    margin-bottom: 5px;
}
.mypage_wing .mypage-sections section .body.section-table .section-table-body .section-cell .img img {
    width: 100%;
    max-width: 100%;
}
.mypage_wing .mypage-sections section .body.section-table .section-table-body .section-cell.t-left {
    text-align: left;
}

/* 매칭되는 거 없으면 삭제 - 260513 */
/* .mypage-table .mypage-sections section .head .title {
    font-size: 22px;
    font-weight: 500;
}
.mypage-table .mypage-sections section .head .navigator ul,
.mypage-table .mypage-sections section .head .navigator li {
    padding: 0;
    margin: 0;
    list-style: none;
    float: left;
}
.mypage-table .mypage-sections section .head .navigator li {
    margin-left: 30px;
}
.mypage-table .mypage-sections section .head .navigator li button {
    font-size: 16px;
    font-weight: 400;
    color: #111;
    background-color: transparent;
    border: 0;
}
.mypage-table .mypage-sections section .head .more-btn a {
    font-size: 16px;
    font-weight: 400;
    color: #111;
} */

.mypage_style ul,
.mypage_style li,
.mypage_style ol {
    list-style: none;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-table-head .section-cell {
    display: table-cell;
    text-align: center;
    font-size: 16px;
    color: var(--main-box-font-color);
    font-weight: 400;
    border-bottom: 1px solid #eee;
    padding: 22px 0;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-table-body .section-cell {
    display: table-cell;
    font-size: 16px;
    color: var(--main-box-font-color2);
    font-weight: 400;
    border-bottom: 1px solid #eee;
    padding: 22px 0;
    text-align: center;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-table-body .section-cell a {
    color: var(--main-box-font-color2);
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell {
    width: 25%;
    vertical-align: middle;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info {
    width: 20%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .description {
    display: block;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .description p {
    font-size: 14px;
    margin-top: 7px;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .description p + p {
    margin-top: 5px;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_date {
    width: 20%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num {
    position: relative;
    width: 20.95%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num button.order_cancel {
    border-radius: 5px !important;
    margin-top: 10px;
    padding: 8px;
    background: var(--main-btn-point-color);
    border-color: var(--main-btn-line-point-color);
    outline: none;
}

.mypage_style .mypage_cancle {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 500px;
    transform: translateX(-50%);
    z-index: 100;
}

.mypage_style .mypage_cancle .mypage_cancle_box {
    padding: 20px;
    border: 1px solid #ededed;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num .input-group button {
    background: var(--main-btn-point-color);
    border-color: var(--main-btn-line-point-color);
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num .input-group input:focus {
    border-color: var(--main-box-line-point-color);
    box-shadow: none;
}
.mypage_style
    .mypage-table
    .mypage-sections.mypage_sections
    .section_table
    .section-cell.od_num
    #sod_fin_cancelfrm_0
    .mypage_style
    .mypage-table
    .mypage-sections.mypage_sections
    .section_table
    .section-cell.od_price {
    width: 18.57%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_status {
    width: 20.95%;
}
.mypage_style .mob_mypage {
    display: none;
}
.mypage_style .mob_mypage .mob_section01 .myicon_list a span.cart_count {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--main-box-point-color);
    text-align: center;
    line-height: 14.5px;
    font-size: 9px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    right: 1px;
    bottom: -4px;
}
@media (max-width: 991px) {
    .mypage_style .pc_mypage {
        display: none;
    }
    .mypage_style .mob_mypage {
        display: block;
    }
    .mypage_style .mob_mypage .mob_section .mob_container {
        padding: 40px 15px 20px;
    }
    .mypage_style .mob_mypage .mob_section::before {
        content: "";
        display: block;
        width: 100%;
        height: 12px;
        background: #f9f9fa;
    }
    .mypage_style .mob_mypage .mob_section .section_tit h1 {
        font-size: 20px;
        color: var(--main-box-font-color);
        font-weight: 600;
        margin-bottom: 15px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a {
        display: flex;
        align-items: center;
        padding: 20px 0;
        position: relative;
        border-bottom: 1px solid #e1e1e1;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .list_name {
        flex-grow: 1;
        font-size: 16px;
        color: var(--main-box-font-color);
        font-weight: 400;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .more_btn {
        font-size: 15px;
        color: var(--main-btn-font-point-color);
        font-weight: 400;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .more_btn .more_txt {
        font-size: 17px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .arrow_span {
        position: relative;
        right: 10px;
        margin-left: 35px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::before {
        content: "";
        display: block;
        width: 2px;
        height: 10px;
        background: #666;
        position: absolute;
        top: 5px;
        right: 0;
        transform: rotate(-45deg);
    }
    .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::after {
        content: "";
        display: block;
        width: 2px;
        height: 10px;
        background: #666;
        position: absolute;
        top: 10px;
        right: 0;
        transform: rotate(45deg);
    }
    .mypage_style .mob_mypage .mob_section .section_li:last-child a {
        border-bottom: 0;
    }
    .mypage_style .mob_mypage .mob_section01 .mob_container {
        padding: 40px 0;
    }
    .mypage_style .mob_mypage .mob_section01 .mob_myicon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span {
        display: block;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 65px;
        height: 65px;
        /* background: #f7f8fa; */
        border-radius: 20px;
        position: relative;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box img {
        height: 35px;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_txt {
        font-size: 16px;
        color: var(--main-box-font-color);
        font-weight: 400;
        margin-top: 15px;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.cart_count {
        display: block;
        width: 13.5px;
        height: 13.5px;
        font-size: 10px;
        font-weight: 600;
        line-height: 13px;
        bottom: 11px;
        right: 12px;
    }
    .mypage_style .mob_mypage .mob_section04 .mob_container {
        padding: 0 15px;
    }
    .mypage_style .mob_mypage .mob_section04::after {
        content: "";
        display: none;
        width: 100%;
        height: 70px;
        background: #eff2f5;
    }
}
@media (max-width: 480px) {
    .mypage_style .mob_mypage .mob_section .mob_container {
        padding: 32px 15px 7px;
    }
    .mypage_style .mob_mypage .mob_section .section_tit h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .more_btn .more_txt {
        font-size: 14px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .arrow_span {
        margin-left: 20px;
        right: 4px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::before {
        width: 1px;
        height: 7px;
        top: 4px;
    }
    .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::after {
        width: 1px;
        height: 7px;
        top: 8.5px;
    }
    .mypage_style .mob_mypage .mob_section01 .mob_container {
        padding: 25px 0 30px;
    }
    .mypage_style .mob_mypage .mob_section01 .mob_myicon {
        gap: 61px;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box {
        width: 50px;
        height: 50px;
        border-radius: 13px;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box img {
        height: 28px;
    }
    .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_txt {
        font-size: 15px;
        margin-top: 0px;
    }
    .mypage_style .mob_mypage .mob_section04 .mob_container {
        padding: 0 15px;
    }
    .mypage_style .mob_mypage .mob_section04::after {
        height: 50px;
    }
}

.none-item {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    border-bottom: 1px solid #eee;
    padding: 40px 0;
    text-align: center;
}

/* 비밀번호 입력 안내창 html > skin > member > basic > password_skin.php */
/* 2025-03-28 (주)파이브센스_FIVESENSES.Corp. */
/* 2025-09-05 (주)파이브센스_FIVESENSES.Corp. 여백추가 */
.password_confirm {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto;
    background-color: #f9f9f9;
    border-radius: 30px;
    padding: 80px 15px;
}
.password_confirm .confirm_title {
    margin-bottom: 25px;
    text-align: center;
}
.password_confirm .confirm_title > img {
    display: block;
    margin: 0 auto;
}
.password_confirm .confirm_title > h2 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 33px;
    color: #0c0c0c;
}
.password_confirm .confirm_wrap > p {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.7;
    color: #5d5d5d;
    font-weight: 400;
    text-align: center;
}
.password_confirm .confirm_wrap > p strong {
    font-weight: 400;
}
.password_confirm .confirm_wrap > p b {
    font-weight: 700;
    color: #0c0c0c;
}
.password_confirm .confirm_input > label {
    width: 100%;
}
.password_confirm .confirm_input > label > input {
    width: 100%;
    max-width: 460px;
    display: block;
    height: auto;
    padding: 0 15px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    background: url("/img/icon_secret.gif") no-repeat 97% 50%;
    background-color: #fff;
    line-height: 48px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 400;
    color: #0c0c0c;
}
.password_confirm .confirm_input > label > input:focus {
    border-color: var(--main-box-font-color2);
}
.password_confirm .confirm_input .confirm_btn_box {
    margin-top: 10px;
}
/* (주)파이브센스_FIVESENSES.Corp. 2025-02-28 */
/* .password_confirm .confirm_input .confirm_btn_box .btn_confirm{display:block; width:100%; border:0; border-radius:10px; font-size:18px; line-height:50px; color:#fff; padding-bottom: 0;} */
.password_confirm .btn_back {
    margin: 10px auto 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 460px;
    gap: 10px;
}
.password_confirm .btn_back .btn {
    flex: 1;
    border-radius: 10px !important;
    text-align: center;
    color: #5d5d5d;
    font-size: 16px;
    font-weight: 500;
    background-color: #f0f0f0;
    line-height: 1.2em;
    padding: 15.5px 12px;
    transition: 0.2s ease-in-out;
    border: none;
}
.password_confirm .btn_back .btn.btn_confirm {
    color: #fff;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.password_confirm .btn_back .btn.btn_confirm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-btn-point-color);
    z-index: -1;
    transition: filter 0.2s ease-in-out;
}

@media (max-width: 991px) {
    /* 2025-09-05 (주)파이브센스_FIVESENSES.Corp. 여백추가 */
    .password_confirm {
        padding: 133px 53px;
        border-radius: 15px;
        margin: 50px auto;
    }
    .password_confirm .confirm_title {
        margin-bottom: 29px;
    }
    .password_confirm .confirm_title img {
        height: 53px;
    }
    .password_confirm .confirm_title > h2 {
        font-size: 26px;
        margin-top: 24px;
    }
    .password_confirm .confirm_wrap > p {
        font-size: 15px;
        line-height: 1.53;
    }
    .password_confirm .confirm_input > label > input {
        border-radius: 6px;
        font-size: 13px;
        line-height: 47px;
        padding: 0 18px;
    }

    .password_confirm .confirm_input > label > input:focus {
        border-color: #000;
    }
    .password_confirm .btn_back {
        margin: 17px auto 0;
        gap: 15px;
    }
    .password_confirm .btn_back .btn {
        font-size: 15px;
        border-radius: 6px !important;
        padding: 13px;
    }
}

/* 개인정보 수정 
html > skin > member > basic > member_confirm.php 
html > skin > member > basic > register_form.php
*/
.mypassword_confirm {
    width: 100%;
    display: flex;
    gap: 50px;
}
.mypassword_confirm .password_wrap {
    width: calc(100% - 200px);
}
.mypassword_confirm .password_wrap .orderform_title p {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}
.mypassword_confirm .password_wrap .orderform_title p strong {
    color: #222;
    font-weight: 500;
    font-size: 16px;
}
.mypassword_confirm .password_wrap .confirm_wrap {
    width: 600px;
    max-width: 100%;
    margin: 40px auto 0;
}
@media (max-width: 991px) {
    .mypassword_confirm {
        gap: 0;
        margin-top: 50px;
    }
    .mypassword_confirm .password_wrap {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .mypassword_confirm .password_wrap .orderform_title p {
        font-size: 13px;
    }
    .mypassword_confirm .password_wrap .orderform_title p strong {
        font-size: 14px;
    }
    .mypassword_confirm .password_wrap .confirm_wrap {
        margin: 20px auto 0;
    }
    .mypassword_confirm .password_wrap .confirm_wrap p {
        font-size: 14px;
    }
    .mypassword_confirm .password_wrap .confirm_wrap .confirm_input input {
        line-height: 39px;
        border-radius: 3px;
    }
    .mypassword_confirm .password_wrap .confirm_wrap .confirm_input .confirm_btn_box .btn_confirm {
        font-size: 13px;
        line-height: 39px;
        border-radius: 3px;
    }
    .mypassword_confirm .password_wrap .btn_back a {
        font-size: 14px;
    }
}

.register_style.edit_mem {
    gap: 50px;
}
.register_style.edit_mem .mypage_register {
    width: calc(100% - 200px);
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box {
    margin: 40px 0;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img {
    margin: 0 auto;
    width: 120px;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_container {
    padding-bottom: 100%;
    height: 0;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_file {
    right: 7px;
    bottom: 4px;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
    background: var(--main-box-point-color);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991px) {
    .register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
        width: 30px;
        height: 30px;
    }
}
.register_style.edit_mem .mypage_register .register_tt {
    font-size: 24px;
    font-weight: 500;
    color: var(--main-box-font-color);
    padding-top: 8px;
    padding-bottom: 26px;
    border-bottom: 1px solid #444444;
    margin-bottom: 40px;
}
.register_style.edit_mem .mypage_register .area-box {
    float: none;
    width: 57.273%;
    margin-right: 0;
    margin: 0 auto;
}
.register_style.edit_mem .mypage_register .area-box .regbtn-wrap {
    width: 240px;
    margin: 60px auto 0;
}
.register_style.edit_mem .mypage_register .area-box .regbtn-wrap #btn_submit {
    height: 60px;
    line-height: 58px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
}
.register_style.edit_mem .mypage_register .input-box label {
    width: 135px;
    font-weight: 300;
}
.register_style.edit_mem .mypage_register .input-box .sns-wrap-reg {
    width: 100%;
}
.register_style.edit_mem .mypage_register .input-box .re_input_box input {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 300;
    padding: 0 10px;
    border: 1px solid #d6d6d6;
    height: 46px;
    line-height: 44px;
    border-radius: 5px;
}
.register_style.edit_mem .mypage_register .input-box .re_input_box.icon_input {
    margin: 40px 0;
}
.register_style.edit_mem::after {
    display: none;
}

@media (max-width: 991px) {
    .no_container {
        padding: 0;
    }
    .no_container .at-content {
        padding: 0;
    }
    .mypage.container_fix .at-content {
        padding: 0;
    }
    .register_style.edit_mem {
        gap: 0;
    }
    .register_style.edit_mem .mypage_register {
        width: 100%;
    }
    .register_style.edit_mem .mypage_register .area-box {
        width: 100%;
    }
    .register_style.edit_mem .mypage_register .area-box .regbtn-wrap {
        width: 180px;
        margin: 50px auto 0;
    }
    .register_style.edit_mem .mypage_register .area-box .regbtn-wrap #btn_submit {
        height: 50px;
        line-height: 48px;
        font-size: 16px;
    }
    .register_style.edit_mem .mypage_register .input-box label {
        width: 100%;
        margin-bottom: 20px;
        font-weight: 400;
    }
    .register_style.edit_mem .mypage_register .input-box .re_input_box {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .register_style.edit_mem .mypage_register .area-box .regbtn-wrap {
        width: 160px;
    }
    .register_style.edit_mem .mypage_register .area-box .regbtn-wrap #btn_submit {
        height: 40px;
        line-height: 38px;
        font-size: 13px;
    }
    .register_style.edit_mem .mypage_register .input-box label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .register_style.edit_mem .mypage_register .input-box .re_input_box input {
        font-size: 12px;
        padding: 0 12px;
        height: 40px;
        line-height: 38px;
    }
    .register_style.edit_mem .mypage_register .input-box .re_input_box.icon_input {
        margin: 40px 0;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
주문내역 조회페이지
html > skin > apms > order > basic > orderinquiry.skin.php
(기존에 있던 페이지는 221223 날짜로 백업함.)
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.orderinquiry_style {
    width: 100%;
    display: flex;
    gap: 50px;
}
.orderinquiry_style > div:last-child {
    width: 100%;
}
.orderinquiry_style .orderform_title {
    margin-bottom: 60px;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderform_title.orderinquiry_tt {
        text-align: center;
        padding: 20px 0 35px;
        margin-bottom: 9px;
        font-size: 24px;
        font-weight: 500;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap {
    margin-bottom: 75px;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap {
        margin-bottom: 29px;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px 20px;
    border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href {
        padding: 20px 0;
        border: none;
    }
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href::before,
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href::after {
        content: "";
        width: 200%;
        position: absolute;
        left: -15px;
    }
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href::before {
        height: 9px;
        top: -8px;
        background: #eff2f5;
    }
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href::after {
        height: 1px;
        bottom: 0;
        background: #e7e7e7;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 {
        display: flex;
        font-size: 18px;
    }
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 .num {
        margin-right: 20px;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a {
    display: flex;
    place-items: center;
    position: relative;
    font-size: 15px;
    font-weight: 300;
    color: var(--main-box-font-color2);
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_href a p {
        display: none;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span {
    width: 7px;
    height: 12px;
    display: block;
    position: relative;
    margin-left: 10px;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::before,
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    color: var(--main-box-font-color2);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::before {
    top: 4px;
    transform: rotate(50deg);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::after {
    bottom: 2px;
    transform: rotate(-50deg);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info {
    display: flex;
    justify-content: space-between;
    place-items: center;
    padding: 27px 20px 0;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info > div:first-child {
    display: flex;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 23px;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div {
    display: flex;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div div {
    line-height: 28px;
    font-size: 15px;
    font-weight: 300;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div div {
        line-height: 32px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div div {
        font-weight: 400;
    }
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div:last-child div {
        font-weight: 400;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .left {
    width: 93px;
    color: var(--main-box-font-color2);
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .left {
        width: 88px;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .right {
    color: var(--main-box-font-color);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .right span {
    margin-left: -4px;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner {
        margin-left: 0;
    }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status {
    line-height: 28px;
    font-size: 15px;
    font-weight: 400;
    color: var(--main-box-font-color);
    text-align: right;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status {
        line-height: 41px;
        font-size: 14px;
        width: 100%;
    }
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info {
        padding: 18px 0 0;
        display: block;
        place-items: unset;
    }
}
.draftview_btn {
    width: 114px;
    height: 42px;
    line-height: 40px;
    font-size: 14px;
    color: #0c0c0c;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.2s;
}
.draftview_btn.off,
.draftview_btn.off:hover {
    color: #757575;
    background-color: #e1e1e1;
    border: 1px solid #e1e1e1;
    cursor: not-allowed;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status button {
        display: block;
        font-size: 13px;
        border-radius: 2.5px;
        line-height: 33px;
        width: 100%;
        background-color: var(--main-btn-point-color);
        border: 1px solid var(--main-btn-line-point-color);
        color: #fff;
        margin-top: 10px;
    }
    .draftview_btn {
        width: 100%;
        font-size: 14px;
        border-radius: 2.5px;
        height: 40px;
        line-height: 40px;
        margin-top: 5px;
    }
}
.orderinquiry_style .orderinquiry_form .od_info_none {
    width: 100%;
    font-size: 16px;
    color: #777;
    text-align: center;
    padding: 100px 0;
}
@media (max-width: 991px) {
    .orderinquiry_style {
        gap: 0;
    }
    .orderinquiry_style .orderinquiry_form .od_info_none {
        font-size: 13px;
        padding: 5px 0 50px;
    }
}
.orderinquiry_style .present_coupon.off_coupon {
    border-top: none;
    padding: 0 20px;
    margin-top: -50px;
    margin-bottom: 75px;
}
@media (max-width: 991px) {
    .orderinquiry_style .present_coupon.off_coupon {
        padding: 0;
        margin-top: -15px;
        margin-bottom: 29px;
    }
}

.orderinquiryview {
    display: flex;
    gap: 50px;
}
@media (max-width: 991px) {
    .orderinquiryview {
        gap: 0;
    }
}
.orderinquiryview.guest {
    margin-top: 100px;
}
@media (max-width: 991px) {
    .orderinquiryview.guest {
        margin-top: 80px;
    }
}
@media (max-width: 480px) {
    .orderinquiryview.guest {
        margin-top: 50px;
    }
}
.orderinquiryview > div:last-child {
    width: 100%;
}
.orderinquiryview form > .orderform_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-bottom: 20px;
}
@media (max-width: 991px) {
    .orderinquiryview form > .orderform_title {
        display: block;
        padding-bottom: 0;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .orderform_title.orderinquiry_tt {
        text-align: center;
        padding: 20px 0 30px;
        font-size: 24px;
        font-weight: 500;
    }
}
.orderinquiryview .delivery_info_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner {
        flex-flow: column;
        align-items: flex-start;
    }
}
.orderinquiryview .delivery_info_inner > div:first-child {
    flex-flow: column;
}
.orderinquiryview .delivery_info_inner > div:first-child div {
    display: flex;
}
.orderinquiryview .delivery_info_inner > div:first-child div a {
    color: var(--main-box-font-color);
}
.orderinquiryview .delivery_info_inner > div:first-child div a:hover {
    color: var(--main-box-font-color);
}
.orderinquiryview .delivery_info_inner .lookup {
    width: 120px;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    border-radius: 5px;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner .lookup {
        width: 100%;
        margin-top: 7px;
        font-size: 12px;
    }
}
.orderinquiryview .delivery_info_inner .lookup a {
    border: 1px solid #d6d6d6;
    display: block;
    color: var(--main-box-font-color);
    height: 42px;
    line-height: 40px;
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner .lookup a {
        height: 35px;
        line-height: 33px;
        font-size: 12px;
    }
}
.orderinquiryview .delivery_info_inner p {
    line-height: 38px;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner p {
        line-height: 32px;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner p {
        font-size: 16px;
        font-weight: 400;
    }
}

.orderinquiryview form > .rf_box .re_button {
    color: var(--main-btn-font-color2);
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
    outline: none;
    padding: 5px 10px;
    margin-right: 5px;
}
@media (max-width: 991px) {
    .orderinquiryview form > .rf_box .re_button {
        margin-bottom: 20px;
    }
}

.orderinquiryview .order_info_inner button.copy {
    width: 82px;
    height: 29px;
    line-height: 24px;
    margin: -1px 0 0 10px;
    font-size: 14px;
    font-weight: 400;
    background: var(--main-btn-point-color);
    border: none;
    border-radius: 15px;
    color: #fff;
}
.orderinquiryview .order_info_inner > div:last-child .right_tit {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .orderinquiryview .order_info_inner > div:last-child .right_tit {
        flex-direction: column;
        align-items: flex-start;
    }
}
.orderinquiryview .order_info_inner > div:last-child .right_tit button.copy {
    margin-left: 15px;
}
@media (max-width: 991px) {
    .orderinquiryview .order_info_inner > div:last-child .right_tit button.copy {
        margin-left: 0;
    }
}
.orderinquiryview .orderer_info.receipt {
    position: relative;
}
@media (max-width: 991px) {
    .orderinquiryview .orderer_info.receipt {
        padding-bottom: 30px;
    }
    .orderinquiryview .orderer_info.receipt::after {
        content: "";
        width: 200%;
        height: 9px;
        position: absolute;
        bottom: 0;
        left: -15px;
        background: #eff2f5;
    }
}
.orderinquiryview .orderer_info.receipt .orderform_info_inner {
    padding: 14px 20px 15px 20px;
}
@media (max-width: 991px) {
    .orderinquiryview .orderer_info.receipt .orderform_info_inner {
        padding: 0;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .orderer_info.receipt .orderform_info_inner > div:nth-child(3) .right_tit {
        line-height: 25px;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .orderer_info.orderform_item .orderform_info_inner > div:nth-child(3) .right_tit {
        line-height: 25px;
    }
}
.orderinquiryview .product_info {
    padding: 60px 0 50px;
    border: 1px solid #eee;
    border-left: 0;
    border-right: 0;
}
@media (max-width: 991px) {
    .orderinquiryview .product_info {
        padding: 20px 0;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .order_cancel {
        display: flex;
        flex-flow: column;
    }
}
.orderinquiryview .product_info .order_cancel button {
    width: 301px;
    height: 71px;
    line-height: 69px;
    margin: 0 auto;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--main-btn-font-color);
    border: 1px solid #999;
    border-radius: 5px;
    background: none;
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .order_cancel button {
        width: 100%;
        height: 47px;
        line-height: 47px;
        order: 2;
        font-size: 16px;
    }
}
.orderinquiryview .product_info .explanation {
    line-height: 26px;
    display: flex;
    flex-flow: column;
    place-items: center;
    margin-top: 9px;
    font-size: 13px;
    font-weight: 300;
    color: var(--main-box-font-color4);
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .explanation {
        line-height: 18px;
        flex-flow: initial;
        justify-content: space-between;
        place-items: flex-start;
        margin-bottom: 15px;
        font-size: 13px;
        text-align: left;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .product_info .explanation {
        line-height: 15px;
        font-size: 12px;
    }
}
.orderinquiryview .product_info .explanation a {
    display: flex;
    place-items: center;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: var(--main-btn-font-point-color);
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .explanation a {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .product_info .explanation a {
        font-size: 14px;
    }
}
.orderinquiryview .product_info .explanation a span {
    width: 6px;
    height: 12px;
    display: block;
    position: relative;
    margin-left: 6px;
}
.orderinquiryview .product_info .explanation a span::before,
.orderinquiryview .product_info .explanation a span::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: var(--main-btn-font-point-color);
}
.orderinquiryview .product_info .explanation a span::before {
    top: 4px;
    transform: rotate(45deg);
}
.orderinquiryview .product_info .explanation a span::after {
    bottom: 3px;
    transform: rotate(-45deg);
}
.orderinquiryview .refund_form_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    column-gap: 40px;
    padding: 24px 20px 40px 20px;
}
.orderinquiryview .refund_form_inner > div {
    display: flex;
    position: relative;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form_inner > div {
        flex-flow: column;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form_inner {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 7px;
        column-gap: 0;
        padding: 10px 0px 20px 0px;
    }
}
.orderinquiryview .refund_form span {
    width: 115px;
    line-height: 46px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form span {
        line-height: 38px;
        font-size: 16px;
    }
}
.orderinquiryview .refund_form span.arrow {
    width: 6px;
    height: 5px;
    display: block;
    position: absolute;
    top: 23px;
    right: 15px;
}
.orderinquiryview .refund_form span.arrow::before,
.orderinquiryview .refund_form span.arrow::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #242424;
}
.orderinquiryview .refund_form span.arrow::before {
    right: 4px;
    transform: rotate(45deg);
}
.orderinquiryview .refund_form span.arrow::after {
    transform: rotate(-45deg);
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form span.arrow {
        top: 53px;
    }
}
.orderinquiryview .refund_form select,
.orderinquiryview .refund_form input {
    width: calc(100% - 115px);
    height: 46px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #d6d6d6;
    border-radius: 5px !important;
    color: #000;
    box-shadow: none;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form select,
    .orderinquiryview .refund_form input {
        width: 100%;
        height: 47px;
        line-height: 47px;
        font-size: 16px;
    }
}
.orderinquiryview .refund_form select {
    appearance: none;
    color: #999;
}
.orderinquiryview .refund_form button.refund_confirm {
    width: 240px;
    height: 60px;
    line-height: 58px;
    display: block;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: var(--main-btn-point-color);
    border: none;
    border-radius: 30px;
    box-shadow: none;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form button.refund_confirm {
        width: 176px;
        height: 47px;
        line-height: 1;
        font-size: 16px;
    }
}
.orderinquiryview .refund_form .refund_info.incomplete {
    display: flex;
    padding-bottom: 40px;
    margin-top: 24px;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form .refund_info.incomplete {
        flex-flow: column;
        padding-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info {
        position: relative;
        margin-bottom: 36px;
        padding-bottom: 1px;
    }
    .orderinquiryview .order_product_info::after {
        content: "";
        width: 200%;
        height: 9px;
        position: absolute;
        bottom: -10px;
        left: -15px;
        background: #eff2f5;
    }
}
.orderinquiryview .order_product_info .order_product_box + .order_product_box {
    border-top: 1px solid #eeeeee;
}
.orderinquiryview .order_product_info .order_product_inner {
    display: flex;
    place-items: center;
    justify-content: space-between;
    position: relative;
    padding: 30px 20px;
}
.orderinquiryview .order_product_info .order_product_inner > a {
    display: flex;
    align-items: center;
}
.orderinquiryview .order_product_info .order_product_inner > a .check_box {
    margin-right: 10px;
}
.orderinquiryview .order_product_info .order_product_inner > a .image img {
    object-fit: contain;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .image img {
        object-fit: cover;
    }
}
.orderinquiryview .order_product_info .order_product_inner > a .content_subname {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    color: #666;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content_subname {
        margin-bottom: 7px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content_subname {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 5px;
    }
}
.orderinquiryview .order_product_info .order_product_inner > a .content_name {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 600;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content_name {
        margin-bottom: 9px;
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        height: 17.5px;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content_name {
        font-size: 13px;
        line-height: 17.5px;
        font-weight: 500;
        margin-bottom: 5px;
    }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul {
    display: flex;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price {
    align-items: flex-end;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child {
    display: flex;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-box-font-color2);
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child {
        align-items: flex-end;
        margin-right: 5px;
        font-size: 15.5px;
    }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child span {
    display: block;
    font-weight: 500;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child span {
        font-size: 22px;
        font-weight: 600;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child span {
        font-size: 19px;
    }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:last-child {
    font-size: 14px;
    font-weight: 300;
    color: var(--main-box-font-color2);
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:last-child {
        font-size: 18px;
        font-weight: 400;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner {
        flex-flow: column;
        place-items: flex-start;
        padding: 30px 0;
    }
    .orderinquiryview .order_product_info .order_product_inner:last-child {
        border: none;
    }
}
.orderinquiryview .order_product_info .order_product_inner .ord_btn button {
    display: block;
}
.orderinquiryview .order_product_info .order_product_inner button.review-btn {
    width: 114px;
    height: 42px;
    line-height: 40px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff !important;
    background-color: var(--main-btn-point-color) !important;
    border: 1px solid var(--main-btn-line-point-color);
    border-radius: 5px;
    text-align: center;
    background: none;
}
.orderinquiryview .order_product_info .order_product_inner button.review-btn:hover {
    background: none;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner .ord_btn {
        width: 100%;
    }
    .orderinquiryview .order_product_info .order_product_inner button.review-btn {
        width: 100%;
        height: 40px;
        line-height: 38px;
        margin-top: 15px;
        font-size: 13px;
        border-radius: 2.5px;
    }
}
.orderinquiryview .order_product_info .present_coupon.off_coupon {
    border: none;
    padding: 0 20px;
    margin-top: -5px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .present_coupon.off_coupon {
        padding: 0;
        margin-top: -15px;
    }
}

/* 주문내역 상세페이지 */
.orderform_item {
    position: relative;
    margin-bottom: 65px;
}
.orderform_item:last-child {
    margin-bottom: 0;
}
.orderform_item .orderform_title .print-hide.orderform_item {
    margin: 0;
}
.orderform_item .orderform_title .print-hide .btn {
    color: #5d5d5d !important;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 3px !important;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
    outline: none;
}

.orderform_info_inner {
    padding: 11px 20px 0 20px;
}
.orderform_info_inner > div {
    display: flex;
}
@media (max-width: 991px) {
    .orderform_info_inner {
        padding: 0;
    }
    .orderform_item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .orderform_item::after {
        content: "";
        width: 200%;
        height: 9px;
        position: absolute;
        bottom: -6px;
        left: -15px;
        background: #eff2f5;
    }
    .orderform_item .orderform_title .print-hide {
        text-align: center;
    }
    .orderform_item .orderform_title .orderinquiryview_tt {
        padding-top: 30px;
    }
}
@media (max-width: 480px) {
    .orderform_item .orderform_title .print-hide .btn {
        width: calc(33.3% - 3px);
        padding: 6px 10px;
    }
}

.orderform_title {
    padding-bottom: 25px;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-box-font-color);
    border-bottom: 1px solid #444;
    line-height: 1em;
}
@media (max-width: 991px) {
    .orderform_title {
        padding-bottom: 17px;
        font-size: 18px;
        font-weight: bold;
        border: none;
    }
}
@media (max-width: 480px) {
    .orderform_title {
        font-size: 17px;
    }
}
.orderinquiryview .delivery_info_inner > div:first-child div a {
    color: var(--main-box-font-color);
}
.orderinquiryview .delivery_info_inner > div:first-child div a:hover {
    color: var(--main-box-font-color);
}
.orderinquiryview .delivery_info_inner .lookup {
    width: 120px;
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    border-radius: 5px;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner .lookup {
        width: 100%;
        margin-top: 7px;
        font-size: 12px;
    }
}
.orderinquiryview .delivery_info_inner .lookup a {
    border: 1px solid #d6d6d6;
    display: block;
    color: var(--main-box-font-color);
    height: 42px;
    line-height: 40px;
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner .lookup a {
        height: 35px;
        line-height: 33px;
        font-size: 12px;
    }
}
.orderinquiryview .delivery_info_inner p {
    line-height: 38px;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner p {
        line-height: 32px;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .delivery_info_inner p {
        font-size: 16px;
        font-weight: 400;
    }
}

.orderinquiryview form > .rf_box .re_button {
    color: var(--main-btn-font-color2);
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
    outline: none;
    padding: 5px 10px;
    margin-right: 5px;
}
@media (max-width: 991px) {
    .orderinquiryview form > .rf_box .re_button {
        margin-bottom: 20px;
    }
}
.orderinquiryview .product_info {
    padding: 60px 0 50px;
    border: 1px solid #eee;
    border-left: 0;
    border-right: 0;
}
@media (max-width: 991px) {
    .orderinquiryview .product_info {
        padding: 20px 0;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .order_cancel {
        display: flex;
        flex-flow: column;
    }
}
.orderinquiryview .product_info .order_cancel button {
    width: 301px;
    height: 71px;
    line-height: 69px;
    margin: 0 auto;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--main-btn-font-color);
    border: 1px solid #999;
    border-radius: 5px;
    background: none;
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .order_cancel button {
        width: 100%;
        height: 47px;
        line-height: 47px;
        order: 2;
        font-size: 16px;
    }
}
.orderinquiryview .product_info .explanation {
    line-height: 26px;
    display: flex;
    flex-flow: column;
    place-items: center;
    margin-top: 9px;
    font-size: 13px;
    font-weight: 300;
    color: var(--main-box-font-color4);
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .explanation {
        line-height: 18px;
        flex-flow: initial;
        justify-content: space-between;
        place-items: flex-start;
        margin-bottom: 15px;
        font-size: 13px;
        text-align: left;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .product_info .explanation {
        line-height: 15px;
        font-size: 12px;
    }
}
.orderinquiryview .product_info .explanation a {
    display: flex;
    place-items: center;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: var(--main-btn-font-point-color);
}
@media (max-width: 991px) {
    .orderinquiryview .product_info .explanation a {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .orderinquiryview .product_info .explanation a {
        font-size: 14px;
    }
}
.orderinquiryview .product_info .explanation a span {
    width: 6px;
    height: 12px;
    display: block;
    position: relative;
    margin-left: 6px;
}
.orderinquiryview .product_info .explanation a span::before,
.orderinquiryview .product_info .explanation a span::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: var(--main-btn-font-point-color);
}
.orderinquiryview .product_info .explanation a span::before {
    top: 4px;
    transform: rotate(45deg);
}
.orderinquiryview .product_info .explanation a span::after {
    bottom: 3px;
    transform: rotate(-45deg);
}
.orderinquiryview .refund_form_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    column-gap: 40px;
    padding: 24px 20px 40px 20px;
}
.orderinquiryview .refund_form_inner > div {
    display: flex;
    position: relative;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form_inner > div {
        flex-flow: column;
    }
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form_inner {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 7px;
        column-gap: 0;
        padding: 10px 0px 20px 0px;
    }
}
.orderinquiryview .refund_form span {
    width: 115px;
    line-height: 46px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form span {
        line-height: 38px;
        font-size: 16px;
    }
}
.orderinquiryview .refund_form span.arrow {
    width: 6px;
    height: 5px;
    display: block;
    position: absolute;
    top: 23px;
    right: 15px;
}
.orderinquiryview .refund_form span.arrow::before,
.orderinquiryview .refund_form span.arrow::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #242424;
}
.orderinquiryview .refund_form span.arrow::before {
    right: 4px;
    transform: rotate(45deg);
}
.orderinquiryview .refund_form span.arrow::after {
    transform: rotate(-45deg);
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form span.arrow {
        top: 53px;
    }
}
.orderinquiryview .refund_form select,
.orderinquiryview .refund_form input {
    width: calc(100% - 115px);
    height: 46px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #d6d6d6;
    border-radius: 5px !important;
    color: #000;
    box-shadow: none;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form select,
    .orderinquiryview .refund_form input {
        width: 100%;
        height: 47px;
        line-height: 47px;
        font-size: 16px;
    }
}
.orderinquiryview .refund_form select {
    appearance: none;
    color: #999;
}
.orderinquiryview .refund_form button.refund_confirm {
    width: 240px;
    height: 60px;
    line-height: 58px;
    display: block;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: var(--main-btn-point-color);
    border: none;
    border-radius: 30px;
    box-shadow: none;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form button.refund_confirm {
        width: 176px;
        height: 47px;
        line-height: 1;
        font-size: 16px;
    }
}
.orderinquiryview .refund_form .refund_info.incomplete {
    display: flex;
    padding-bottom: 40px;
    margin-top: 24px;
}
@media (max-width: 991px) {
    .orderinquiryview .refund_form .refund_info.incomplete {
        flex-flow: column;
        padding-bottom: 20px;
    }
}
.orderinquiryview .order_product_info .order_product_box + .order_product_box {
    border-top: 1px solid #eeeeee;
}
.orderinquiryview .order_product_info .order_product_inner > a .check_box {
    margin-right: 10px;
}
.orderinquiryview .order_product_info .order_product_inner > a .image img {
    object-fit: contain;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .image img {
        object-fit: cover;
    }
}
.orderinquiryview .order_product_info .order_product_inner button.review-btn:hover {
    background: none;
}
.orderinquiryview .order_product_info .present_coupon.off_coupon {
    border: none;
    padding: 0 20px;
    margin-top: -5px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .present_coupon.off_coupon {
        padding: 0;
        margin-top: -15px;
    }
}

.left_tit {
    width: 115px;
    line-height: 38px;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-box-font-color2);
}
@media (max-width: 991px) {
    .left_tit {
        line-height: 32px;
        width: 85px;
        font-weight: 400;
    }
}

.right_tit {
    line-height: 38px;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-box-font-color);
}
@media (max-width: 991px) {
    .right_tit {
        line-height: 32px;
        font-weight: 400;
        width: calc(100% - 85px);
    }
}
.right_tit span {
    margin-left: -4px;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
마이페이지 > 온라인견적서
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.online_contact_wrap {
    width: 100%;
    display: flex;
    gap: 50px;
}
.online_contact_wrap .online_contact_content {
    width: calc(100% - 200px);
}
.online_contact_wrap .oc_wrap {
    margin-bottom: 50px;
}
.online_contact_wrap .oc_wrap tr {
    border-bottom: 1px solid #e1e1e1;
}
.online_contact_wrap .oc_wrap th {
    color: var(--main-box-font-color4);
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    padding: 21.25px 0;
    text-align: center;
}
.online_contact_wrap .oc_wrap .name_txt {
    width: 50%;
}
.online_contact_wrap .oc_wrap .date_txt {
    width: 15%;
}
.online_contact_wrap .oc_wrap .ca_txt {
    width: 15%;
}
.online_contact_wrap .oc_wrap .status_txt {
    position: relative;
    text-align: center;
    width: 20%;
}
.online_contact_wrap .oc_wrap th .icon_box {
    display: inline-block;
}
.online_contact_wrap .oc_wrap th .icon_box img {
    position: relative;
    transform: translateY(3px);
    display: block;
}
.online_contact_wrap .oc_wrap td {
    color: var(--main-box-font-color2);
    font-size: 16px;
    line-height: 1em;
    padding: 21.25px 0;
    text-align: center;
}
.online_contact_wrap .oc_wrap td.name_txt {
    color: var(--main-box-font-color);
    text-align: left;
}
.online_contact_wrap .oc_wrap td.name_txt a {
    color: var(--main-box-font-color);
    padding-left: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.online_contact_wrap .oc_wrap .status_txt span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1em;
    padding: 5px 7px;
    border-radius: 3px;
}
.online_contact_wrap .oc_wrap .status_txt span.green_sc {
    color: #1bc75c;
    background-color: #e4f9ec;
}
.online_contact_wrap .oc_wrap .status_txt span.blue_sc {
    color: #18a5ff;
    background-color: #e6f5ff;
}
.online_contact_wrap .oc_wrap .status_txt span.purple_sc {
    color: #7145e4;
    background-color: #f2eefd;
}
.online_contact_wrap .oc_wrap .status_txt span.red_sc {
    color: #ff657f;
    background-color: #ffeeec;
}
.online_contact_wrap .oc_wrap .status_txt span.gray_sc {
    color: #9d9d9d;
    background-color: #f4f4f4;
}
.online_contact_wrap .oc_wrap .status_caption {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: all 0.5s;
}
.online_contact_wrap .oc_wrap .status_txt:hover .status_caption {
    opacity: 1;
    visibility: visible;
}
.online_contact_wrap .oc_wrap .status_caption p {
    color: #5d5d5d;
    font-size: 14px;
    line-height: 22px;
    white-space: nowrap;
    font-weight: 400;
}
.online_contact_wrap .oc_wrap .status_caption p a {
    color: var(--main-box-font-point-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 14px;
}
@media (max-width: 991px) {
    .online_contact_wrap {
        gap: 0;
    }
    .online_contact_wrap .oc_wrap {
        margin-bottom: 30px;
    }
    .online_contact_wrap .online_contact_content {
        width: 100%;
    }
    .orderform_title.online_contact_tt {
        text-align: center;
        padding-bottom: 30px;
        font-size: 21px;
    }
    .online_contact_wrap .oc_wrap tr.th_row {
        border-bottom: none;
    }
    .online_contact_wrap .oc_wrap th {
        background-color: #f6f6f6;
        color: #999;
    }
    .online_contact_wrap .oc_wrap th.name_txt {
        border-radius: 6px 0 0 6px;
    }
    .online_contact_wrap .oc_wrap th.status_txt {
        border-radius: 0 6px 6px 0;
    }
    .online_contact_wrap .oc_wrap th .icon_box img {
        width: 12px;
        transform: none;
    }
    .online_contact_wrap .oc_wrap td .date_txt {
        padding-left: 10px;
        color: var(--main-box-font-color2);
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }
    .online_contact_wrap .oc_wrap td.name_txt a {
        padding-left: 10px;
    }
    .online_contact_wrap .oc_wrap .no_list td {
        font-size: 13px;
        padding: 30px 0;
    }
    .online_contact_wrap .oc_wrap .status_caption {
        left: auto;
        right: 0;
        transform: none;
    }
}
@media (max-width: 480px) {
    .online_contact_wrap .oc_wrap th {
        font-size: 12px;
        padding: 10px 0;
    }
    .online_contact_wrap .oc_wrap .date_txt {
        font-size: 11px;
    }
    .online_contact_wrap .oc_wrap td .date_txt {
        margin-bottom: 5px;
    }
    .online_contact_wrap .oc_wrap td.name_txt a {
        font-size: 13px;
    }
    .online_contact_wrap .oc_wrap .ca_txt {
        font-size: 12px;
    }
    .online_contact_wrap .oc_wrap .status_txt span {
        font-size: 10px;
        padding: 4px 5px;
        white-space: nowrap;
        position: relative;
        top: -3px;
    }
    .online_contact_wrap .oc_wrap td {
        padding: 13.25px 0;
    }
    .online_contact_wrap .oc_wrap th .icon_box img {
        transform: translateY(2px);
    }
    .online_contact_wrap .oc_wrap .status_caption {
        top: 80%;
        padding: 13px;
        border-radius: 2.5px;
    }
    .online_contact_wrap .oc_wrap .status_caption p {
        font-size: 12px;
        line-height: 17px;
    }
}
/* 배송지 관리 html > skin > apms > order > basic > orderaddress.skin.php */
.orderaddress_wrap {
    display: flex;
    gap: 50px;
}
.orderaddress_wrap .address_content {
    width: calc(100% - 200px);
}
.orderaddress_wrap .address_content .sod_orderaddr {
    width: 100%;
    display: table;
    border-top: 1px solid #444;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell {
    text-align: center;
    font-size: 16px;
    color: var(--main-box-font-color);
    font-weight: 400;
    border-bottom: 1px solid #eee;
    padding: 22px 0;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_txt {
    width: 63.138%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_name {
    width: 10.953%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_tel {
    width: 18.765%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del {
    width: 7.144%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del a {
    background-color: transparent;
    border-color: transparent;
    padding: 0;
}
.orderaddress_wrap .address_content .title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.orderaddress_wrap .address_content .orderform_title {
    border-bottom: 0;
}
.orderaddress_wrap .address_content .orderform_title span {
    font-size: 16px;
    color: var(--main-box-font-color2);
    font-weight: 400;
    margin-left: 15px;
}
.orderaddress_wrap .address_content .title_box .modify {
    font-size: 16px;
    color: var(--main-btn-font-point-color);
    position: relative;
}
.orderaddress_wrap .address_content .title_box .modify::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-btn-font-point-color);
    position: absolute;
    bottom: -5px;
    left: 0;
}
@media (max-width: 991px) {
    .orderaddress_wrap .address_content .title_box .modify {
        font-size: 13px;
        margin-bottom: 20px;
        margin-left: 9px;
    }
}
.orderaddress_wrap .address_content .address_head {
    width: 100%;
    display: flex;
    align-items: center;
}
.orderaddress_wrap .address_content .address_cont li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}
@media (max-width: 480px) {
    .orderaddress_wrap .address_content .address_cont li.no_list {
        min-height: calc(100vh - 210px);
        justify-content: center;
    }
}
.orderaddress_wrap .address_content .address_cont li.no_list div {
    padding: 160px 0;
    width: 100%;
    color: #777;
}
.orderaddress_wrap .address_content .address_cont li.no_list div img {
    display: block;
    margin: 0 auto 15px;
}
@media (max-width: 991px) {
    .orderaddress_wrap .address_content .address_cont li.no_list div {
        font-size: 13px;
        padding: 80px 0;
    }
    .orderaddress_wrap .address_content .address_cont li.no_list div img {
        width: 41px;
        height: 41px;
    }
}
.orderaddress_wrap .address_content .address_cont .section-cell {
    border-bottom: 0;
    color: var(--main-box-font-color2);
}
.orderaddress_wrap .address_content .address_cont .section-cell.add_txt {
    padding-left: 20px;
    text-align: left;
}
.orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div {
    display: inline-block;
    line-height: 1.2em;
}
.orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon span {
    display: block;
    font-size: 13px;
    color: #444;
    font-weight: 500;
    background: #f7f7f7;
    padding: 6px 8px;
    border-radius: 10px;
}
@media (max-width: 991px) {
    .orderaddress_wrap {
        gap: 0;
    }
    .orderaddress_wrap .address_content {
        padding: 20px 0;
        width: 100%;
    }
    .orderaddress_wrap .address_content .sod_orderaddr {
        border-top: 0;
    }
    .orderaddress_wrap .address_content .sod_orderaddr .section-cell {
        padding: 5px 0;
        text-align: left;
        font-size: 13px;
    }
    .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_txt {
        width: 90%;
    }
    .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_name {
        width: 17%;
        border-right: 1px solid #e0e0e0;
        margin-right: 4%;
    }
    .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_tel {
        width: 65%;
    }
    .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del {
        width: auto;
    }
    .orderaddress_wrap .address_content .address_cont li {
        flex-wrap: wrap;
        position: relative;
        padding: 20px 0 20px 9px;
    }
    .orderaddress_wrap .address_content .address_cont li:first-child {
        padding-top: 0;
    }
    .orderaddress_wrap .address_content .address_cont li.no_list div {
        text-align: center;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt {
        padding-left: 0;
        text-align: left;
        color: var(--main-box-font-color1);
        font-size: 15px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div {
        display: block;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon {
        width: 70px;
        text-align: center;
        margin-bottom: 10px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon span {
        font-size: 10px;
        padding: 6px 0;
        border-radius: 9px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_del {
        position: absolute;
        right: 10px;
        top: 20px;
        padding: 0;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_del img {
        height: 20px;
    }
    .orderaddress_wrap .address_content .address_head {
        display: none;
    }
}
@media (max-width: 480px) {
    .orderaddress_wrap .address_content .sod_orderaddr .section-cell {
        font-size: 11px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt {
        font-size: 13px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon {
        width: 65px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon span {
        padding: 4px 0;
        border-radius: 8px;
    }
    .orderaddress_wrap .address_content .address_cont .section-cell.add_del img {
        height: 20px;
    }
}

/* 쿠폰 html > skin > apms > member > basic > coupon.skin.php */
.coupon_wrap {
    display: flex;
    gap: 50px;
}
.coupon_wrap .coupon_content {
    width: calc(100% - 200px);
}
.coupon_wrap .coupon_content .orderform_title {
    border-bottom: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
.coupon_wrap .coupon_content .orderform_title span {
    color: var(--main-box-font-color2);
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px;
    margin-top: -3px;
}
@media (max-width: 1200px) {
    .coupon_wrap .coupon_content .orderform_title {
        display: block;
    }
    .coupon_wrap .coupon_content .orderform_title span {
        display: block;
        margin-left: 0;
        margin-top: 20px;
    }
}
.coupon_wrap .coupon_content .coupon_skin {
    width: 100%;
    display: table;
    border-top: 1px solid #444;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell {
    text-align: center;
    font-size: 16px;
    color: var(--main-box-font-color4);
    font-weight: 500;
    border-bottom: 1px solid #e1e1e1;
    padding: 19px 0;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.subject {
    width: 42.856%;
    padding: 20px 0 20px 30px;
    text-align: left;
}
.coupon_wrap .coupon_content .coupon_skin .coupon_head .section-cell.subject {
    text-align: center !important;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.date {
    width: 23.81%;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.target {
    width: 19.048%;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.price {
    width: 14.286%;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.no_list {
    width: 100%;
}
.coupon_wrap .coupon_content .coupon_head {
    width: 100%;
    display: flex;
    align-items: center;
}
.coupon_wrap .coupon_content .coupon_cont li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e1e1e1;
}
.coupon_wrap .coupon_content .coupon_cont li.no_list div {
    width: 100%;
    color: var(--main-box-font-color);
}
.coupon_wrap .coupon_content .coupon_cont .section-cell {
    border-bottom: 0;
    color: var(--main-box-font-color2);
    font-weight: 400;
}
.coupon_wrap .coupon_content .coupon_cont li.no_list div .no_data {
    color: #777;
    font-size: 16px;
    line-height: 1em;
    text-align: center;
    padding: 140px 0;
}
.coupon_tab {
    display: flex;
    gap: 7px;
    margin-bottom: 50px;
}
.coupon_tab .coupon_tab_item a {
    width: auto;
    padding: 0 24px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #e1e1e1;
    color: var(--main-btn-font-color4);
    font-size: 14px;
    font-weight: 500;
}
.coupon_tab .coupon_tab_item a span {
    margin-left: 3px;
}
.coupon_tab .coupon_tab_item.active a {
    border: 1px solid var(--main-btn-line-point-color);
    color: #fff;
    background: var(--main-btn-point-color);
}
.title_group .toggle_title {
    cursor: pointer;
}
.coupon_wrap .coupon_tit_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.coupon_wrap .register_coupon {
    width: 40%;
}
.coupon_wrap .register_coupon input {
    font-size: 14px;
    border: 1px solid #e1e1e1;
    line-height: 38px;
    width: calc(100% - 98px);
    border-radius: 3px;
    padding: 0 20px;
    background-color: #fff;
    color: #0c0c0c;
}
.coupon_wrap .register_coupon button {
    background-color: #999999;
    border: 1px solid #999999;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    line-height: 38px;
    width: 91px;
    margin-left: 1px;
}
@media (max-width: 1200px) {
    .coupon_wrap .coupon_tit_box {
        align-items: flex-end;
    }
}
.present_coupon.off_coupon {
    border-top: 1px solid #444444;
    padding-top: 36px;
    padding-bottom: 40px;
}
.present_coupon.off_coupon .coupon_item + li {
    margin-top: 20px;
}
.present_coupon.off_coupon .coupon_item .wrap {
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 40px 50px 35px;
    position: relative;
}
.present_coupon.off_coupon .coupon_item .coupon_img {
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #f6f6f6;
    margin-right: 30px;
}
.present_coupon.off_coupon .coupon_item .coupon_info .cate {
    color: var(--main-btn-point-color);
    font-size: 11px;
    font-weight: 500;
    line-height: 1em;
    padding: 1.5px 5px;
    border-radius: 3px;
    background-color: #f3effe;
}
.present_coupon.off_coupon .coupon_item .coupon_info .title {
    color: #222222;
    font-size: 19px;
    font-weight: 500;
    line-height: 1em;
    padding: 15px 0 20px;
}
.present_coupon.off_coupon .coupon_item .coupon_info > div {
    color: #666666;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6em;
}
.present_coupon.off_coupon .coupon_item .coupon_info > div span {
    color: #aaaaaa;
    margin-right: 20px;
}
.present_coupon.off_coupon .coupon_item .sharing_btn {
    position: absolute;
    top: 50%;
    right: 50px;
    margin-top: -11px;
}
.present_coupon.off_coupon .coupon_item .sharing_btn a {
    color: #381e1f;
    font-size: 13px;
    line-height: 1em;
    padding: 9.5px 16px;
    background-color: #fae100;
    border-radius: 19px;
}
.present_coupon.off_coupon .coupon_item .off {
    display: none;
}
.present_coupon.off_coupon .coupon_item.used .wrap::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cccccc;
    opacity: 0.25;
}
.present_coupon.off_coupon .coupon_item.used .coupon_info .cate {
    color: #999999;
    background-color: #e5e5e5;
}
.present_coupon.off_coupon .coupon_item.used .coupon_info .title {
    color: #888888;
}
.present_coupon.off_coupon .coupon_item.used .coupon_info > div {
    color: #888888;
}
.present_coupon.off_coupon .coupon_item.used .coupon_info > div span {
    color: #888888;
}
.present_coupon.off_coupon .coupon_item.used .sharing_btn a {
    color: #999;
    background-color: #e1e1e1;
}
.present_coupon.off_coupon .coupon_item.used .on {
    display: none;
}
.present_coupon.off_coupon .coupon_item.used .off {
    display: inline-block;
}

.present_coupon.off_coupon .coupon_item .wrap .no_data {
    color: var(--main-box-font-color2);
    font-size: 16px;
    line-height: 1em;
    padding: 21.25px 0 0;
    text-align: center;
}

@media (max-width: 991px) {
    .title_group {
        position: relative;
        margin-bottom: 35px;
    }
    .title_group .toggle_title {
        display: block;
        text-align: center;
        width: 100%;
        padding: 15px;
        font-size: 13px;
        color: #fff;
        background: #b69a71;
        position: relative;
        font-weight: 500;
        border-radius: 22.5px;
    }
    .title_group .toggle_title::before {
        position: absolute;
        content: "";
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        background: url("/img/coupon_arrow.png");
        width: 11px;
        height: 6px;
    }
    .title_group .toggle_title.on::before {
        transform: translateY(-50%) rotate(180deg);
    }
    .title_group .title_list {
        display: none;
        position: absolute;
        width: 100%;
        z-index: 3;
        background: #fff;
        top: calc(100% + 8px);
        padding: 25px;
        text-align: center;
        border-radius: 10px;
        border: 1px solid #eeeeee;
        flex-direction: column;
        gap: 20px;
    }
    .title_group .title_list.on {
        display: flex;
    }
    .title_group .title_list .title {
        font-size: 13px;
    }
    .present_coupon.off_coupon .coupon_item .wrap .no_data {
        font-size: 13px;
    }
    .coupon_wrap .coupon_content .coupon_cont li.no_list div .no_data {
        font-size: 13px;
        padding: 70px 0;
    }
}
@media (max-width: 991px) {
    .coupon_wrap {
        display: block;
        gap: 0;
        margin-bottom: 50px;
    }
    .coupon_wrap .coupon_content {
        width: 100%;
    }
    .coupon_wrap .coupon_content .coupon_skin {
        border-top: 0;
    }
    .coupon_wrap .coupon_content .coupon_skin .section-cell {
        font-size: 16px;
        padding: 16px 0;
        text-align: center;
        color: #0c0c0c;
    }
    .coupon_wrap .coupon_content .coupon_skin .section-cell.subject {
        width: 55%;
        padding: 9.5px 0;
        text-align: center;
    }
    .coupon_wrap .coupon_content .coupon_skin .section-cell.target {
        width: 25%;
    }
    .coupon_wrap .coupon_content .coupon_skin .section-cell.price {
        width: 25%;
    }
    .coupon_wrap .coupon_content .coupon_head {
        background: #f6f6f6;
        border-radius: 12px;
    }
    .coupon_wrap .coupon_content .coupon_head .section-cell {
        border-bottom: 0;
    }
    .coupon_wrap .coupon_content .coupon_cont .section-cell {
        line-height: 1.2;
        border-bottom: 0;
        color: var(--main-box-font-color2);
    }
    .coupon_wrap .coupon_content .coupon_cont .section-cell.subject {
        text-align: left;
        padding: 15px 0 15px 10px;
    }
    .coupon_wrap .coupon_content .coupon_cont .section-cell.subject span {
        display: block;
        font-size: 14px;
    }
    .coupon_wrap .coupon_content .coupon_cont .section-cell.subject span.mob_date {
        color: var(--main-box-font-color2);
        margin-bottom: 5px;
        font-size: 12px;
    }

    .coupon_tab {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .coupon_tab::after {
        content: "";
        display: block;
        background-color: #eeeeee;
        width: calc(100% + 30px);
        height: 1px;
        position: absolute;
        left: -15px;
        bottom: 0;
    }
    .coupon_tab .coupon_tab_item a {
        padding: 0 12px;
        height: 30px;
        color: #5d5d5d;
        border: 1px solid #f3f3f6;
        background-color: #f3f3f6;
    }
    .coupon_wrap .coupon_tit_box {
        padding-bottom: 20px;
    }
    .coupon_wrap .register_coupon {
        width: 100%;
    }
    .coupon_wrap .register_coupon input {
        font-size: 12px;
        padding: 0 15px;
        border-radius: 2.5px;
        width: calc(100% - 85px);
        line-height: 31px;
    }
    .coupon_wrap .register_coupon button {
        font-size: 12px;
        border-radius: 2.5px;
        width: 80px;
        line-height: 31px;
        margin-left: 2px;
    }
    .present_coupon.off_coupon {
        padding-top: 0;
        border: none;
    }
    .present_coupon.off_coupon .coupon_item .wrap {
        padding: 22px 20px 20px;
    }
    .present_coupon.off_coupon .coupon_item + li {
        margin-top: 10px;
    }
    .present_coupon.off_coupon .coupon_item .coupon_img {
        width: 95px;
        height: 95px;
        margin-right: 18px;
        min-width: 95px;
    }
    .present_coupon.off_coupon .coupon_item .coupon_info .cate {
        font-size: 10px;
        padding: 1.5px 3px;
    }
    .present_coupon.off_coupon .coupon_item .coupon_info .title {
        font-size: 15px;
        line-height: 1.2em;
        padding: 8px 0 14px;
    }
    .present_coupon.off_coupon .coupon_item .coupon_info > div {
        font-size: 12px;
    }
    .present_coupon.off_coupon .coupon_item .coupon_info > div span {
        color: #999;
        margin-right: 12px;
    }
    .present_coupon.off_coupon .coupon_item .sharing_btn {
        top: 15px;
        right: 15px;
        margin-top: 0;
    }
    .present_coupon.off_coupon .coupon_item .sharing_btn a {
        padding: 0;
        display: block;
        width: 28px;
        height: 28px;
        border-radius: 50%;
    }
    .present_coupon.off_coupon .coupon_item .sharing_btn a img {
        width: 100%;
    }
    .present_coupon.off_coupon .coupon_item img.on {
        display: inline-block;
    }
    .present_coupon.off_coupon .coupon_item.used .sharing_btn a img.off {
        display: inline-block;
    }
}
@media (max-width: 480px) {
    .coupon_wrap .coupon_content .coupon_skin .section-cell {
        font-size: 13px;
        padding: 9.5px 0;
    }
    .coupon_wrap .coupon_content .coupon_head {
        border-radius: 6px;
    }
}

/* 적립금 html > skin > apms > member > basic > point.skin.php */
.point_wrap {
    width: 100%;
    display: flex;
    gap: 50px;
}
.point_wrap .point_content {
    width: calc(100% - 200px);
}
.point_wrap .point_content .point_box {
    border: 1px solid #f2f2f2;
    margin-bottom: 40px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
}
.point_wrap .point_content .point_box .text {
    font-size: 16px;
    color: var(--main-box-font-color);
    font-weight: 400;
    flex-grow: 1;
}
.point_wrap .point_content .point_box .number {
    font-size: 22px;
    color: var(--main-box-font-point-color);
    font-weight: 500;
}
.point_wrap .point_content .point_skin {
    width: 100%;
    border-top: 1px solid #444;
}
.point_wrap .point_content .point_skin .section-cell {
    text-align: center;
    font-size: 16px;
    color: var(--main-box-font-color);
    font-weight: 400;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}
.point_wrap .point_content .point_skin .section-cell.date,
.point_wrap .point_content .point_skin .section-cell.expire-date,
.point_wrap .point_content .point_skin .section-cell.point01,
.point_wrap .point_content .point_skin .section-cell.point02 {
    width: 14.286%;
}
.point_wrap .point_content .point_skin .section-cell.content {
    width: 42.856%;
    text-align: left;
    padding-left: 35px;
}
.point_wrap .point_content .point_skin .section-cell.expire-date.red {
    color: #de1f1f;
}
.point_wrap .point_content .point_skin .section-cell.no_list {
    width: 100%;
    color: #777;
    padding-bottom: 80px;
}
.point_wrap .point_content .point_head {
    display: flex;
    align-items: center;
}
.point_wrap .point_content .point_cont {
    display: flex;
    flex-direction: column;
}
.point_wrap .point_content .point_cont li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.point_wrap .point_content .point_cont .section-cell {
    color: #666;
    border-bottom: 0;
}
.point_wrap .point_content .point_cont .section-cell.content {
    color: #222;
}
.point_wrap .point_content .point_cont .section-cell.expire-date {
    color: var(--main-box-font-color2);
}
.point_wrap .point_content .point_footer {
    background: #f7f7f7;
    border-radius: 12px;
}
.point_wrap .point_content .point_footer .point_total {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: var(--main-box-font-color2);
    padding: 16px 0;
    font-weight: 400;
}
.point_wrap .point_content .point_footer .point_total .total_txt {
    width: 71.428%;
}
.point_wrap .point_content .point_footer .point_total .total_point {
    width: 14.286%;
}
.point_wrap .orderform_title {
    border-bottom: 0;
}
.point_wrap .orderform_title span {
    font-size: 16px;
    color: var(--main-box-font-color2);
    font-weight: 400;
    margin-left: 15px;
}
.point_wrap .text-center {
    margin: 50px 0 40px;
}
.point_wrap .text-center .pagination {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .point_wrap {
        display: block;
        gap: 0;
    }
    .point_wrap .point_content {
        width: 100%;
        padding: 40px 0 0;
    }
    .point_wrap .point_content .point_box {
        border: 0;
        margin-bottom: 0;
        margin-top: 35px;
        /* padding: 17px 0; */
        padding: 0;
        height: 46px;
        line-height: 43px;
        display: block;
        background: var(--main-btn-point-color);
        border-radius: 20px;
        text-align: center;
    }
    .point_wrap .point_content .point_box > div {
        display: inline-block;
        vertical-align: middle;
    }
    .point_wrap .point_content .point_box .text {
        color: #fff;
    }
    .point_wrap .point_content .point_box .number {
        color: #fff;
        font-size: 16px;
        padding-left: 10px;
        margin-left: 10px;
        position: relative;
    }
    .point_wrap .point_content .point_box .number::after {
        content: "";
        display: block;
        width: 1px;
        height: 10px;
        background: #fff;
        position: absolute;
        top: 55%;
        left: 0;
        transform: translateY(-50%);
    }
    .point_wrap .point_content .point_skin {
        border-top: 0;
    }
    .point_wrap .point_content .point_skin .section-cell.no_list {
        font-size: 13px;
    }
    .point_wrap .point_content .point_skin .section-cell {
        padding: 16px 0;
    }
    .point_wrap .point_content .point_skin .section-cell.date,
    .point_wrap .point_content .point_skin .section-cell.expire-date,
    .point_wrap .point_content .point_skin .section-cell.point01,
    .point_wrap .point_content .point_skin .section-cell.point02 {
        width: 19%;
    }
    .point_wrap .point_content .point_skin .section-cell.content {
        width: 43%;
        text-align: center;
        padding-left: 0;
    }
    .point_wrap .point_content .point_head {
        background: #f7f7f7;
        border-radius: 12px;
    }
    .point_wrap .point_content .point_head .section-cell {
        border-bottom: 0;
    }
    .point_wrap .point_content .point_cont li:last-child {
        border-bottom: 0;
    }
    .point_wrap .point_content .point_cont .section-cell {
        line-height: 1.2;
    }
    .point_wrap .point_content .point_cont .section-cell.content {
        text-align: left;
        padding-left: 10px;
    }
    .point_wrap .point_content .point_cont .section-cell.content span {
        display: block;
    }
    .point_wrap .point_content .point_cont .section-cell.content span.mob_date {
        color: #666;
        margin-bottom: 7px;
    }
    .point_wrap .point_content .point_footer .point_total {
        color: #0c0c0c;
    }
    .point_wrap .point_content .point_footer .point_total .total_txt {
        width: 62%;
    }
    .point_wrap .point_content .point_footer .point_total .total_point {
        width: 19%;
    }
    .point_wrap .text-center {
        margin: 25px 0 50px;
    }
}
@media (max-width: 480px) {
    .point_wrap .point_content .point_box {
        margin-top: 25px;
    }
    .point_wrap .point_content .point_box .text {
        font-size: 14px;
    }
    .point_wrap .point_content .point_box .number {
        font-size: 14px;
    }
    .point_wrap .point_content .point_box .number::after {
        top: 52%;
    }
    .point_wrap .point_content .point_skin .section-cell {
        font-size: 12px;
        padding: 16px 0;
    }
    .point_wrap .point_content .point_head {
        border-radius: 6px;
    }
    .point_wrap .point_content .point_cont .section-cell.content span {
        font-size: 13px;
    }
    .point_wrap .point_content .point_cont .section-cell.content span.mob_date {
        font-size: 11px;
    }
    .point_wrap .point_content .point_footer {
        border-radius: 5px;
    }
    .point_wrap .point_content .point_footer .point_total {
        font-size: 11px;
        padding: 12px 0;
    }
}

/* 장바구니 html > skin > apms > order > basic > cart.skin.php */
#btn-print {
    line-height: 1em;
    padding: 17px 20.5px;
}
#btn-print:hover {
    background: #aaaaaa !important;
    border: 1px solid #aaaaaa !important;
}
#btn-print i {
    top: 1px;
    margin-right: 2px;
}
@media (max-width: 991px) {
    #mbtn-print {
        color: #0c0c0c !important;
        border: 1px solid #0c0c0c;
        background-color: #fff;
        border-radius: 3px !important;
        font-size: 15px;
        padding: 0;
        line-height: 52px;
        height: 52px;
        font-weight: 500;
    }
}
.cart_wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-self: auto;
    padding-top: 20px;
}
.cart_wrap .cart_left {
    width: 70%;
}
.cart_wrap .cart_left .cart_head {
    width: 100%;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 23px;
}
.cart_wrap .cart_left .cart_head.bottom {
    border-bottom: 0;
    margin-top: 20px;
}

.cart_wrap .cart_left .cart_head .radio_check .text {
    font-size: 18px;
    color: var(--main-box-font-color);
    font-weight: 500;
}
.cart_wrap .cart_left .cart_head .radio_check .ct_totle {
    display: inline-block;
}
.cart_wrap .cart_left .cart_head .cart_delete button.shop_btn {
    font-size: 17px;
    color: var(--main-btn-font-color2);
    background-color: transparent;
    font-weight: 400;
    width: auto;
    height: auto;
    display: inline-block;
    border: 0;
    padding: 0;
    padding-left: 25px;
    border-radius: 50px;
    transition: 0.1s all ease-in;
}
.cart_wrap .cart_left .cart_body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.cart_wrap .cart_left .cart_body > li {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}
.cart_wrap .cart_left .cart_body > li.no_cart_list {
    display: block;
    text-align: center;
    padding: 160px 0;
}
.cart_wrap .cart_left .cart_body > li.no_cart_list p {
    font-size: 16px;
}
.cart_wrap .cart_left .cart_body .cart_check {
    width: 5.835%;
}
.cart_wrap .cart_left .cart_body .cart_check .radio_check input + label .circle {
    margin-right: 0;
}

.cart_wrap .cart_left .cart_body .cart_check .radio_check input[disabled] + label .circle {
    background-color: #f6f6f6;
    border-color: #e6e6e6;
}
.cart_wrap .cart_left .cart_body .cart_content {
    width: 94.565%;
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.cart_wrap .cart_left .cart_body .cart_content .item_img {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 5px;
}
.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .item_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
    .cart_wrap .cart_left .cart_body .cart_content .item_img {
        width: 65px;
        height: 65px;
        border-radius: 5px;
    }
    .cart_wrap .cart_left .cart_body > li.no_cart_list {
        padding: 80px 0;
    }
    .cart_wrap .cart_left .cart_body > li.no_cart_list p {
        font-size: 13px;
    }
}
.cart_wrap .cart_left .cart_body .cart_content .item_img img {
    height: auto;
    max-width: inherit;
}
@media (max-width: 991px) {
    .cart_wrap .cart_left .cart_body .cart_content .item_img img {
        max-width: 100%;
        height: 100%;
    }
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail {
    width: 340px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 25px;
    padding-top: 0;
    padding-right: 30px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .it_sub_name {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 36.38px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .it_name {
    font-size: 18px;
    line-height: 1.4em;
    color: var(--main-box-font-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 51px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap {
    padding: 0;
    margin-top: 10px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li {
    border-bottom: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4em;
    color: var(--main-box-font-color2);
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 39px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li + li {
    margin-top: 7px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li span {
    display: inline-block;
    position: relative;
    padding-left: 18px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li span::before {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: #c7c7c7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-10px);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice {
    width: 124px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button {
    width: 100%;
    height: 37px;
    line-height: 35px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    font-size: 14px;
    color: #0c0c0c;
    font-weight: 400;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button:hover {
    color: #fff;
    border-color: var(--main-btn-line-point-color);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price {
    width: 160px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price > div {
    text-align: right;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-box-font-color);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price .origin_price {
    font-size: 14px;
    color: var(--main-box-font-color2);
    font-weight: 400;
    text-decoration: line-through;
    margin-top: 5px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price .won {
    font-weight: 400;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete {
    margin-left: 20px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete .delete_arrow {
    display: block;
    width: 15px;
    height: 15px;
    position: relative;
    cursor: pointer;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete .delete_arrow::before {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #666;
    position: absolute;
    top: 0;
    right: 7px;
    transform: rotate(-45deg);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete .delete_arrow::after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #666;
    position: absolute;
    top: 0;
    right: 7px;
    transform: rotate(45deg);
}

/* [Warehouse] 품절 라인 data-line-stock-short */
.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .item_detail .it_sub_name {
    color: #999999;
}
.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .item_detail .it_name {
    color: #666;
}

.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .item_detail .option_wrap li {
    color: #999999;
}

.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .item_detail .item_sticker.soldout {
    color: #4c4c4c;
    background-color: #ededed;
}

.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .cart_item_option .btn_revice button {
    background-color: #ededed;
    border-color: #ededed;
    color: #aaaaaa;
    cursor: not-allowed;
}

.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .cart_item_price .sale_price {
    color: #666;
}

.cart_wrap .cart_left .cart_body .cart_li[data-line-stock-short="1"] .cart_content .cart_item_price .origin_price {
    color: #999999;
}

.cart_wrap .cart_right {
    width: 25.67%;
    position: relative;
    min-height: 500px;
}
.cart_wrap .cart_right .right_title {
    margin-bottom: 21px;
}
.cart_wrap .cart_right .right_title h1 {
    font-size: 24px;
    color: var(--main-box-font-color);
    font-weight: 500;
    text-align: left;
}
.cart_wrap .cart_right .price_wrap {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    border: 1px solid #f2f2f2;
    padding: 30px 30px 35px;
    background-color: #fafafa;
}
.cart_wrap .cart_right .price_wrap .price_cont {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 17px;
}
.cart_wrap .cart_right .price_wrap .price_cont .cont_txt {
    flex-grow: 1;
    font-size: 16px;
    color: #444;
    font-weight: 400;
}
.cart_wrap .cart_right .price_wrap .price_cont .price_txt {
    font-size: 18px;
    color: #444;
    font-weight: 400;
    text-align: right;
}
.cart_wrap .cart_right .price_wrap .price_cont .price_txt .won {
    font-weight: 400;
    margin-left: -3px;
    display: inline-block;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price {
    flex-direction: column;
}
@media (max-width: 991px) {
    .cart_wrap .cart_right .price_wrap .price_cont.sub_price {
        margin-top: -7px;
    }
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .price_cont {
    margin-bottom: 0;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .sale_price {
    margin-top: 8px;
}
@media (max-width: 480px) {
    .cart_wrap .cart_right .price_wrap .price_cont.sub_price .sale_price {
        margin-top: 6px;
    }
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .origin_price,
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .sale_price {
    width: 100%;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt,
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .price_txt {
    font-size: 14px;
    color: #999;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt {
    position: relative;
    padding-left: 15px;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid #dcdcdc;
    border-right: 0;
    border-top: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom {
    margin-bottom: 0;
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom > div {
    padding: 0;
    border-bottom: 0;
    width: auto;
    float: none;
    text-align: unset;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt {
    font-size: 24px;
    font-weight: 600;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt font {
    font-weight: 700;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt .won {
    font-size: 18px;
}
.cart_wrap .cart_right .price_wrap .point_cont .cont_txt01 {
    color: var(--main-font-point-color);
    font-size: 13px;
    font-weight: 400;
    text-align: right;
    padding-top: 10px;
}
.cart_wrap .cart_right .price_wrap .point_cont .cont_txt01 span {
    color: var(--main-font-point-color);
    font-size: 13px;
    font-weight: 600;
}
.cart_wrap .cart_right .price_wrap .point_cont .cont_txt01 span font {
    font-weight: 600;
}
.cart_wrap .cart_right .cart_buy {
    width: 100%;
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn .form-group {
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .cart_wrap .cart_right .cart_buy .cart_buy_btn .form-group {
        margin-bottom: 0;
    }
    .cart_wrap .cart_right .price_wrap .point_cont .cont_txt02 {
        text-align: right;
        padding-top: 14px;
    }
    .cart_wrap .cart_right .price_wrap .point_cont .cont_txt02 .sticker {
        font-size: 11px;
        color: #fff;
        background-color: var(--main-box-point-color);
        line-height: 14.5px;
        border-radius: 14px;
        padding: 2px 6px;
        font-weight: 400;
    }
    .cart_wrap .cart_right .price_wrap .point_cont .cont_txt02 .test {
        color: var(--main-box-font-color1);
        font-size: 12px;
        font-weight: 400;
    }
    .cart_wrap .cart_right .price_wrap .point_cont .cont_txt02 .percent {
        color: #777;
        font-size: 12px;
        font-weight: 400;
    }
    .cart-wrap .price-wrap {
        margin-bottom: 20px;
    }
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn {
    margin-top: 20px;
    height: 60px;
    line-height: 58px;
    border: 0;
    border-radius: 5px !important;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn[disabled] {
    background: #ededed;
    border-color: #ededed;
    color: #aaaaaa !important;
    cursor: not-allowed;
    opacity: 1;
}

.cart_wrap .cart_right .cart_buy .cart_buy_btn.none_cart_buy .buy-btn {
    background: rgb(221, 221, 221);
    color: #fff;
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn.fixed {
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 10px 0 0;
    z-index: 10;
    margin: 0;
}
.cart_wrap .cart_right .cart_buy .cart_btn_1 .btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--main-btn-font-point-color) !important;
    background-color: #fff;
    border: 1px solid var(--main-btn-line-point-color);
    display: block;
    line-height: 58px;
    height: 60px;
    border-radius: 5px !important;
    padding: 0;
    transition: 0.2s;
    width: 100%;
    outline: none;
}
.cart_wrap .cart_right .cart_buy .cart_btn_1 .btn:hover {
    color: #fff !important;
    background-color: var(--main-btn-point-color);
}
@media (max-width: 991px) {
    .cart_wrap .cart_right .cart_buy .cart_btn_1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
    .cart_wrap .cart_right .cart_buy .cart_btn_1 .btn,
    .cart_wrap .cart_right .cart_buy .cart_btn_1 button {
        flex: 1;
    }
    .cart_wrap .cart_right .cart_buy .cart_btn_1 .btn {
        font-size: 15px;
        border-radius: 3px !important;
        line-height: 52px;
        height: 52px;
    }
}
.cart_wrap .cart_right .cart_scroll {
    position: absolute;
    top: 0;
    width: 100%;
}
.cart_wrap .cart_right .cart_scroll.fixed {
    position: fixed;
    top: 20px;
}
.cart_wrap .cart_right .cart_Wing {
    position: sticky;
    top: 150px;
    position: -webkit-sticky;
}
@media (max-width: 1200px) {
    .cart_wrap .cart_right {
        width: 27%;
    }
    .cart_wrap .cart_right .cart_scroll {
        position: relative;
    }
}
@media (max-width: 991px) {
    .cart_wrap {
        flex-direction: column;
        gap: 0;
    }
    .cart_wrap .cart_left {
        width: 100%;
    }
    .cart_wrap .cart_left .cart_head {
        border-bottom: 0;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    .cart_wrap .cart_left .cart_head.mob_head.fixed {
        width: 100%;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 20;
        padding: 15px 15px;
        border: 1px solid #f2f2f2;
        border-top: 0;
    }
    .cart_wrap .cart_left .cart_head .radio_check {
        flex-grow: 1;
    }
    .cart_wrap .cart_left .cart_head .radio_check .text {
        font-size: 16px;
    }
    .cart_wrap .cart_left .cart_head .cart_delete {
        position: sticky;
        top: 0;
        right: 0;
    }
    .cart_wrap .cart_left .cart_head .cart_delete button.shop_btn {
        font-size: 13px;
    }
    .cart_wrap .cart_left .cart_body {
        padding: 0 15px;
    }
    .cart_wrap .cart_left .cart_body::before {
        content: "";
        display: block;
        width: calc(100% + 30px);
        height: 9px;
        background: #f9f9fa;
        position: relative;
        left: -15px;
    }
    .cart_wrap .cart_left .cart_body::after {
        content: "";
        display: block;
        width: calc(100% + 30px);
        height: 9px;
        background: #f9f9fa;
        position: relative;
        left: -15px;
    }
    .cart_wrap .cart_left .cart_body > li {
        padding: 30px 0 0;
        border-bottom: 1px solid #e7e7e7;
        flex-wrap: nowrap;
        align-items: flex-start;
        position: relative;
    }
    .cart_wrap .cart_left .cart_body > li:last-child {
        border-bottom: none;
    }
    .cart_wrap .cart_left .cart_body > li.no_cart_list:last-child {
        padding-bottom: 90px;
    }
    .cart_wrap .cart_left .cart_body .cart_check {
        width: 8.921%;
    }
    .cart_wrap .cart_left .cart_body .cart_content {
        flex-wrap: wrap;
        padding-bottom: 30px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .item_detail {
        width: calc(100% - 65px);
        padding-left: 17px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .item_detail .it_sub_name {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .cart_wrap .cart_left .cart_body .cart_content .item_detail .it_name {
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        height: 21px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li {
        font-size: 13px;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        height: 15.5px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_option {
        margin-top: 20px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button {
        margin-bottom: 0;
        border-radius: 2.5px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-top: 20px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price {
        order: 2;
        margin-bottom: 0;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .origin_price {
        order: 1;
        margin-right: 11px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_delete {
        position: absolute;
        top: 30px;
        right: 0;
    }
    .cart_wrap .cart_right {
        width: 100%;
        margin-top: 40px;
        padding: 0 15px;
        min-height: auto;
    }
    .cart_wrap .cart_right .right_title h1 {
        font-size: 18px;
        font-weight: 600;
    }
    .cart_wrap .cart_right .price_wrap {
        border: 0;
        padding: 0;
        background-color: transparent;
    }
    .cart_wrap .cart_right .price_wrap .price_cont .cont_txt {
        color: var(--main-box-font-color1);
    }
    .cart_wrap .cart_right .price_wrap .price_cont .price_txt {
        color: var(--main-box-font-color1);
    }
    .cart_wrap .cart_right .price_wrap .price_cont .price_txt .won {
        font-size: 16px;
    }
    .cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn {
        height: 50px;
        line-height: 48px;
        margin-top: 0;
    }
    .cart_wrap .cart_right .cart_buy .buy-btn-wrap {
        padding: 0;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .cart_wrap .cart_left .cart_head {
        margin-bottom: 15px;
    }
    .cart_wrap .cart_left .cart_head .cart_delete button.shop_btn {
        font-size: 14px;
        padding-left: 16px;
    }
    .cart_wrap .cart_left .cart_body .cart_content {
        padding-bottom: 20px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap {
        margin-top: 4px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_option {
        margin-top: 15px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice {
        width: 121px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price {
        margin-top: 14px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price {
        font-size: 18px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price .won {
        font-size: 15px;
    }
    .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .origin_price {
        margin-right: 8px;
    }
    .cart_wrap .cart_right {
        margin-top: 30px;
    }
    .cart_wrap .cart_right .price_wrap .price_cont .price_txt {
        font-size: 16px;
        color: var(--main-box-font-color);
    }
    .cart_wrap .cart_right .price_wrap .price_cont .price_txt .won {
        font-size: 13px;
    }
    .cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt {
        width: 70%;
        font-size: 12px;
    }
    .cart_wrap .cart_right .price_wrap .price_cont.sub_price .price_txt {
        width: 30%;
    }
    .cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt {
        font-size: 23px;
    }
    .cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt .won {
        font-size: 16px;
    }
    .cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn {
        height: 52px;
        line-height: 53px;
        font-size: 15px;
        border-radius: 3px !important;
    }
}

@media (max-width: 991px) {
    .cart_style {
        padding: 0;
        margin-bottom: 0;
    }
}

/* 옵션모달창 html > skin > apms > order > basic > cartoption.skin.php */
.mod_option_wrap {
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.mod_option_wrap .modal-content {
    box-shadow: 0 0 0;
    border: 0;
    border-radius: 20px;
}
.mod_option_wrap .modal-content .modal_body {
    padding: 50px 20px 30px 30px;
}
.mod_option_wrap .modal-content .modal_body form .modal_it_tit {
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.mod_option_wrap .modal-content .modal_body form .modal_it_tit .modal_img {
    min-width: 65px;
    width: 65px;
    height: 65px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}
.mod_option_wrap .modal-content .modal_body form .padding_b {
    padding-right: 10px;
    padding-top: 20px;
}
.mod_option_wrap .modal-content .modal_body form .padding_b.modal_it_name {
    padding-top: 0;
    margin-bottom: 0;
    width: calc(100% - 75px);
}
.mod_option_wrap .option_form .modal_it_name p.it_sub_name {
    font-size: 13px;
    color: #5d5d5d;
    font-weight: 400;
    margin-bottom: 2px;
    max-height: 31px;
}
.mod_option_wrap .modal-content .modal_body form .point_b {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-box-font-point-color);
    text-align: right;
}
.mod_option_wrap .modal-content .modal_body form .modal_scroll {
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
}
@media (max-width: 991px) {
    .mod_option_wrap .modal-content .modal_body {
        padding: 35px 10px 15px 15px;
    }
    .mod_option_wrap .modal-content .modal_body form .padding_b {
        padding-right: 5px;
        font-size: 15px;
    }
    .mod_option_wrap .modal-content .modal_body form .modal_scroll {
        padding-right: 5px;
    }
}
.mod_option_wrap .option_form .option_close {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.mod_option_wrap .option_form .option_close span {
    display: block;
    width: 100%;
    height: 100%;
}
.mod_option_wrap .option_form .option_close span::before {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background: #999999;
    position: absolute;
    top: 0;
    right: 10px;
    transform: rotate(-45deg);
}
.mod_option_wrap .option_form .option_close span::after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background: #999999;
    position: absolute;
    top: 0;
    right: 10px;
    transform: rotate(45deg);
}
.mod_option_wrap .option_form .modal_it_name p {
    font-size: 16px;
    line-height: 1.4em;
    color: #0c0c0c;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 44.78px;
}
.mod_option_wrap .option_form .modal_it_name p#tit_price {
    margin-top: 5px;
    display: flex;
    align-items: center;
}
.mod_option_wrap .option_form .modal_it_name p#tit_price #tit_tot_price {
    font-size: 18px;
    font-weight: 700;
    color: #0c0c0c;
    letter-spacing: -0.01em;
}
.mod_option_wrap .option_form .modal_it_name p#tit_price .won {
    font-size: 14px;
    font-weight: 700;
    color: #0c0c0c;
    margin-left: 2px;
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form .modal_it_name p#tit_price {
        margin-top: 3px;
    }
    .mod_option_wrap .option_form .modal_it_name p#tit_price #tit_tot_price {
        font-size: 16px;
    }
}
.mod_option_wrap .option_form .option_tit {
    font-size: 18px;
    color: #222;
    font-weight: 500;
    margin-bottom: 15px;
}
.mod_option_wrap .option_form .option_tit.option02_box {
    margin-top: 30px;
}
.mod_option_wrap .option_form .option_list_box {
    border: 0;
    margin: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
}
.mod_option_wrap .option_form .option_list_box ul,
.mod_option_wrap .option_form .option_list_box li,
.mod_option_wrap .option_form .option_list_box ol {
    list-style: none;
}
.mod_option_wrap .option_form .option_list_box .option_sel {
    display: flex;
    width: 100%;
    margin-bottom: 5px;
}
.mod_option_wrap .option_form .option_list_box .option_sel:last-child {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form .option_list_box {
        margin-top: 15px;
        padding-top: 15px;
    }
    .mod_option_wrap .option_form .option_list_box .option_sel {
        margin-bottom: 5px;
    }
    .mod_option_wrap .option_form .option_list_box + .opt-tbl {
        padding-top: 15px;
    }
}
.mod_option_wrap .option_form .option_list_box .option_sel .option_name {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
    margin-bottom: 0;
    width: 77px;
    line-height: 54px;
}
.mod_option_wrap .option_form .option_list_box .option_sel .td_sit_sel {
    width: calc(100% - 77px);
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form .option_list_box .option_sel .td_sit_sel {
        width: calc(100% - 110px);
    }
}
.mod_option_wrap .option_form .option_list_box .option_sel select {
    box-shadow: 0 0 0;
    border: 1px solid #f2f2f2;
    border-radius: 5px !important;
    height: 54px;
    line-height: 52px;
    padding: 0 18px;
    font-size: 14px;
    color: #0c0c0c;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none; /* 크롬 화살표 없애기 */
    -moz-appearance: none; /* 파이어폭스 화살표 없애기 */
    appearance: none;
    background: url(../img/icon_select_arrow.png) no-repeat right 20px center;
}
.mod_option_wrap .option_form .option_list_box .option_sel li + li,
.mod_option_wrap .modal-content .modal_body form .modal_scroll .option_list_box .option_sel li:last-child {
    width: calc(100% - 77px);
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form .option_list_box .option_sel li + li,
    .mod_option_wrap .modal-content .modal_body form .modal_scroll .option_list_box .option_sel li:last-child {
        width: calc((100% - 110px));
    }
}
.mod_option_wrap .option_form .change_btn button {
    width: 100%;
    height: 53px;
    line-height: 51px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding: 0;
    border-radius: 5px !important;
}
.mod_option_wrap .option_form #it_sel_option {
    margin-top: 20px;
}
.mod_option_wrap .option_form #it_sel_option ul {
    margin-bottom: 0;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li {
    border: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li + li {
    margin-top: 15px;
}
/* 2024-08-30 (주)파이브센스_FIVESENSES.Corp. 장바구니 재작업 */
.mod_option_wrap .option_form #it_sel_option .row {
    margin-left: 0;
    margin-right: 0;
    background-color: #f7f7f7;
    border-radius: 5px;
    padding: 20px;
}
.mod_option_wrap .option_form #it_sel_option .row .op_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box {
    padding: 0;
    width: calc(100% - 100px);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label {
    display: flex;
    align-items: center;
    justify-content: right;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label .sale_price {
    color: #0c0c0c;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label .sale_price .won {
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 600;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label .origin_price .won,
.mod_option_wrap .option_form #it_sel_option .row .op_box label .origin_price {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    text-decoration: line-through;
    line-height: 1em;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button {
    width: 33px;
    height: 36px;
    border-radius: 0 !important;
    background: #fff;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    outline: none;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button span {
    width: 14px !important;
    height: 14px !important;
    position: relative;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::before {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background: #0c0c0c;
    position: absolute;
    top: 1px;
    right: 4px;
    transform: rotate(0);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: #0c0c0c;
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(0);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_minus span::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: #dddddd;
    position: absolute;
    top: 6px;
    right: 0;
    transform: rotate(0);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::before {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #727272;
    position: absolute;
    top: 0;
    right: 5px;
    transform: rotate(-45deg);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #727272;
    position: absolute;
    top: 0;
    right: 5px;
    transform: rotate(45deg);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 {
    margin-left: auto;
    position: static;
    width: 100px;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    position: static;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group > div.input-group-btn.it_del {
    position: static;
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group > div.input-group-btn.it_del {
        width: 0;
    }
}
.mod_option_wrap .option_form #it_sel_option .row .plus_group {
    width: 33px;
}
.mod_option_wrap .option_form #it_sel_option .row .input_group {
    width: calc(100% - 66px);
}
.mod_option_wrap .option_form #it_sel_option .row > .input_group {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}
.mod_option_wrap .option_form #it_sel_option .row > .input_group .option_group + .option_group {
    margin-top: 15px;
}
.mod_option_wrap .option_form #it_sel_option .row .input_group input {
    padding: 0;
    height: 36px;
    line-height: 34px;
    border: 0;
    box-shadow: 0 0 0;
    text-align: center;
    font-size: 14px;
    color: #0c0c0c;
    font-weight: 600;
}
.mod_option_wrap .option_form #it_sel_option .row .it_group {
    width: auto;
    display: flex;
    align-items: center;
}
.mod_option_wrap .option_form #it_sel_option .row .del_group {
    position: absolute;
    top: 10px;
    right: 13px;
    width: 30px;
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form #it_sel_option .row .del_group {
        top: 8px;
        right: 6px;
    }
}
.mod_option_wrap .option_form #it_sel_option .row .op_tt {
    padding-bottom: 10px;
    width: calc(100% - 40px);
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form #it_sel_option .row .op_tt {
        padding-bottom: 0;
    }
}
.mod_option_wrap .option_form #it_sel_option .row .op_tt label {
    display: flex;
    font-size: 14px;
    color: #0c0c0c;
}
.mod_option_wrap .option_form #it_sel_option .row span.it_opt_subj {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 70%;
}
.mod_option_wrap .option_form #it_sel_option .row .del_group.input-group-btn .it_opt_del {
    background-color: transparent;
}
.mod_option_wrap .option_form #it_sel_option .row .it_group button.it_opt_del {
    margin-left: 14px;
    border: 0;
    background: #f3f3f3;
    position: absolute;
    top: 10px;
    right: 13px;
    background-color: transparent;
    z-index: 10;
}
@media (max-width: 991px) {
    .mod_option_wrap .option_form #it_sel_option .row .it_group button.it_opt_del {
        top: 8px;
        right: 6px;
    }
}
.mod_option_wrap .option_form .tot_price {
    font-size: 16px;
    color: #0c0c0c;
    font-weight: 600;
    text-align: right;
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1em;
}
.mod_option_wrap .option_form .tot_price div {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    top: -1px;
}
.mod_option_wrap * {
    scrollbar-3dlight-color: #fff;
    scrollbar-base-color: #fff;
    scrollbar-face-color: #fff;
    scrollbar-track-color: #f0f0f0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-highlight-color: #fff;
}
.mod_option_wrap ::-webkit-scrollbar {
    background: #fff;
    width: 6px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.mod_option_wrap *::-webkit-scrollbar {
    background: #fff;
    width: 5px;
    float: left;
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
}
.mod_option_wrap ::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.mod_option_wrap *::-webkit-scrollbar-button:start:decrement {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.mod_option_wrap ::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.mod_option_wrap *::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    background: #fff;
    background-position: center;
}
.mod_option_wrap ::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.mod_option_wrap *::-webkit-scrollbar-button {
    background: transparent;
    color: #fff;
}
.mod_option_wrap ::-webkit-scrollbar-track {
    background: #fff;
}
.mod_option_wrap *::-webkit-scrollbar-track {
    background: #fff;
}
.mod_option_wrap ::-webkit-scrollbar-track {
    width: 5px;
    background: #dbdbdb;
    border-radius: 10px;
}
.mod_option_wrap ::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #dbdbdb;
    border-radius: 10px;
}
.mod_option_wrap *::-webkit-scrollbar-thumb {
    height: 50px;
    width: 5px;
    background: #dbdbdb;
    border-radius: 10px;
}
/* 2024-07-25 (주)파이브센스_FIVESENSES.Corp */
.mod_option_wrap .option_body .op_warp {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.mod_option_wrap .option_body .option_name {
    position: relative;
    margin-bottom: 15px;
}
.mod_option_wrap .option_body .option_name > label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}
.mod_option_wrap .option_body .op_warp input[type="radio"].it_option {
    display: none;
}
.mod_option_wrap .option_body .op_warp label {
    margin-bottom: 5px;
    min-width: calc(33% - 5px);
    color: #777;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4em;
    border: 1px solid #eeeeee;
    margin-right: 2.5px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    word-break: break-all;
    height: 100%;
    border-radius: 2px;
}
.mod_option_wrap .option_body .op_warp label:hover {
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}
.mod_option_wrap .option_body .op_warp input[disabled] + label {
    cursor: not-allowed;
}
.mod_option_wrap .option_body .op_warp input:checked + label {
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}

.mod_option_wrap .it_opt_list .option_li {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.mod_option_wrap .it_opt_list .option_name {
    position: relative;
    margin-bottom: 15px;
}
.mod_option_wrap .it_opt_list .option_name > label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}
.mod_option_wrap .it_opt_list .option_li div {
    margin-bottom: 5px;
    flex: 1;
    min-width: calc(33% - 5px);
}
.mod_option_wrap .it_opt_list .option_li input[type="radio"].it_custom {
    display: none;
}
.mod_option_wrap .it_opt_list .option_li label {
    margin-bottom: 5px;
    width: 100%;
    color: var(--main-box-font-color3);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4em;
    border: 1px solid #f2f2f2;
    margin-right: 2.5px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    word-break: break-all;
    height: 100%;
    border-radius: 2px;
}
.mod_option_wrap .it_opt_list .option_li label:hover {
    color: var(--main-btn-font-color);
    border: 1px solid var(--main-btn-line-color);
}
.mod_option_wrap .it_opt_list .option_li input[disabled] + label {
    cursor: not-allowed;
}
.mod_option_wrap .it_opt_list .option_li input:checked + label {
    color: var(--main-btn-font-color);
    border: 1px solid var(--main-btn-line-color);
}

.mod_option_wrap .option_list_box .td_sit_sel {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.mod_option_wrap .option_list_box .option_radio + .option_radio {
    margin-top: 20px;
}
.mod_option_wrap .option_list_box .option_name {
    position: relative;
    margin-bottom: 15px;
}
.mod_option_wrap .option_list_box .option_name > label {
    font-size: 14px;
    font-weight: 500;
    color: #5d5d5d;
}
.mod_option_wrap .option_list_box .td_sit_sel div {
    margin-bottom: 5px;
    min-width: calc(33% - 5px);
}
.mod_option_wrap .option_list_box .td_sit_sel input[type="radio"].it_supply {
    display: none;
}
.mod_option_wrap .option_list_box .td_sit_sel label {
    margin-bottom: 5px;
    width: 100%;
    color: var(--main-box-font-color3);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4em;
    border: 1px solid #eeeeee;
    margin-right: 5px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    word-break: break-all;
    height: 100%;
    border-radius: 2px;
}
.mod_option_wrap .option_list_box .td_sit_sel label:hover {
    color: var(--main-btn-font-color);
    border: 1px solid var(--main-btn-line-color);
}
.mod_option_wrap .option_list_box .td_sit_sel input[disabled] + label {
    cursor: not-allowed;
}
.mod_option_wrap .option_list_box .td_sit_sel input:checked + label {
    color: var(--main-btn-font-color);
    border: 1px solid var(--main-btn-line-color);
}

@media (max-width: 991px) {
    .mod_option_wrap {
        top: unset;
        bottom: -100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }
    .mod_option_wrap .modal_bg {
        background: #222;
        opacity: 0.7;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 50;
        display: none;
    }
    .mod_option_wrap.mob {
        display: block;
        bottom: 0;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }
    .mod_option_wrap .modal-dialog {
        margin: 0;
        transform: translate3d(0, 0, 0) !important;
    }
    .mod_option_wrap .modal-content {
        border-radius: 10px 10px 0 0;
        box-shadow: -4px -16px 98px 0 rgba(0, 0, 0, 0.06);
    }
    .mod_option_wrap .option_form #mod_option_btn {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #e6e6e6;
        border-radius: 2px;
        width: 40px;
        height: 4px;
    }
    .mod_option_wrap .option_form .modal_it_name p {
        font-size: 16px;
    }
    .mod_option_wrap .option_form .modal_it_name p.it_sub_name {
        font-size: 11.5px;
    }
    .mod_option_wrap .option_form .option_close {
        width: 15px;
        height: 15px;
        right: 15px;
        top: 20px;
    }
    .mod_option_wrap .option_form .option_close span {
        position: relative;
    }
    .mod_option_wrap .option_form .option_close span::before {
        height: 20px;
    }
    .mod_option_wrap .option_form .option_close span::after {
        height: 20px;
    }
    .mod_option_wrap .option_form .option_tit {
        font-size: 14px;
    }
    .mod_option_wrap .option_form .option_list_box .option_sel .option_name {
        font-size: 15px;
        line-height: 35px;
        width: 110px;
    }
    .mod_option_wrap .option_form .option_list_box .option_sel select {
        height: 40px;
        line-height: 38px;
        padding: 0 15px;
        font-size: 15px;
        background: url(../img/mmoption_arrow.png) no-repeat right 12.5px center;
        background-size: 9px 5px;
        border-radius: 2.5px !important;
    }
    .mod_option_wrap .option_form #it_sel_option {
        margin-top: 40px;
    }
    .mod_option_wrap .option_form #it_sel_option #it_opt_added li {
        margin-bottom: 15px;
    }
    .mod_option_wrap .option_form #it_sel_option .row {
        padding: 15px 17px 18px 20px;
        border-radius: 2.5px;
    }
    .mod_option_wrap .option_form #it_sel_option .row span {
        font-size: 15px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button {
        width: 30px;
        height: 30px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-7 {
        padding-top: 10px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 {
        padding-top: 20px;
        margin: 0;
    }
    .mod_option_wrap .option_form #it_sel_option .row .plus_group {
        width: 30px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .input_group {
        width: calc(100% - 60px);
    }
    .mod_option_wrap .option_form #it_sel_option .row > .input_group {
        width: 100%;
    }
    .mod_option_wrap .option_form #it_sel_option .row .input_group input {
        height: 30px;
        line-height: 28px;
        font-size: 13.5px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .it_group {
        width: 30px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .it_group button.it_opt_del {
        margin-left: 8px;
    }
    .mod_option_wrap .option_form .tot_price {
        font-size: 17px;
        margin-bottom: 25px;
    }
    .mod_option_wrap .option_form .tot_price div {
        font-size: 19px;
    }
    .mod_option_wrap .option_form .change_btn button {
        height: 45px;
        line-height: 43px;
        font-size: 15px;
        border-radius: 3px !important;
    }
    /* 2024-09-02 (주)파이브센스_FIVESENSES.Corp. */
    .mod_option_wrap .it_opt_list .option_name > label {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .mod_option_wrap .option_form .option_close {
        top: 15px;
    }
    .mod_option_wrap .modal-content .modal_body form .padding_b.modal_it_name {
        margin-bottom: 20px;
    }
    .mod_option_wrap .option_form .modal_it_name p {
        font-size: 15px;
    }
    .mod_option_wrap .option_form .option_tit {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .mod_option_wrap .option_form .option_tit.option02_box {
        margin-top: 20px;
    }
    .mod_option_wrap .option_form .option_list_box .option_sel .option_name {
        font-size: 14px;
        margin-bottom: 0px;
    }
    .mod_option_wrap .option_form .option_list_box .option_sel select {
        height: 35px;
        line-height: 33px;
        font-size: 13px;
    }
    .mod_option_wrap .option_form #it_sel_option {
        margin-top: 12px;
    }
    .mod_option_wrap .option_form #it_sel_option .row span {
        font-size: 13px;
        font-weight: 400;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 {
        padding: 10px 0 0;
        width: 93.5px;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button span {
        width: 10px !important;
        height: 10px !important;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::before {
        right: 3.55px;
        top: 0;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::after {
        bottom: 3.55px;
        top: initial;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::before {
        height: 11px;
        right: 3.55px;
        background: #666;
    }
    .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::after {
        height: 11px;
        right: 3.55px;
        background: #666;
    }
    .mod_option_wrap .option_form .tot_price {
        margin-bottom: 14px;
    }
    .mod_option_wrap .option_form .change_btn button {
        height: 46px;
        line-height: 44px;
    }
}

/*상품리스트페이지 categey html > skin > apms > list > miso-baisc4 > category.skin.php */
.fix_category {
    width: 100%;
}
.fix_category .list_category_ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 70px;
    text-align: center;
    list-style: none;
}
.fix_category .list_category_ul > li {
    width: auto;
    margin: 5px;
}
.fix_category .list_category_ul > li > a {
    display: inline-block;
    width: 100%;
    min-width: 65px;
    height: 36px;
    padding: 0 20px;
    border: none;
    border-radius: 20px;
    text-align: center;
    line-height: 37px;
    font-size: 14px;
    font-weight: 500;
    color: #5d5d5d;
    background-color: #f3f3f6;
    overflow: hidden;
}
.fix_category .list_category_ul > li.active > a {
    border: none;
    color: #fff;
    background-color: var(--main-btn-point-color);
}
.fix_category .list_category_ul > li.active {
    position: relative;
    z-index: 2;
}
.fix_category .list_sort {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 40px;
    display: inline-block;
}
.fix_category .list_sort .left_sort {
    float: left;
    color: var(--main-box-font-color);
    font-size: 14px;
}
.fix_category .list_sort .left_sort span {
    color: var(--main-box-font-color);
    font-size: 14px;
    font-weight: 600;
}
.fix_category .list_sort .right_sort {
    float: right;
}
.fix_category .list_sort .right_sort > a {
    color: var(--main-btn-font-color3);
    font-size: 14px;
    padding: 0 8px;
    position: relative;
    line-height: 1em;
}
.fix_category .list_sort .right_sort > a:first-child {
    padding: 0 8px 0 0;
}
.fix_category .list_sort .right_sort > a:last-child {
    padding: 0 0 0 8px;
}
.fix_category .list_sort .right_sort > a::before {
    content: "";
    background-color: #dcdcdc;
    width: 1px;
    height: 13px;
    position: absolute;
    top: 53%;
    left: -2px;
    transform: translateY(-50%);
}
.fix_category .list_sort .right_sort > a:first-child::before {
    display: none;
}
.fix_category .list_sort .right_sort > a.on {
    font-weight: 600;
}

@media (max-width: 991px) {
    .fix_category {
        margin-top: 30px;
    }
    .fix_category .list_category {
        margin-bottom: 15px;
    }
    .fix_category.filter_category .list_category {
        margin-bottom: 0;
    }
    .fix_category .list_sort {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 17.5px;
    }
    .fix_category .list_sort .left_sort {
        margin-bottom: 0;
        font-size: 12px;
    }
    .fix_category .list_sort .left_sort span {
        font-size: 12px;
    }
    .fix_category .list_sort::after,
    .fix_category .list_sort::before {
        display: none;
    }
    .fix_category .list_sort .right_sort {
        font-size: 12px;
    }
    .fix_category .sort_box {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        z-index: 1000;
    }
    .fix_category .list_sort .right_sort > a {
        font-size: 12px;
    }
    .fix_category .list_sort .right_sort > a:first-child {
        padding: 0 5px 0 0;
    }
    .fix_category .list_sort .right_sort > a:last-child {
        padding: 0 0 0 5px;
    }
    .fix_category .sort_box_bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0c0c0c;
        opacity: 0.6;
    }
    .fix_category .sort_cont {
        background-color: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 15px 15px 0 0;
        padding: 41.5px 15px 15px;
    }
    .fix_category .dropdown #sortLabel {
        padding: 0 0 0 11.5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--main-box-font-color2) !important;
        font-size: 13px;
        font-weight: 400;
        background-color: transparent;
        border: none;
    }
    .fix_category .dropdown .caret {
        width: 9.5px;
        height: 5.5px;
        border: none;
        position: relative;
        margin-left: 7px;
    }
    .fix_category .dropdown .caret::before {
        content: "";
        display: block;
        width: 6.5px;
        height: 6.5px;
        border-left: 1px solid var(--main-box-font-color2);
        border-bottom: 1px solid var(--main-box-font-color2);
        position: absolute;
        top: -2px;
        left: -1px;
        transform: rotate(-45deg);
    }
    /* .fix_category .dropdown .caret::after{content: ''; display: block; width: 6.5px; height: 1px; background-color: #666666; position: absolute; top: 50%; left: 4px; transform: translateY(-50%) rotate(-45deg);} */

    .fix_category .dropdown .sort_btn {
        margin-top: 15px;
        display: block;
        text-align: center;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        width: 100%;
        background-color: var(--main-btn-point-color);
        border-radius: 2.5px;
        line-height: 40px;
        border: none;
    }
    .fix_category .dropdown .close_btn {
        display: block;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .fix_category .dropdown .close_btn::before {
        content: "";
        display: block;
        width: 15.5px;
        height: 1px;
        background-color: #666666;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .fix_category .dropdown .close_btn::after {
        content: "";
        display: block;
        width: 15.5px;
        height: 1px;
        background-color: #666666;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .fix_category .dropdown .sort-menu li {
        text-align: center;
        color: #5d5d5d;
        font-size: 13px;
        font-weight: 400;
        line-height: 38px;
    }
    .fix_category .dropdown .sort-menu li input {
        display: none;
    }
    .fix_category .dropdown .sort-menu li input + label {
        width: 100%;
        cursor: pointer;
    }
    .fix_category .dropdown .sort-menu li input:checked + label {
        color: var(--main-btn-font-color);
        font-weight: 500;
        background-color: #f9f9f9;
    }
    .list_sort .dropdown-backdrop {
        display: none !important;
    }
}
.item_sticker {
    height: 19px;
    border-radius: 3px;
    padding: 0 5px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    line-height: 19px;
    background-color: #000;
    color: #fff;
    margin-top: 9px;
    display: inline-block;
    margin-right: 5px;
}
.item_sticker:last-child {
    margin-right: 0;
}
.item_sticker.best {
    color: #ff4e1f;
    background: rgba(255, 78, 31, 0.1);
}
.item_sticker.new {
    color: #f83249;
    background: rgba(248, 50, 73, 0.1);
}
.item_sticker.discount {
    color: #f83249;
    background: rgba(248, 50, 73, 0.1);
}
.item_sticker.hit {
    color: #f83249;
    background: rgba(248, 50, 73, 0.1);
}
.item_sticker.rec {
    color: #1d32ff;
    background: rgba(29, 50, 255, 0.1);
}
.item_sticker.coupon {
    background: #000;
}
.item_sticker.free_shupping {
    color: #9d9d9d;
    background: rgba(157, 157, 157, 0.1);
    margin-right: 5px;
}

@media (max-width: 991px) {
    .sub_text.ca_it_mb {
        margin-top: 35px;
        margin-bottom: 30px;
    }
    .sub_text h1 .ca_tit {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .sub_text.ca_it_mb {
        margin-bottom: 20px;
    }
    .sub_text h1 .ca_tit {
        font-size: 19px;
    }
}

/* Image Scale */
.item-col .wr-img,
.post-col .wr-img {
    transition: all 0.2s ease-in-out;
}
.item-col:hover .wr-img,
.post-col:hover .wr-img {
    transform: scale(1.15);
}

/* 페이지네이션 */

@media (max-width: 991px) {
    .at-content.type_cont .list-page {
        padding-bottom: 15px;
    }
}

/* 서브 페이지 경로 */
.sub_navigation {
    margin: 30px auto 0;
}
.sub_navigation .container_fix {
    display: flex;
    align-items: center;
    padding: 0;
}
.sub_navigation .sub_navi_icon span {
    color: var(--main-btn-font-color4);
    font-size: 14px;
    line-height: 1em;
}
.sub_navigation .sub_navi_icon span.sign {
    margin: 0 5px;
}

/* 게시판 view */
.view_style .view_title .view_subject {
    font-weight: 500;
    font-size: 18px;
    color: var(--main-box-font-color);
}

.view_style .view_title .view_info > span {
    display: inline-block;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--main-box-font-color2);
}

.view_style .view-padding .view-content {
    min-height: 100px;
}

.responsive .view-comment {
    display: block;
    padding-bottom: 20px;
    font-size: 16px;
}

.view_style .comment-box {
    border: 0;
}

/* 댓글 작성, 등록 폼 */
.view_style .comment-box .comment-content {
    display: block;
}

.view_style .comment-box .comment-content:after {
    display: block;
    content: "";
    clear: both;
}

.view_style .comment-box .comment-content .comment-cell {
    display: block;
    float: left;
}

.view_style .comment-box .comment-content .comment-cell textarea {
    border: 1px solid #e5e5e5;
    box-shadow: none;
}

.view_style .comment-box .comment-content .comment-cell.comment-submit {
    border: 0;
    color: #fff;
}

/* 2024-09-19 (주)파이브센스_FIVESENSES.Corp. */
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
게시판 html > skin > basic > list > basic 스킨
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

.sort_btn.btn {
    font-size: 13px;
    padding: 4px 11px;
}

@media (max-width: 991px) {
    .sort_btn.btn {
        font-size: 13px;
        padding: 3px 10px;
    }
}
