@charset "utf-8";
#main .bg_box {
    background: url('/img/login_bg.jpg') no-repeat center /cover;
    height: 100vh;
}

#main .bg_box .login_box {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    padding: 100px;
    max-width: 640px;
    width: 100%;
    box-sizing: border-box;
    background-color: #cccccc;
    border-radius: 30px;
}

#main .bg_box .login_box h1 {
    text-align: center;
    margin: 0;
}

#main .bg_box .login_box h1 a {
    display: block;
    font-size: 60px;
    font-weight: 700;
    line-height: 2.142em;
    color: #222;
}

#main .bg_box .login_box form>div {
    width: 100%;
}

#main .bg_box .login_box form .sub_tit_box {
    text-align: center;
}

#main .bg_box .login_box form .sub_tit_box p {
    font-size: 18px;
    color: #444;
    line-height: 1.555em;
    letter-spacing: -0.025em;
}

#main .bg_box .login_box form .form {
    border: 1px solid #dbdbdb;
    border-radius: 60px;
    padding: 8px 25px;
    box-sizing: border-box;
    margin-bottom: 10px;
    height: 70px;
    background-color: #fff;
}

#main .bg_box .login_box form .form label {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
}

#main .bg_box .login_box form .form label input {
    border: none;
    padding: 0;
    width: 100%;
}

#main .bg_box .login_box form .form input.on {
    color: #444;
}

#main .bg_box .login_box form .form.on {
    border: 2px solid #222;
}

#main .bg_box .login_box form .form label input:focus {
    outline: none;
}

#main .bg_box .login_box form .form label input::placeholder {
    color: #aaa;
    font-size: 16px;
    line-height: 1.625em;
}

#main .remember label {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

#main .bg_box .login_box form .form input:focus {
    color: #444;
}

#main .remember input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    cursor: pointer;
}

#main .remember i {
    width: 20px;
    height: 20px;
    background: url('/img/login_check_icon.png') no-repeat center / cover;

}

#main .remember input[type="checkbox"]:checked+i {
    background: url('/img/login_check_icon_on.png') no-repeat center / cover;
}

#main .remember label {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    cursor: pointer;
}

#main .submit_box {
    border-radius: 35px;
    background-color: #222;
    color: #fff;
    text-align: center;
}

#main .write_box {
    margin-top: 10px;
}

#main .submit_box a {
    display: block;
    padding: 20px 0;
    box-sizing: border-box;
}

#main .submit_box a:hover {
    font-weight: 700;
    color: #fff;
}
 @media all and (max-width:768px) {
    #main .bg_box .login_box {
        padding: 50px;
    }

    #main .bg_box .login_box {
        max-width: 93.75%;
        width: 600px;
    }

    #main .bg_box .login_box form .sub_tit_box p {
        font-size: 16px;
    }
} 

/*ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ

 * 리스트 페이지 *
    
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ*/

.list_page .brand_wrap {
    padding: 120px 0 150px 0;
    box-sizing: border-box;
}

.list_page .brand_wrap .tab {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 100px;
    border-bottom: 1px solid #666;
    margin-bottom: 10px;
    flex-wrap: wrap;
    overflow: auto;
}
.list_page .brand_wrap .tab li {
    width: calc(16.6666% - 8.3333px);
    float: unset;
} 

.list_page .brand_wrap .tab li a {
    height:auto;
    display: block;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: -0.025em;
    color: #666;
    background-color: #eeeeee;
    border: unset;
    border-radius: 30px;
}

.list_page .brand_wrap .tab li.on a {
    color: #fff;
    background-color: #222;
}

.list_page .brand_wrap .prd_list_wrap {
    margin-top: 60px;
}

.list_page .brand_wrap .filter_box ul { 
    display: flex;
    gap: 20px;
}

