.product-items{
    margin: 10px 0;
    box-shadow: unset;
    border: none;
}

.product-items:hover{
    border: none;
}

.product-items .card{
    box-shadow: 0 0 11px 2px rgba(174, 174, 174, 0.2);
    border-radius: 10px;
    background-color: #fff;
    border: none;
    border-top: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    height: 100%;
}


.product-items .card:hover{
    border-color: var(--primary-color);
}

.product-items .card .photo img{
    border-radius: 10px;
}

.category-product-item{
    height: 360px;
}



@media only screen and (max-width: 992px) {
    .category-product-item{
        height: 365px;
    }
}

@media only screen and (max-width: 768px) {
    .category-product-item{
        height: 420px;
    }
}

@media only screen and (max-width: 576px) {
    .category-product-item{
        width: 50% !important;
        height: 420px;
    }
}

@media only screen and (max-width: 414px) {
    .category-product-item{
        width: 50% !important;
        height: 335px;
    }
}

@media only screen and (max-width: 400px) {
    .category-product-item{
        width: 100% !important;
        height: 512px;
    }
}

.change-view .btn{
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 8px;
    border: none;
}

.change-view .btn-check:checked+.btn, .change-view .btn.active, .change-view .btn.show, .change-view .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #f7f7f7;
}

.change-sort .form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.change-sort .form-select {
    padding: 1rem 2.25rem 1rem 7.75rem;
    font-size: 1rem;
    background-color: #f7f7f7;
    background-position: left .75rem center;
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.sidebar .category-name{
    padding-right: 10px;
}

.sidebar .category-name:before{
    content: '';
    width: 4px;
    height: 30px;
    background-color: var(--primary-color);
    position: absolute;
    display: block;
    right: 0;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.sidebar .search .form-control{
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    padding: 15px 10px 15px 10px;
    border-style: none;
    border-radius: 16px 16px 16px 16px;
    font-weight: 300;
    min-width: 150px;
    line-height: 1.6;
    box-shadow: none;
    transition: .3s;
    color: #4f535e;
    font-size: 13px;
    text-shadow: none;
    box-sizing: border-box;
}

.sidebar .search .search-btn{
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    color: #4f535e;
    border-radius: 16px 16px 16px 16px;
    border-style: none;
    box-shadow: none;
    text-shadow: none;
}

.sidebar .search .search-btn:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 25px;
    background-color: #afafaf;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.sidebar .filters{
    background-color: #f7f7f7;
    border-radius: 16px 16px 16px 16px;
    padding: 15px 10px 15px 10px;
}

.sidebar .filters .form-check{
    padding-right: 1.5em;
    padding-left: unset;
}

.sidebar .filters .form-check .form-check-input {
    float: right;
    margin-right: -10px;
    margin-left: 10px;
    margin-top: 3px;
    width: 20px;
    height: 20px;
}

.sidebar .filters .filter-items{
    border-bottom: 1px solid #d3d3d3;
    padding: 10px 0;
}

.sidebar .filters .range-slider {
    direction: ltr;
    padding: 0 10px 20px 10px;
    border-radius: 10px;
}

.sidebar .accordion-item{
   background-color: transparent;
    border: none;
}

.sidebar .accordion{
    --bs-accordion-btn-bg: transparent;
    border: none;
}

.sidebar .accordion-button:not(.collapsed){
    background-color: transparent;
}

.sidebar .accordion-button:focus{
    box-shadow: none;
}

.sidebar .accordion-item .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
    font-size: 14px;
}

.sidebar .accordion-button::after{
    margin-left: unset;
    margin-right: auto;
}

.sidebar .accordion-button:not(.collapsed){
    box-shadow: none;
}

.md-filters{
    position: fixed;
    z-index: 0;
    background-color: #fff;
    width: 90%;
    box-shadow: -35px 0 0 55px rgb(0 0 0 / 65%);
    right: -90%;
    top: -18px;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.md-filters.active{
    z-index: 35;
    opacity: 1;
    visibility: visible;
    right: 0;
}
