/**/
.container-section {
    min-height:500px;
    background:#F4F5F9;
    padding:12rem 0;
}
#sub-visual {display:none;}


/**/
#cart-view {
    display:flex;
    gap:4rem;
}
#cart-view .left {
    flex:1 0 auto;
}
#cart-view .left .control-head {
    margin-bottom:1.2rem;
}
#cart-view .left .control-head label {
    transform:translateY(2px);
}
#cart-view .right {
    width:370px;
}
#cart-view .right .total-price,
#cart-view .right .delivery-price {
    display:flex;
    justify-content: space-between;

    /* font */
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
#cart-view .right .total-price {
    margin-bottom:0.8rem;
}
#cart-view .right .delivery-price {}
#cart-view .right .order-price {
    margin:4rem 0;
    border-radius: 8px;
    border: 1px solid #DDD;
    background: #FFF;

    display:flex;
    justify-content: space-between;
    padding:2rem 2.4rem;

    /* font */
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
#cart-view .right .order-price .price {
    color:#3287D7;
}
#cart-view .right input[type="submit"] {
    background:#3287D7;
    display:flex;
    align-items: center;
    justify-content: center;
    padding:1.6rem;
    width:100%;
    border:0;
    color:#fff;
    border-radius:6px;
}

/**/
#cart-list {
}
#cart-list .cart-item {
    margin-bottom:1.2rem;
}
#cart-list .cart-item:last-child {
    margin-bottom:0;
}
#cart-list .cart-item .card-body {
    display:flex;
}
#cart-list .cart-item .card-body .check {}
#cart-list .cart-item .card-body .img {
    width:140px;
    height:140px;
    border-radius:6px;
    background-color:#EFF2F5;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
}
#cart-list .cart-item .card-body .data {
    margin:0 2rem;
    flex:1 0 auto;
}
#cart-list .cart-item .card-body .data .name {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.6rem;
}
#cart-list .cart-item .card-body .data .delivery-price {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    opacity: 0.6;
    margin-bottom:0.8rem;
}
#cart-list .cart-item .card-body .data .total-price {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.8rem;
    margin-bottom:1.8rem;
}
#cart-list .cart-item .card-body .data .num {}
#cart-list .cart-item .card-body .close {}


/**/
#cart-list .empty .card-body {
    display:flex;
    align-items: center;
    flex-direction: column;
    gap:1.6rem;
    text-align:center;
    padding:4rem;
}
#cart-list .empty .card-body p {
    color: #000;
    text-align: center;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
#cart-list .empty .card-body a {
    color: #3287D7;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.6rem;
    border:1px solid #CEE2F5;
    display:block;
    padding:1rem 2.8rem;
}
