﻿/* ShopAll-product start */

body {
    background-color: #f8f8f8;
}

.sidebar {
/*    background: #FFFFFF;*/
    padding: 30px;
}

.btn-outline-dark {
    padding: 8px 20px;
    font-weight: 600;
}

.product-img {
    position: relative;
}
/*
.productsale {
    position: absolute;
    top: 18px;
    left: 15px;
    background: rgb(255, 255, 255);
    color: rgb(58, 58, 58);
    padding: 4px 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 19px;
    box-shadow: 0 3px 0 rgb(204, 204, 204);
}*/

.cart-box {
    position: absolute;
    top: 18px;
    right: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-cart-icon {
    position: absolute;
    top: 0;
    right: 10px;
    background: rgb(255, 255, 255);
    color: rgb(58, 58, 58);
    padding: 4px 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 19px;
    box-shadow: 0 3px 0 rgb(204, 204, 204);
    opacity: 0;
    transition: 0.3s;
}

.product-cart {
    background: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.product-img:hover .product-cart-icon {
    opacity: 1;
}

.cart-box:hover .product-cart {
    opacity: 1;
    transform: translateX(-45px);
}

.dropdown-select {
    padding: 8px 35px 8px 12px;
    border: 2px dashed #ccc;
    border-radius: 0;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.img-container{
   width:100%;
   height:auto;
}

.img-container>img{
    width:100%;
    height:auto;
}

.Reset-btn{
    padding:9px;
    border:2px dashed #ccc;
    cursor:pointer;
}

.Category-Container{
    position:relative;
}
.inner-Category-Container{
    position:sticky;
    top:100px;
}


/* ShopAll-product end */


@media ( min-width:768px) and (max-width:1024px) {
    .sidebar {
        /*    background: #FFFFFF;*/
        padding: 0px !important;
    }
}

@media (max-width: 576px) {
    .sidebar {
        /*    background: #FFFFFF;*/
        padding: 0px !important;
    }
}