/*
    CSS CART FORM
*/


.fbdec-cart-container {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    margin-bottom: 4em;
}

.fbdec-cart-col-1 {
    flex: 2 1 calc(1em - 60%);
    min-width: 500px;
}

.fbdec-cart-col-2 {
    flex: 1 1 calc(1em - 40%);
    min-width: 350px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}

.woocommerce-Price-amount.amount {
    font-size: 1.8rem;
    font-weight: 300!important;
}

tr.order-total .woocommerce-Price-amount.amount {
    padding-bottom: 0px;
}

.includes_tax {
    display: block;
}

.includes_tax .woocommerce-Price-amount.amount {
    font-size: 1.25rem !important;
    padding-top: .5rem;
}

.wc-proceed-to-checkout .checkout-button {
    font-family: 'Bebas Neue', display;
}

.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
    border-color: #141414;
}

.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents th {
    background-color: #141414;
    color: #fff;
}

.woocommerce-cart-form__cart-item.cart_item td,
td.actions {
    border-color: #141414 !important;
}

.shop_table.shop_table_responsive {
    border-color: #141414 !important;
}

.shop_table.shop_table_responsive .woocommerce-Price-amount.amount {
    font-size: 1.25rem;
}

.cart-subtotal th,
.woocommerce-shipping-totals th,
.order-total th,
.cart-discount th {
    background-color: #f6f7f5;
    color: #141414 !important;
}

.woocommerce-shipping-totals th,
.order-total th,
.cart-discount th,
.woocommerce-shipping-totals td,
.order-total td,
.cart-discount td {
    border-color: #141414 !important;
}



/* COUPON - toggle */
#toggle-coupon-btn {
    background: transparent;
    border: none;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-size: 1.25rem;
    cursor: pointer;
    text-decoration: underline;
}

#toggle-coupon-btn:hover {
    font-weight: 600;
}

.custom-cart-coupon {
    margin-bottom: 24px;
}

.coupon-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;

    margin-top: 0;
}

.coupon-wrapper.active {
    max-height: 220px;
    opacity: 1;
    margin-top: 16px;
}

.custom-cart-coupon .coupon {
    display: flex;
    /*flex-direction: column;*/
    gap: 12px;
    padding: .5rem;
    flex-wrap: wrap;
}

.custom-cart-coupon .input-text {
    flex: 1 2 calc(70% - 6px);
    width: 100%;
    background-color: #f6f7f8;
    padding: 1rem;
    font-size: 1.25rem;
    border-radius: .5rem !important;
    border: 1px solid #707070;
}

.coupon button {
    flex: 1 1 calc(30% - 6px);
}


@media screen and (max-width:1000px) {
    .fbdec-cart-container {
        flex-direction: column;
    }

    .fbdec-cart-col-1 {
        min-width: auto;
    }

    .fbdec-cart-col-2 {
        min-width: auto;
    }
}