.list_page .brand_wrap .filter_box ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.list_page .brand_wrap .filter_box ul li::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 1px;
    height: 100%;
    background-color: #ccc;
}
.list_page .brand_wrap .filter_box ul li:last-child::before {
    content:none;
}

.list_page .brand_wrap .filter_box ul li i {
  display: none;
    width: 13px;
    height: 10px;
}
.list_page .brand_wrap .filter_box ul li a {
    display: block;
    font-size: 18px;
    color: #888;
    line-height: 1.555em;
    letter-spacing: -0.025em;
}

.list_page .brand_wrap .filter_box ul li.on i {
    display: block;
}

.list_page .brand_wrap .filter_box ul li.on a {
    color: #444;
    font-weight: 500;
}

.list_page .brand_wrap .prd_list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    /* padding-top: 60px; */
}

.list_page .brand_wrap .prd_list li {
    width: calc(25% - 30px);
    margin-right: unset;
    margin-bottom: unset;
    float:unset;
}

.list_page .brand_wrap .prd_list li>a {
    border: 1px solid #dbdbdb;
    max-width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_page .brand_wrap .prd_list>li img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
    max-width: 100%;
}

.list_page .brand_wrap .prd_item_group {
    border: unset;
    /* overflow: auto; */
}

.list_page .brand_wrap .prd_img {
    display: none;
}

.brand_wrap .prd_item_group a {
    float: unset;
}

.brand_wrap .prd_item_group a+a {
    margin-left: 0;
}

.list_page .brand_wrap .prd_info {
    text-align: center;
}

.list_page .brand_wrap .prd_name {
    font-size: 22px;
    line-height: 1.2727em;
    color: #444;
    font-weight: 600;
    height: auto;
    margin-bottom: 20px;
}

.list_page .brand_wrap .qual {
    font-size: 18px;
    color: #666;
    line-height: 1.555em;
    letter-spacing: -0.025em;
    margin-bottom: 30px;    font-size: 18px;
    color: #666;
    line-height: 1.555em;
    letter-spacing: -0.025em;
    margin-bottom: 30px;
}

