@charset "UTF-8";


/* 장바구니 상단 */
.cart-top {
    position: relative;
    background-color: #fff;
}

.cart-top h2.cart-order-tit {
    position: relative;
    font-size: 20px;
}

.cart-top h2.cart-order-tit em {
    font-family: 'IBMPlexSansKR-Bold';
    font-size: 40px;
}

.cart-top h2.cart-order-tit .step-guide {
    position: absolute;
    top: 15px;
    right: 0;
    font-size: 16px;
    color: #999;
}

.cart-top h2.cart-order-tit .step-guide strong {
    color: #212121;
}

.cart-top h2.cart-order-tit .step-guide span.arrow {
    display: inline-block;
    padding: 0 20px;
    color: #ccc;
}

.cart-top .choice-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.cart-top .choice-control .control-box .del-btn {
    background-color: #fff;
}

.cart-top .choice-control .control-box .del-btn span {
    display: inline-block;
    margin-right: 10px;
    color: #999;
}

.scrollOn .cart-top {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 4000;
    -moz-box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
}

@media screen and (min-width:639px) {  
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:1139px) {
    .cart-top {
        padding: 40px 40px 0;
    }

    .cart-top .choice-control {
        padding: 20px 0;
        margin-top: 20px;
        border-top: 1px solid #dcdcdc;
    }

    .scrollOn .cart-top {
        position: relative;
        top: auto;
        left: auto;
        -moz-box-shadow: 0px 3px 10px rgba(0,0,0,0.0);
        -webkit-box-shadow: 0px 3px 10px rgba(0,0,0,0.0);
        box-shadow: 0px 3px 10px rgba(0,0,0,0.0);
    }
}

@media screen and (min-width:1239px) {
    .cart-top {
        padding: 0px;
    }

    .scrollOn .cart-top {
        width: 1200px;
        padding: 0;
    }
}


/* 장바구니 리스트 */
.cart-list-box {
    position: relative;
    padding: 15px;
    background-color: #f4f4f4;
}

@media screen and (min-width:639px) {
    .cart-list-box {
        padding: 20px 40px;
    }
}

@media screen and (min-width:1139px) {
    .cart-list-box {
        padding: 40px;
    }
}

@media screen and (min-width:1239px) {
    .cart-list-box {
        padding: 60px 0;
    }
}


/* 장바구니 주문 */
.cart-order-price {
    position: relative;
    max-width: 800px;
    padding: 20px 15px;
    margin: 0 auto;
}

.cart-order-price .total-price-box h5 {
    margin-bottom: 10px;
    font-family: 'IBMPlexSansKR-Bold';
    font-size: 20px;
}

.cart-order-price .total-price-box dl {
    display: table;
    width: 100%;
}

.cart-order-price .total-price-box dl dt,
.cart-order-price .total-price-box dl dd {
    display: table-cell;
    padding: 5px 0;
    vertical-align: middle;
}

.cart-order-price .total-price-box dl dt {
    width: 100px;
}

.cart-order-price .total-price-box dl dd {
    text-align: right;
}

.cart-order-price .total-price-box dl dd strong {
    font-size: 20px;
    font-family: 'IBMPlexSansKR-Bold';
}

.cart-order-price .total-price-box dl.pv dd strong {
    font-size: 16px;
}

.cart-order-price .total-price-box dl dd span {
    display: inline-block;
    width: 25px;
}

.cart-order-price .btn-area {
    margin-top: 20px;
}

.cart-order-price .btn-area a {
    display: block;
    height: 50px;
    line-height: 48px;
    font-family: 'IBMPlexSansKR-Bold';
    font-size: 16px;
    border-radius: 4px;
}

@media screen and (min-width:639px) {  
    .cart-order-price {
        padding: 40px 50px;
    }
}

@media screen and (min-width:1139px) {
    .cart-order-price {
        padding: 60px 0 0;
    }

    .cart-order-price .total-price-box dl dd strong {
        font-size: 24px;
    }
    
    .cart-order-price .total-price-box dl.pv dd strong {
        font-size: 16px;
    }

    .cart-order-price .btn-area a {
        height: 70px;
        line-height: 68px;
        font-size: 20px;
    }
}


/* 주문/결제 리스트 */
.order-list-box {
    position: relative;
    padding: 5px;
    background-color: #f4f4f4;
}

.order-list-box .cart-list {
    border: 1px solid #e9ecef;
}

.order-box {
    position: relative;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #e9ecef;
    background-color: #fff;
    border-radius: 3px;
    -moz-box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
}

.order-box h3 {
    position: relative;
    padding: 15px;
    margin: -15px -15px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 18px;
}

.order-box h3 em {
    font-family: 'IBMPlexSansKR-Bold';
}

.order-box .order-dl dl {
    margin-bottom: 20px;
}

.order-box .order-dl dl dt {
    margin-bottom: 10px;
    font-family: 'IBMPlexSansKR-Medium';
    font-size: 16px;
}

.order-box .order-dl dl dd ul.addr li {
    margin-top: 5px;
}

