/*  
**Cart sidebar
*/
.cart-widget-side {
    background-color: #f6efe2 !important;
}

.cart-widget-side .woocommerce-mini-cart .mini_cart_item:hover {
    background-color: #efe8db !important;
}

.cart-widget-side .total .amount {
    color: #000000 !important;
}
.woocommerce-mini-cart-item .attachment-woocommerce_thumbnail{
  border-radius:13px;
}
/*
** Cart page
*/
.cart-content-wrapper #coupon_code {
    border-radius: 30px;
}

.cart-content-wrapper .cart-totals-inner {
    border-radius: 30px;
}

/*
** Mobile sidebar
*/
.wd-side-hidden {
    background-color: #f6efe2 !important;
}
.wd-side-hidden .mobile-tab-title{background-color: #f6efe2 !important;

}
.wd-side-hidden .mobile-tab-title.wd-active {background-color: #efe8db !important;

}
/*
** Checkout
*/
.checkout-order-review{
    background-color: #F6EFE2!important;
    border-radius:30px;
}
.checkout-order-review::after,.checkout-order-review::before{
    content:none!important;
    display: none!important;
}
#order_review > .wd-table-wrapper{
    background-color: transparent!important;
    box-shadow: none!important;
}
.payment_box{
    border-radius: 30px!important;background-color: #FFF8EB !important;
}
#place_order{
    border-radius:5em!important;
}

.customer-details label:has(input[type=checkbox]){
    position: relative;
    cursor: pointer;
}
.customer-details label:has(input[type=checkbox])::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 5em;
    margin-right: 5px;
    background-color: #efe8db;
    display: inline-block;

}
.customer-details label:has(input[type=checkbox])::after {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    width: 20px;
    height: 20px;
    border-radius: 5em;
    margin-right: 5px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    color: black;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.customer-details label:has(input:checked)::after {opacity: 1;
}
.customer-details input[type=checkbox] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
    left: 0;
    top: 0;
}
@media screen and (max-width:768px){
    .wd-table-wrapper{
        padding-left: 0!important;
        padding-right: 0!important;
    }
    
}@media screen and (max-width:1024px) {
    .woocommerce:has(.woocommerce-form-coupon-toggle) {
            padding-top: 120px;
        }
}