.list_page .brand_wrap .prd_price {
    font-size: 18px;
    color: #666;
    line-height: 1.555em;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.list_page .brand_wrap .prd_price strong {
    font-size: 24px;
    font-weight: 700;
    color: #222 !important;
}

.list_page .brand_wrap .save_money {
    border-bottom:1px solid #dbdbdb;
    padding-bottom: 30px;
}
.list_page .brand_wrap .save_money p{
    font-size: 16px;
    color: #666;
    line-height: 1.75em;
}

.list_page .brand_wrap .count_box {
    padding: 15px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.list_page .brand_wrap .count_box .count {
    display: flex;
    gap: 20px;
    align-items: center;
}

.list_page .brand_wrap .count_box .count .count-number {
    font-size: 18px;
    color: #444;
    line-height: 1.555em;
    letter-spacing: -0.025em;
}

.list_page .brand_wrap .buy_box {
    display: flex;
}

.list_page .brand_wrap .buy_box > div{
    width: 50%;
}

.list_page .brand_wrap .buy_box>div a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5555em;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.list_page .brand_wrap .buy_box .left_box {
    background-color: #666666;
}
.list_page .brand_wrap .buy_box .right_box {
    background-color: #222;
}


@media all and (max-width:1000px) {
    .list_page .brand_wrap .prd_list li {
        width: calc(50% - 20px);
    }
    .list_page .brand_wrap .tab li a {
        font-size: 16px;
    }
}

@media all and (max-width:768px) {
    .list_page .brand_wrap .prd_list li {
        width:100%; 
    }
    .list_page .brand_wrap .prd_list li>a {
        max-width: unset;
        aspect-ratio: 9/9.533;
        text-align: center;
    }
    .list_page .brand_wrap .tab li {
        width: calc(33.3333% - 6.666px);
    }
    .list_page .brand_wrap .prd_name {
        font-size: 18px;
    }
    .list_page .brand_wrap .qual {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .list_page .brand_wrap .prd_price strong {
        font-size: 20px;
    }
    .list_page .brand_wrap .buy_box>div a {
        font-size: 16px;
        padding: 10px 0;
    }
    .list_page .brand_wrap .filter_box ul li a {
        font-size: 16px;
    }
    .list_page .brand_wrap .save_money {
        padding-bottom: 10px;
    }
    .list_page .brand_wrap .prd_list_wrap {
        margin-top: 20px;
    }
}

/*----- 회원가입 -----*/
@media all and (max-width:768px) {
    .writeForm>table>tbody>tr>td {
        padding: 10px 5px;
    }
}

/*----- 쇼핑몰 - 장바구니 -----*/
/* 공통 */
h3.common {
    padding: 30px 0 28px;
    font-size: 20px;
    line-height: 24px;
    color: #111;
    font-weight: 400;
    letter-spacing: -1px;
}

.cart {
    padding: 40px 0;
}

.cart h3.common {
    padding-top: 0;
}

.cart .total_check {
    padding-bottom: 15px;
}

.cart .total_check:after {
    display: block;
    content: "";
    clear: both;
}

.cart .total_check span {
    display: inline-block;
    vertical-align: top;
}

.cart .total_check span input {}

.cart .total_check span label {
    display: inline-block;
    margin-top: -1px;
    padding: 1px 0 0 0;
    font-size: 14px;
    color: #4d4d4d;
    letter-spacing: 0;
}

.cart .total_check .all_del {
    float: right;
}

.cart .total_check .all_del a {
    font-size: 14px;
    color: #4d4d4d;
    display: inline-block;
    letter-spacing: -0.045em;
}

.cart .total_check .all_del a.print {
    padding: 10px 25px;
    border-radius: 24.5px;
    background: #1659a8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.045em;
    color: #fff;
    margin-right: 30px;
}

.cart .total_check .all_del a img {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    top: 2px;
    position: relative;
}

/* 리스트박스 */
.cart .cartlist_wrap:last-of-type {
    margin-bottom: 0;
}

.cart .cartlist_wrap {
    border: 1px solid #e1e1e1;
    padding: 20px;
    box-sizing: border-box;
    margin: 10px 0;
}

.cart .cartlist_wrap .cart_list {
    position: relative;
}

.cart .cartlist_wrap .cart_list a.cartlist_close_btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.cart .cartlist_wrap .cart_list a.cartlist_close_btn img {}

.cart .cartlist_wrap .cart_list .box {
    position: relative;
}

.cart .cartlist_wrap .cart_list .box .cl_title {
    padding-bottom: 15px;
}

.cart .cartlist_wrap .cart_list .box .cl_title input {
    display: inline-block;
    vertical-align: top;
}

.cart .cartlist_wrap .cart_list .box .cl_title label {
    display: inline-block;
    font-size: 14px;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart .cartlist_wrap .cart_list .box a {
    display: block;
    width: 70%;
}

.cart .cartlist_wrap .cart_list .box a:after {
    display: block;
    content: "";
    clear: both;
}

.cart .cartlist_wrap .cart_list .box a .cont_left {
    width: 80px;
    height: 85px;
    float: left;
    margin-right: 10px;
}

.cart .cartlist_wrap .cart_list .box a .cont_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cart .cartlist_wrap .cart_list .box a .cont_right {
    float: left;
}

.cart .cartlist_wrap .cart_list .box a .cont_right p:last-of-type {
    padding-bottom: 0;
}

.cart .cartlist_wrap .cart_list .box a .cont_right p {
    padding-bottom: 5px;
    font-size: 14px;
    color: #4d4d4d;
}

.cart .cartlist_wrap .cart_list .box a .cont_right p i {
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 12px;
    background-color: #c5c5c5;
    margin: 0 7px;
    margin-top: -2px;
}

.cart .cartlist_wrap .cart_list .box a .cont_right p b {
    font-weight: 800;
    font-size: 18px;
    color: #222;
}

.cart .cartlist_wrap .cart_list .box a .cont_right p.t03 {
    color: #444444
}

.cart .cartlist_wrap .cart_list .box .option_area {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 22;
    font-size: 0;
}

.cart .cartlist_wrap .cart_list .box .option_area a:last-of-type {
    margin-right: 0;
}

.cart .cartlist_wrap .cart_list .box .option_area a {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    height: 35px;
    font-size: 14px;
    color: #222;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    box-sizing: border-box;
}

.cart .cartlist_wrap .cart_list .box .option_area a.opt {
    color: #222;
    border: 1px solid #222;
}

.cart .cartlist_wrap .cart_list .box .option_area a.buy_btn {
    color: #444444;
    border: 1px solid #444444;
}

.cart .cartlist_wrap .cart_list .add_option .num_area {
    font-size: 0;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

.cart .cartlist_wrap .cart_list .add_option .num_area button {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
}

.cart .cartlist_wrap .cart_list .add_option .num_area button span {
    font-size: 14px;
}

.cart .cartlist_wrap .cart_list .add_option .num_area input {
    display: inline-block;
    vertical-align: top;
    width: 60px;
    height: 40px;
    font-size: 14px;
    text-align: center;
    color: #222;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
    border-right: 0;
    border-left: 0;
}

.cart .cartlist_wrap .cart_list .add_option.view {
    display: block;
    margin-top: 10px;
}

.cart .cartlist_wrap .cart_list .add_option {
    background-color: #f0f0f0;
    position: relative;
    padding: 20px;
    display: none;
}

.cart .cartlist_wrap .cart_list .add_option select {
    width: 150px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    padding: 0 15px;
    background: #fff;
}

.cart .cartlist_wrap:after {
    display: block;
    content: "";
    clear: both;
}

.cart .cartlist_wrap .btn_wrap {
    float: right;
    font-size: 0;
    text-align: center;
}

.cart .cartlist_wrap .btn_wrap a:last-of-type {
    margin-right: 0;
}

.cart .cartlist_wrap .btn_wrap a {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    height: 40px;
    box-sizing: border-box;
    color: #222;
    border: 1px solid #ccc;
    line-height: 40px;
    font-size: 14px;
    background-color: #fff;
    margin-right: 5px;
}

.cart .cartlist_wrap .btn_wrap a.change {
    color: #444;
    border-color: #444;
}

/* 상품가격 */
.cart .product_info {
    padding-top: 20px;
}

.cart .product_info p:after {
    display: block;
    content: "";
    clear: both;
}

.cart .product_info p:first-of-type {
    padding-top: 0;
}

.cart .product_info p {
    padding-top: 5px;
}

.cart .product_info p span {
    display: block;
}

.cart .product_info p span.p_left {
    float: left;
    font-size: 14px;
    color: #444;
}

.cart .product_info p span.p_right {
    float: right;
    font-size: 18px;
    font-size: 14px;
    color: #444;
}

.cart .product_info p span.p_right b {
    font-weight: 800;
    color: #000;
    font-size: 18px;
}

.cart .product_info p.all_price {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e1e1e1;
}

.cart .product_info p.all_price span {
    color: #444444;
}

.cart .product_info p.all_price span.p_left {
    font-weight: 800;
    font-size: 14px;
}

.cart .product_info p.all_price span.p_right b {
    color: #444444;
    font-weight: 800px;
    font-size: 20px;
}

.cart .help_txt {
    padding-top: 30px;
}

.cart .help_txt p:after {
    display: block;
    content: "";
    clear: both;
}

.cart .help_txt p:last-of-type {
    padding-bottom: 0;
}

.cart .help_txt p {
    color: #444;
    padding-bottom: 5px;
    word-break: keep-all;
    font-size: 14px;
}

.cart .help_txt p span {
    float: left;
    height: 15px;
}

.product_btn_wrap {
    font-size: 0;
    text-align: center;
    padding-top: 30px;
}

.product_btn_wrap a:first-of-type {
    margin-right: 2%;
}

.product_btn_wrap a {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    box-sizing: border-box;
}

a.btn_type01 {
    background-color: #fff;
    color: #444444;
    border: 1px solid #444444;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
}

a.btn_type02 {
    background-color: #444444;
    color: #fff;
    border-color: #444444;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
}

/* 장바구니 팝업 */
.cart_popup_bg {
    display: none;
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cart_popup_bg.on {
    display: block;
}

.cart_popup {
    display: none;
    z-index: 101;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 600px;
    max-width: 90%;
    max-height: 620px;
    margin: auto;
    padding: 80px 30px;
    border: 1px solid #bbbbbb;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cart_popup.on {
    display: block;
}

.cart_popup i {
    display: block;
    margin-top: 100px;
}

.cart_popup i img {
    max-width: 100%;
}

.cart_popup p.desc {
    margin-top: 0;
    font-size: 20px;
    color: #444444;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: -0.025em;
}

.cart_popup p.txt {
    margin-top: 35px;
    font-size: 18px;
    font-weight: bold;
    color: #222222;
    letter-spacing: -0.025em;
}

.cart_popup .btn_wrap.pink_type {
    padding-top: 70px;
}

@media all and (max-width: 767px) {
    .cart {
        padding: 96px 0 60px;
    }

    .cart .cartlist_wrap .cart_list .add_option select {
        width: 100%;
        margin-bottom: 5px;
    }

    .cart .cartlist_wrap .btn_wrap {
        width: 100%;
        float: none;
        padding-top: 10px;
    }

    .cart .cartlist_wrap .cart_list .box {
        padding-bottom: 0;
    }

    .cart .cartlist_wrap .cart_list .box .cl_title label {
        width: 90%;
    }

    .cart .cartlist_wrap .cart_list .box a {
        width: 100%;
    }

    .cart .cartlist_wrap .cart_list .box .option_area {
        position: static;
        right: auto;
        bottom: auto;
        margin: 10px 0 0;
    }

    .cart_popup {
        padding: 40px
    }

    .cart_popup p.desc {
        word-break: keep-all
    }

    .cart_popup i {
        margin-top: 50px
    }

    .cart_popup i img {
        max-width: 140px
    }

    .cart_popup .btn_wrap.pink_type {
        padding-top: 40px;
    }
}

/*----- print -----*/
#estimate_print {
    display: none;
}

.estimate_print {}

.estimate_print * {
    -ms-print-color-adjust: exact;
}

.estimate_print .box {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
    page-break-inside: auto;
    page-break-inside: avoid;
}

.estimate_print .box h1 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #212121 !important;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.estimate_print .box h1:before {
    content: '';
    position: absolute;
    width: 100%;
    heighT: 2px;
    left: 0;
    bottom: 0;
    background: url('/img/print_line.png') no-repeat center / cover;
}

.estimate_print .box .top {
    padding-top: 40px;
}

.estimate_print .box .mid {
    padding-top: 40px;
}

.estimate_print .box .bot {
    padding-top: 40px;
}

.estimate_print .box table {
    width: 100%;
    border: 1px solid #dddddd !important;
}

.estimate_print .box table tr {
    border-bottom: 1px solid #dddddd !important;
}

.estimate_print .box table tr:last-of-type {
    border-bottom: 0;
}

.estimate_print .box table tr th {
    padding: 10px 5px;
    box-sizing: border-box;
    background: #e67f11 !important;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.025em;
    color: #fff !important
}

.estimate_print .box table tr td {
    padding: 10px 5px;
    box-sizing: border-box;
    background: #fff !important;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: #444444 !important;
}

.estimate_print .box table tr:nth-of-type(even) td {
    background: #f5f5f5 !important;
}

.estimate_print .box .mid table tr td {
    text-align: center;
}

.estimate_print .box .mid table tr td.right {
    text-align: right;
}

.estimate_print .box .bot table tr td {
    text-align: right;
}

.estimate_print .box .bot table {
    border: 0 !important;
}

.estimate_print .box .bot table tr {
    border-bottom: 0 !important;
}

.estimate_print .box .bot table tr th {
    border: 1px solid #dddddd !important;
    border-right: 0;
}

.estimate_print .box .bot table tr td:last-of-type {
    border: 1px solid #dddddd !important;
    border-left: 0;
}

@page {
    size: auto;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
}

@media print {
    .estimate_print {}

    .estimate_print * {
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box {
        width: 90%;
        margin: 0 auto;
        padding-top: 60px;
        page-break-inside: auto;
        page-break-inside: avoid;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box h1 {
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 0.2em;
        color: #212121 !important;
        text-align: center;
        padding-bottom: 20px;
        position: relative;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box h1:before {
        content: '';
        position: absolute;
        width: 100%;
        heighT: 2px;
        left: 0;
        bottom: 0;
        background: url('/img/print_line.png') no-repeat center / cover;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .top {
        padding-top: 40px;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .mid {
        padding-top: 40px;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .bot {
        padding-top: 40px;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box table {
        width: 100%;
        border: 1px solid #dddddd !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box table tr {
        border-bottom: 1px solid #dddddd !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box table tr:last-of-type {
        border-bottom: 0;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box table tr th {
        padding: 10px 5px;
        box-sizing: border-box;
        background: #e67f11 !important;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: -0.025em;
        color: #fff !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box table tr td {
        padding: 10px 5px;
        box-sizing: border-box;
        background: #fff !important;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: -0.025em;
        color: #444444 !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box table tr:nth-of-type(even) td {
        background: #f5f5f5 !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .mid table tr td {
        text-align: center;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .mid table tr td.right {
        text-align: right;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .bot table tr td {
        text-align: right;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .bot table {
        border: 0 !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .bot table tr {
        border-bottom: 0 !important;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .bot table tr th {
        border: 1px solid #dddddd !important;
        border-right: 0;
        -ms-print-color-adjust: exact;
    }

    .estimate_print .box .bot table tr td:last-of-type {
        border: 1px solid #dddddd !important;
        border-left: 0;
        -ms-print-color-adjust: exact;
    }
}

/* 문의하기 */
.notice .writeForm>table {
    border-top: 1px solid #e1e3e4;
}

/* 마이페이지 */
.my_page .mypage .inner .myzone_wrap .myzone_info .my_rating {
    background-color: #222;
    text-align: center;
}

.my_page .programPage a.active {
    color: #222;
    border-color: #222;
}

.my_page  .mypage .inner .myzone_wrap .lately .lat_list ul li .list_option .option_txt h5 {
    color: #222;
}

/* 장바구니 */
.cart_wrapper .cart {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.cart_wrapper .cart .cartlist_wrap {
    margin: 0;
}

.cart .total_check .all_del a.print {
    background: #222;
}

.checkbox_type01 input[type="checkbox"]:checked+label:before {
    background: url('/img/list_check_icon.png') no-repeat center center;
    border: 1px solid #222;
    top: 2px;
}

@media all and (max-width:1024px) {
    .cart .ro {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cart .ro>div {
        width: calc(33.33% - 6.666px);
    }

    .cart .cartlist_wrap .cart_list .box .option_area {
        display: flex;
        position: unset;
        margin-top:10px;
    }
}

@media all and (max-width:768px) {
    .cart .ro > div {
        width: 100%;
    }
}

/* 주문페이지 */
.order {
    max-width: 1400px;
    width: 100%;
}

@media all and (max-width:1024px) { 
    .order {
        width: 93.75%;
    }
}