/* General */
.woocommerce-cart .woocommerce-notices-wrapper { display: none !important; }

.blockUI { z-index: 1 !important; }

.cart-form,
.cart-empty.woocommerce-info { margin-bottom: 28px; }

.order-total { margin-bottom: 31px; }

.cart_totals .h5 {
    font-weight: 800;
}

.order-total strong,
.order-total small { display: block; }

.order-total strong {
    font-weight: 800;
    font-size: 24px;
    line-height: 31px;
    color: var(--color-dark);
}

.order-total small {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-medium);
}

.order-total small .amount { color: var(--color-default); }

.related-products { margin-top: 140px; }

@media ( max-width: 1099px ) and ( min-width: 768px ) {
    .wc-proceed-to-checkout {
        max-width: 200px;
        margin-left: auto;
        margin-right: 32px;
    }
}

@media ( max-width: 767px ) {
    .woocommerce-cart .page-title { 
        font-size: 21px;
        margin: 0; 
    }

    .cart-form {
        border-top: 1px solid #E2E6EB;
    }

    .cart-form,
    .cart-empty.woocommerce-info { 
        margin-top: 24px;
        margin-bottom: 21px; 
    }

    .related-products { margin-top: 64px; }
}



/* Cart table */
.cart-table,
.cart-table thead,
.cart-table tbody,
.cart-table td:not(.product-remove),
.cart-table th { display: block; }

.cart-table thead {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.cart-table th {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: left;
}

@media ( min-width: 1100px ) {
    .cart-table {
        position: relative;
        padding-bottom: 25px;
        margin-top: 43px;
    }

    .cart-table thead::before,
    .cart-table::before {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #E2E6EB;
        content: '';
    }

    .cart-table tr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: auto;
        margin-left: -12px;
        margin-right: -12px;
    }

    .cart-table th,
    .cart-table td {
        font-weight: 600;
        padding-left: 12px;
        padding-right: 12px;
    }

    .cart-table .product-thumbnail { width: 16.7%; }
    .cart-table .product-name { width: 25%; }
    .cart-table .product-price { width: 16.6%; }
    .cart-table .product-quantity { width: 16.6%; }
    .cart-table .product-subtotal { width: 15%; }
    .cart-table .product-remove { width: 10%; }
}

@media ( max-width: 1099px ) {
    .cart-table thead { display: none; }

    .cart-table tr { 
        display: flex;
        flex-wrap: wrap; 
        justify-content: space-between;
        align-items: center;
        padding: 21px 0;
        border-bottom: 1px solid #E2E6EB;
    }

    .cart-table td { 
        width: max-content; 
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .cart-table .product-thumbnail {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        margin-bottom: 14px;
        padding-right: 40px;
        padding-left: 10px;
        margin-bottom: 12px !important;
    }

    .cart-table td.product-name {
        display: none;
    }

    .cart-item div.product-price > span {
        font-size: 14px;
        line-height: 22px;
    }

    .cart-table td.product-price,
    .cart-table td.product-quantity,
    .cart-table td.product-subtotal {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 17px;
        padding-bottom: 15px;
    }
    .cart-table td.product-quantity { margin-bottom: 15px; }

    .cart-table td.product-price::before,
    .cart-table td.product-quantity::before,
    .cart-table td.product-subtotal::before {
        display: none;
    }
}



/* Cart item */
.cart-item:not(:last-child) { margin-bottom: 24px; }

.cart-item__thumb {
    width: 176px;
    height: 176px;
}

.cart-item__thumb a,
.cart-item__thumb img { display: block; }

.cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.product-name a {
    font-weight: 600;
    line-height: 24px;
}

.cart-item__category {
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 16px;
    margin-bottom: 16px;
}

.div.product-price > span {
    font-size: 21px;
    line-height: 28px;
    color: var(--color-dark);
}

.cart-item__sku {
    font-size: 12px;
}

.cart-item__config { margin-top: 10px; }
.cart-item__config:empty { display: none !important; }

.cart-item__config li:not(:last-child) { margin-bottom: 5px; }

.cart-item__config li > span {
    position: relative;
    display: inline-block;
    padding-right: 30px;
}

.cart-option-remove {
    position: absolute;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    color: #fff;
    background: var(--color-medium-light);
    border-radius: 50%;
    transition: all .2s;
}

.cart-option-remove.loading {
    position: absolute;
    background: transparent !important;
}

.cart-option-remove:hover { background: var(--color-error); }

.cart-item .product-remove a {
    position: relative;
    display: block;
    width: 15px;
    max-width: 100%;
    height: 15px;
}

.cart-item .product-remove a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
}