.order-box .order-dl dl dd ul.addr li:first-child {
    margin-top: 0px;
}

.order-box .order-dl dl dd .basic-input {
    width: 100%;
}

.order-box .order-dl dl.m-tbl {
    display: table;
    width: 100%;
}

.order-box .order-dl dl.m-tbl dt,
.order-box .order-dl dl.m-tbl dd {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.order-box .order-dl dl.m-tbl dd {
    text-align: right;
}

.order-box .order-dl .mobile-card-box {
    position: relative;
}

.order-box .order-dl .mobile-card-box p {
    margin-bottom: 10px;
}

.order-box .order-dl .mobile-card-box .plus-minus {
    position: relative;
    overflow: hidden;
    width: 200px;
    margin-bottom: 10px;
    border: 1px solid #143383;
    font-size: 0;
    border-radius: 18px;
}

.order-box .order-dl .mobile-card-box .plus-minus:after {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background-color: #143383;
    content: '';
}

.order-box .order-dl .mobile-card-box .plus-minus a {
    display: inline-block;
    width: 50%;
    height: 36px;
    line-height: 34px;
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
}

.order-box .order-dl .mobile-card-box .mc-list .mc-con {
    padding: 10px 0;
    border-top: 1px solid #e9ecef;
}

.order-box .order-dl .mobile-card-box .mc-list .mc-con:first-child {
    border-top: none;
}

.order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-code {
    position: relative;
}

.order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-code a {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}

.order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-price {
    margin: 5px 0;
}

.order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-feasible {
    text-align: right;
    color: #999;
}

.order-box .order-dl .easy-payment-list {
    border-top: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.order-box .order-dl .easy-payment-list li {
    position: relative;
    width: 33.3333%;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}

.order-box .order-dl .easy-payment-list li .payment-radio {
    display: none;
}

.order-box .order-dl .easy-payment-list li .payment-radio + label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.order-box .order-dl .easy-payment-list li .payment-radio + label em {
    margin-top: 5px;
    color: #666;
}

.order-box .order-dl .easy-payment-list li .payment-radio:checked + label:after {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 3px solid #4165bf;
    content: '';
}

.order-box .order-dl .easy-payment-list li .payment-radio:checked + label em {
    color: #4165bf;
}

@media screen and (min-width:639px) {
    .order-list-box {
        padding: 20px 40px;
    }
}

@media screen and (min-width:767px) {
    .order-box .order-dl {
        position: relative;
        border-top: 2px solid #666;
    }

    .order-box .order-dl dl {
        display: table;
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .order-box .order-dl dl dt,
    .order-box .order-dl dl dd {
        display: table-cell;
        padding: 10px;
        margin: 0;
        vertical-align: middle;
    }
    
    .order-box .order-dl dl dt,
    .order-box .order-dl dl.m-tbl dt {
        width: 140px;
        background-color: #f4f4f4;
        font-size: 14px;
        text-align: center;
    }
    
    .order-box .order-dl dl dd,
    .order-box .order-dl dl.m-tbl dd {
        width: auto;
        text-align: left;
    }

    .order-box .order-dl dl dd .basic-input {
        width: auto;
    }
    
    .order-box .order-dl .mobile-card-box .mc-list .mc-con {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-code {
        width: 49%;
    }

    .order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-price {
        width: 49%;
        margin-left: 2%;
    }

    .order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-feasible {
        width: 100%;
        font-size: 14px;
    }

    .order-box .order-dl .easy-payment-list li {
        width: 25%;
    }
}

@media screen and (min-width:1139px) {
    .order-list-box {
        padding: 40px;
    }

    .order-box {
        padding: 30px;
        margin-top: 10px;
    }

    .order-box h3 {
        padding: 20px 30px;
        margin: -30px -30px 30px;
        font-size: 24px;
    }
    
    .order-box .order-dl dl dt,
    .order-box .order-dl dl dd {
        padding: 15px 20px;
    }
    
    .order-box .order-dl dl dt,
    .order-box .order-dl dl.m-tbl dt {
        width: 200px;
    }

    .order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-code {
        width: 30%;
    }

    .order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-price {
        width: 30%;
        margin-left: 1%;
    }

    .order-box .order-dl .mobile-card-box .mc-list .mc-con .mc-feasible {
        width: 30%;
        margin-left: 1%;
        text-align: left;
    }

    .order-box .order-dl .mobile-card-box .plus-minus a:hover {
        background-color: #f4f4f4;
    }

    .order-box .order-dl .easy-payment-list li {
        width: 20%;
    }
}

@media screen and (min-width:1239px) {
    .order-list-box {
        padding: 60px 0;
    }
}


/* 찜목록 리스트 */
.wish-list-box {
    position: relative;
    padding-bottom: 40px;
    margin-top: 20px;
}

@media screen and (min-width:767px) {
    /*
    .wish-list-box {
        padding: 0 40px 40px;
    }
    */
}

@media screen and (min-width:1239px) {
    .wish-list-box {
        padding: 0;
    }
}