.filter-attribute-buttons {
    margin: auto 0;
    margin-bottom: 10px;
}

.filter-attribute-buttons button {
    margin: 10px;
    padding-bottom: 12px;
}

.filter-attribute-buttons button#clear-all-btn{
    background: #fff;
}
 
.attribute-group input[type=checkbox] {
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    background-color: #fff;
    border: 2px solid #50575e;
    border-radius: 2px;
    height: 1.3em;
    margin: 0 1em 0 0;
    width: 1.3em;
}

.attribute-group label {
    display: flex;
    margin: 6px 0;
}


.attribute-group input[type=checkbox]:checked {
    background: #fff;
    border-color: #50575e;
}

.attribute-group input[type=checkbox]::after, .attribute-group input[type=checkbox]::before{
    content: "";
}

.woocommerce ul.products li {
    width: 100%!important;
}

.woocommerce ul.products li.product a img {
    margin: 0;
}

section.related {
    margin: 50px 0 20px;
} 

/*to delete*/
@media (max-width: 768px) {

    .filter-attribute-wrapper {
        justify-content: space-evenly;
    }
    .filter-attribute-buttons {
        margin: auto;
    }       
}

/*to delete*/
.woocommerce .products ul::after, 
.woocommerce .products ul::before, 
.woocommerce ul.products::after, 
.woocommerce ul.products::before
{
    display: none;
}

.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale
{
    display: none;
}

.woocommerce-variation-add-to-cart 
 {
    display: flex;
    padding:20px 0;
    align-items: center;
}

.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    height: 1.5em;
    margin-right: 5px;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    font-weight: 600;
}

.woocommerce form .form-row input.input-text {
    line-height: 1.8;
}

/*Cart */

.cs-cart {
    width: 72px;
    height: 72px;
    position: fixed;
    border-radius: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 25%);
    right: 30px;
    top: 50px;
    background-color: #fff;
    cursor: pointer;
    opacity: 0.9;
    z-index: 10;
}

.cs-cart .cs-cart-count {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background-color: #c9450d;
    /* text-align: center; */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.cs-cart .icon-font-cart {
    font-size: 27px;
    color: #515151;
}

.cart-panel-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 420px;
    z-index: 999999999;
    transform: translate(100%) scale(1);
    transition: transform .4s ease-out;
    
}

.cart-panel-backdrop {
    display: none;
    position: fixed;
    background-color: #000;
    opacity: .3;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999998;
}

.cart-panel-wrapper.open {
    transform: translate(0);
}


.cart-panel-head {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #ededed;
}

.cart-panel-head .cart-panel-title {
    font-size: 18px;
    font-weight: 600;
}

.cart-panel-head .cart-panel-close {
    font-size: 20px;
    cursor: pointer;
    color: #3f3f3f;
}

.cart-panel-wrapper .widget_shopping_cart_content {
    display: flex;
    height: 100%;
    text-align: center;
    padding: 20px;
    justify-content: center;
    overflow: auto;
}

#mini-cart {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


#mini-cart a.remove {
    position: absolute;
    margin: -10px 0 0 -10px;
    
}

.woocommerce ul.product_list_widget li {
    padding: 8px 0
}
#mini-cart a.cs-card-img img {
    width: 80px;
}

.cs-cart-grid {
    display: flex;
    gap: 8px;
}

#mini-cart .cs-card-product {
    text-align: left;
    flex-grow: 1;
}
#mini-cart .cs-card-product-sub {
    text-align: right;
    min-width: 60px;
}

#mini-cart .cs-card-product a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}


#mini-cart .cs-cart-grid .cs-cart-attr {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    padding: 5px 0;
}

#mini-cart .cs-cart-grid .cs-card-product .quantity {
    font-size: 14px;
}

#mini-cart .cs-cart-footer {
    border-top: 1px solid #ededed;
}


#mini-cart .cs-cart-footer .total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}


#mini-cart .cs-cart-footer .buttons .button {
    width: 90%;
    padding: 13px;
}

#mini-cart .cs-cart-footer .buttons a.checkout {
    margin-bottom: 10px;
    background-color: #3983b4;
    color: white;
}
#mini-cart .cs-cart-footer .buttons a.checkout:hover {
    opacity: 0.9;
}

.cart-panel-wrapper .cs-empty-cart {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.cart-panel-wrapper #mini-cart .cs-empty-cart i {
    font-size: 50px;
    color: #515151;
}

#cs-shop-notices-wrap .woocommerce-message {
    display: none;
}

@media (max-width: 768px) {
    #cs-shop-notices-wrap .cs-shop-error li {
        display: flex;
        flex-wrap: wrap;
    }
    .cs-cart {
        bottom: 30px;
        top: unset;
        right: 10px;
        width: 62px;
        height: 62px;
    }
    .cs-cart .cs-cart-count {
        width: 23px;
        height: 23px;
    }
}

.woocommerce-checkout .cs-checkout-button {
    margin-bottom: 30px;
}
.entry-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ededed;
    color: #555555;
    margin: 0 10px;
}
.entry-products h2 {
    margin-bottom: -2px;
    padding-bottom: 8px;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(0,0,0,.1);
}
.entry-products a {
    text-decoration: none;
    color: currentColor;
    display: flex;
    font-weight: bold; 
}

.entry-products a svg {
    width: 16px;
    margin-left: 10px
}