.cart-item .product-remove path { transition: all .2s; }


.cart-item .product-remove a:hover path { fill: var(--color-error); }

.wc-proceed-to-checkout a {
    padding: 24px 88px;
}

@media ( min-width: 1100px ) {
    .cart-item__sku { margin-top: 10px; }
}

@media ( max-width: 1099px ) {
    .cart-item { position: relative; }
    .cart-item:not(:last-child) { margin-bottom: 4px; }

    .cart-item__thumb {
        width: 71px;
        height: 72px;
        margin-right: 31px;
    }

    .cart-item__title { 
        font-size: 14px;
        line-height: 22px;
        flex: 1;
    }

    .cart-item div.product-price del,
    .cart-item .woocommerce-variation-price del { margin-left: 13px; }

    .product-price__text {
        font-size: 12px;
        margin-left: 4px;
    }

    .cart-item__category {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .cart-item__sku {
        font-size: 10px;
        margin-top: 5px;
    }

    .cart-item .product-remove a {
        position: absolute;
        top: 56px;
        right: 0;
        width: 18px;
        height: 18px;
    }

    .cart-item .product-remove a svg {
        width: 14px;
        height: 14px;
    }

}

@media ( max-width: 767px ) {
    .cart-item .quantity {
        width: 98px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}



/* Totals */
@media ( max-width: 1099px ) {
    .cart_totals__values {
        display: flex;
        flex-wrap: wrap;
        justify-content: end;
        margin-bottom: 22px;
    }
    .cart_totals .h5 {
        font-size: 21px;
        line-height: 28px;
    }
    .cart_totals__values .product-price {
        text-align: right;
        font-size: 21px;
        color: var(--color-dark);
        margin-left: 20px;
        display: inline;
    }
    
    .includes_tax {
        font-size: 14px;
        display: block;
        margin-top: 8px;
        color: var(--color-default);
    }

    .order-total { text-align: right; }
}

.order-minimum-amount {
    font-size: 16px;
    color: #5F6163;
    padding-left: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.order-minimum-amount svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cart-collaterals {
    margin-bottom: 100px;
}

/* Delivery tabs */

.delivery-tabs-wrapper {
    border-bottom: 1px solid #E2E6EB;
    padding-bottom: 23px;
    margin-bottom: 30px;
}

.delivery-tabs-item {
    padding-left: 83px;
}

.delivery-tabs-item.disabled {
    opacity: 0.5;
}

.delivery-tabs__header > svg {
    width: 47px;
    height: 47px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.delivery-tabs__header > svg path {
    fill: var(--color-error);
}

@media ( max-width: 1099px ) {

    .delivery-tabs-wrapper {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 14px;
    }

    .delivery-tabs-item {
        padding-left: 59px;
        padding-bottom: 16px;
        border-bottom: 1px solid #E2E6EB;
        margin-bottom: 11px;
    }

    .delivery-tabs__title {
        font-size: 14px;
    }
    
    .delivery-tabs__header > svg {
        width: 34px;
        height: 34px;
        top: 20px;
        left: 8px;
    }

    .order-minimum-amount {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 22px;
    }

    .cart-collaterals {
        margin-bottom: 33px;
    }

    .order-total {
        margin-bottom: 0;
    }

    .order-total small {
        font-size: 14px;
        line-height: 22px;
        margin-top: 6px;
    }

    .wc-proceed-to-checkout a {
        padding: 15px 33px;
    }

}

@media ( max-width: 767px ) {

    .wc-proceed-to-checkout a {
        font-size: 14px;
        padding: 15px 83px;
        width: 100%;
    }

}