




/*accordion*/

.accordion-body {
    padding: 0;
}

.accordion-button{
    padding: 10px;
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg width="17px" height="17px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.2893 5.70708C13.8988 5.31655 13.2657 5.31655 12.8751 5.70708L7.98768 10.5993C7.20729 11.3805 7.2076 12.6463 7.98837 13.427L12.8787 18.3174C13.2693 18.7079 13.9024 18.7079 14.293 18.3174C14.6835 17.9269 14.6835 17.2937 14.293 16.9032L10.1073 12.7175C9.71678 12.327 9.71678 11.6939 10.1073 11.3033L14.2893 7.12129C14.6799 6.73077 14.6799 6.0976 14.2893 5.70708Z" fill="%230F0F0F"/></svg>');
    width: 15px;
    height: 17px;
    background-size: contain;
}

.accordion-button::after {
    margin-left: unset !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg width="17px" height="17px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.2893 5.70708C13.8988 5.31655 13.2657 5.31655 12.8751 5.70708L7.98768 10.5993C7.20729 11.3805 7.2076 12.6463 7.98837 13.427L12.8787 18.3174C13.2693 18.7079 13.9024 18.7079 14.293 18.3174C14.6835 17.9269 14.6835 17.2937 14.293 16.9032L10.1073 12.7175C9.71678 12.327 9.71678 11.6939 10.1073 11.3033L14.2893 7.12129C14.6799 6.73077 14.6799 6.0976 14.2893 5.70708Z" fill="%230F0F0F"/></svg>');
    transform: rotate(-180deg);
    width: 12px;
    height: 16px;
    background-size: contain;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(270deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-90deg);
}

.last__batch::after {
    background-image: none !important;
}

.inner-bullet {
    width: 17px;
    height: 17px;
    display: block;
    background: #fff;
    border-radius: 6px;
    border: 2px solid #cdcdcd;
}

.accordion-Inner1.active .inner-bullet {
    background-color: #07789d;
    border: 2px solid #07789d;
}

.accordion-Inner-inner1.active .inner-inner-bullet {
    background-color: #07789d;
    border: 2px solid #07789d;
}

.accordion-button.collapsed .inner-bullet {
    background: #ffffff;
}

.accordion-button {
    flex-direction: row;
    padding: 0.3rem 0.35rem;
    gap: 7px;
    background-color: #fff0 !important;
    font-size: 13px;
    color: #000;
}

.accordion-button:focus{
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    box-shadow: unset;
}

.inner-inner-bullet {
    width: 13px;
    height: 13px;
    border: 2px solid #cdcdcd;
    border-radius: 3px;
}

.accordion-item .accordion-button.collapsed{
    border: unset !important;
}

.accordion-item {
    border: unset !important;
}

.accordion-item a{
    text-decoration: unset;
}

/*accordion*/




.all-cat{
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 10px;
}

.each-cat{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 4px;
    position: relative;
    text-decoration: unset;
}

.cat-image {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* overflow: hidden; */
    position: relative;
    z-index: 5;
    margin-inline: 0;
    margin: 0.6rem;
    outline-offset: 8px;
    background-color: #eee !important;
}

.cat-image img {
    width: 99px;
    height: 99px;
    object-fit: contain;
    /* -webkit-transition: all 1s; */
    /* transition: all 1s; */
    position: absolute;
    top: -20px;
    transition: .5s;
}

.cat-image::after {
    position: absolute;
    content: '';
    border-radius: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 2px dashed #bababa;
    z-index: -1;
    border-style: solid;
    /* border-image: linear-gradient(to right, darkblue, darkorchid) 1; */
    background: linear-gradient(#f5f5f5, #ededed) padding-box, linear-gradient(to right, #c5c5c5ab, #a0a3a35c) border-box;
    border-radius: 50em;
    border: 2px solid #b5333300;
    transition: .5s;
}

.cat-name span {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    text-align: center;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-decoration: unset;
}

@keyframes  rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media screen and (min-width: 768px) {
    .each-cat:hover .cat-image img {
        transform: scale(1.2);
        transition: .5s;
    }

    .each-cat:hover .cat-name span {
        color: var(--secondary-color);
    }

    .each-cat:hover .cat-image::after {
        animation: rotate_infinite 25s;
        animation-iteration-count: infinite;
        transition: .5s;
        background: linear-gradient(#ffffff, #ededed) padding-box, linear-gradient(to right, #95b5bb, #99b8bd) border-box;
    }
}


.category-more-slide {
    border: 1px solid #fdfdfd;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #d8d8d8;
    border-radius: 50%;
    align-self: flex-start;
}

.category-slide-text {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}


.category-slide-item:nth-child(n+7) {
    display: none;
}

.category-slide-item.show {
    display: flex !important;
}


.overlay-section {
    display: none;
    background-color: rgb(36 36 36 / 50%);
    z-index: 909;
    position: fixed;
    outline: none;
    width: 100%;
    height: 100%;
    z-index: 40;
}

.overlay-section.show {
    display: flex
;
}



.all-products{
    padding-block: 10px 60px;
}

.product-filter-box{
    padding: 20px;
    box-shadow: 0 0 1px 1px #e6e6e6;
    margin-bottom: 20px;
}

.filter-head{
    background: rgb(125 125 125 / .15);
    padding: 10px 20px;
    margin-bottom: 21px;
}

.category-accordion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-block: 0px;
    padding: 0rem;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-right: 28px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: max-content;
    display: flex;
    align-items: center;
    color: #555555;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    --border-default: #bbbbc1;
    --border-hover: #9898a3;
    --active: #FC0DA9;
    --active-tick: #fff;
    position: absolute;
    top: 4px;
    right: 0;
    height: 17px;
    width: 17px;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
    transition: all .5s;
    border: 2px solid #07789d;
}

.checkmark svg {
    display: block;
    position: absolute;
}

.checkmark svg:first-child {
    width: 21px;
    height: 17px;
    left: -3px;
    top: 0px;
    color: var(--secondary-color);
    display: none;
}

.checkbox-container input:checked + .checkmark svg:first-child {
    --stroke-dashoffset: 0;
}

.category-accordion-item .checkbox-container input:checked + .checkmark svg:first-child {
    display: block;
}

.filter-content{
    display: flex;
    flex-direction: column;
    gap: 11px;
}






/*filter*/

.filter-box{
    display: flex;
    flex-direction: column;
    padding: 13px;
    border: 1px solid #cecece;
    border-radius: 5px;
}

.category-search{
    display: none;
}


.search-filter{
    width: 100%;
    position: relative;
    margin-block: 20px;
}

.search-filter input{
    padding: 7px 10px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    width: 100%;
}

.search-filter input::placeholder{
    font-size: 12px;
    color: #8a8a8a;
}

.search-filter button{
    position: absolute;
    background-color: unset !important;
    border: unset !important;
    top: 8px;
    left: 13px;
}







.category-filters-title {
    display: flex;
    align-items: center;
    padding-block: 17px;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 6px;
    padding: 35px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    display: none;
}


.category-accordion-box{
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 212px;
}

.backward-arrow {
    display: none;
}

.backward-arrow {
    padding: 18px 16px;
    padding-bottom: 7px;
    width: fit-content;
}

.category-accordion-item {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-block: 0px;
    padding: 0.4rem;
}

.category-filters-close svg {
    display: none;
}

.category-items-menu-box {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
    padding-inline: 1rem;
    padding-block: 9px;
    background-color: #ececec;
    border-radius: 3px;
    margin-block: 7px;
}

.filter-box span {
    font-size: 13px;
    color: #000;
}

.category-items-menu-box span {
    font-weight: 500;
}

.category-accordion-box::-webkit-scrollbar{
    width: 3px;
}

.category-accordion-box::-webkit-scrollbar-track{
    background: #e3e3e3;
    border-radius: 10px;
}

.category-accordion-box::-webkit-scrollbar-thumb{
    background: #212529;
    border-radius: 10px;
}

.category-text-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-block: 17px;
}

.brand-check-list-box{
    border-top: unset;
}

/*.filter-box div:nth-child(3) {*/
/*    border: unset;*/
/*}*/




/*price range*/

.filter-price {
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

.price-title {
    position: relative;
    color: #000000;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
}

.price-field {
    position: relative;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    background: rgba(248, 247, 244, 0.2);
    padding-top: 15px;
    padding-left: 16px;
    border-radius: 3px;
}

.price-field input[type=range] {
    position: absolute;
}

/* Reset style for input range */

.price-field input[type=range] {
    width: 100%;
    height: 2px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
    outline: 0;
}

.price-field input[type=range]::-ms-track {
    width: 188px;
    height: 2px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    background: transparent;
    border-color: transparent;
    color: transparent;
    border-radius: 5px;
}

/* Style toddler input range */

.price-field input[type=range]::-webkit-slider-thumb {
    /* WebKit/Blink */
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    margin-top: -6px;
    background-color: var(--secondary-color);
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 1;
}

.price-field input[type=range]::-moz-range-thumb {
    /* Firefox */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    margin-top: -5px;
    background-color: var(--secondary-color);
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 1;
}

.price-field input[type=range]::-ms-thumb  {
    /* IE */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    margin-top: -5px;
    background-color: var(--secondary-color);
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 1;
}

/* Style track input range */

.price-field input[type=range]::-webkit-slider-runnable-track {
    /* WebKit/Blink */
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: var(--secondary-color);
    border-radius: 5px;
}

.price-field input[type=range]::-moz-range-track {
    /* Firefox */
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: var(--secondary-color);
    border-radius: 5px;
}

.price-field input[type=range]::-ms-track {
    /* IE */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: var(--secondary-color);
    border-radius: 5px;
}

/* Style for input value block */

.price-wrap {
    display: flex;
    justify-content: center;
    color: #000000;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 7px;
}

.price-wrap-1,
.price-wrap-2 {
    display: flex;
}

.price-title {
    margin-right: 5px;
    backgrund: #d58e32;
}

.price-wrap_line {
    margin: 0 10px;
}

.price-wrap #one,
.price-wrap #two {
    width: 50px;
    text-align: left;
    margin: 0;
    padding: 0;
    margin-right: 2px;
    background: 0;
    border: 0;
    outline: 0;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
    font-family: "Samim-FD";
}

.price-wrap label {
    text-align: right;
}

/* Style for active state input */

.price-field input[type=range]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
}


/*price range*/



.sorting-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    border: 1px solid #cdcdcd;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
}

.category-mobile-filters {
    display: none;
}

.sorting-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sorting-name{
    font-size: 13px;
}


.sort-options {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sort-options span {
    padding: 5px 10px;
    border-left: 1px solid #cdcdcd;
    cursor: pointer;
    font-size: 12px;
}

.sort-options span:last-child{
    border: unset;
}

.sort-options span.active {
    color: var(--primary-color);
}

.count-span{
    font-size: 13px;
}






/*filter*/



/*pagination*/

.pagination {
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.page-link {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: none;
    font-size: 12px;
    font-family: Samim-FD;
}

.page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*pagination*/


.category-tabs-title{
    display: none;
}

.add-filters{
    display: none;
}


.products-row{
    min-height: 300px;
}


.no-product{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no-product span{
    font-size: 13px;
    color: var(--secondary-color);
    text-align: center;
}


/*responsive*/



@media screen and (max-width: 1399px){

}

@media screen and (max-width: 1199px){

}

@media screen and (max-width: 991px){

    .all-filter-cat{
        height: 68vh;
        overflow: auto;
    }


    .all-items-in-filter{
        height: 82vh;
        overflow: auto;
    }


    .add-filters{
        display: block;
        background: #fff;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 100%;
        right: 0;
        bottom: 0;
        z-index: 100;
    }
    .add-filters .filters-btn{
        background-color: var(--primary-color);
        text-align: center;
        color: #fff;
        font-size: 14px;
        width: 95%;
        padding: 10px 0;
        border-radius: 5px;
    }


    .category-items-menu-box {
        margin-block: 10px;
    }

    .category-search{
        display: block;
    }


    .category-accordion-item {
        padding: 0.7rem;
        padding-inline: 12px;
        border-bottom: 1px solid #efefef;
    }


    .category-tabs-title {
        display: none;
        padding-top: 15px;
        align-items: flex-start;
        padding-inline: 50px;
        flex-direction: column;
        background-color: #fff;
        bottom: 0;
        right: 0;
        margin: auto;
        border-radius: 15px;
        height: max-content;
        width: 100%;
        position: fixed;
        z-index: 1110000;
        padding-bottom: 20px;
    }

    .category-tabs-title.show {
        display: flex;
    }

    .category-tabs-close {
        position: absolute;
        right: 17px;
        top: 17px;
    }

    .category-sort-mobile-title {
        color: #444 !important;
        font-size: 1rem !important;
        width: 100%;
        text-align: right;
        border-bottom: 1px solid #c7c7c7;
        padding-bottom: 10px;
    }

    .category-sort-mobile-title {
        display: block;
    }

    .category-tabs-title.show .category-tabs-box {
        margin-top: 15px;
        width: 100%;
        border-left: 0;
        position: relative;
    }

    .category-tabs-title.show .category-tabs-box span{
        font-size: 13px;
    }

    .category-tabs-title.show .category-tabs-box span.active{
        color: var(--primary-color);
    }


    .filter-box span {
        font-size: 14px;
    }

    .category-items-menu-box {
        background-color: transparent;
        padding: 0;
    }

    .category-text-box {
        padding-block: 0px;
    }

    .category-items-menu-box span {
        font-size: 14px;
    }

    .category-items-menu-box svg{
        transform: rotate(90deg);
        width: 13px;
        height: 13px;
    }

    .category-mobile-filters {
        display: block;
    }

    .filter-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .sort-options {
        display: none;
    }

    .category-mobile-filters svg {
        width: 17px;
        height: 17px;
    }



    .filter-box {
        position: fixed;
        top: 0;
        /* right: -50%; */
        right: 0;
        height: 100%;
        max-height: max-content;
        width: 50%;
        border-radius: 0;
        /* padding-inline: 15px; */
        background-color: #fff;
        z-index: 1000;
        display: flex;
        justify-content: flex-start;
        padding-block: 20px 100px;
        overflow: hidden auto;
        transform: translateX(100%);
        -webkit-transition: transform .5s ease-in-out;
        transition: transform .5s ease-in-out;
        min-height: 100%;
    }


    .filter-box.show {
        transform: translateX(0);
        max-width: 100%;
        min-height: 100%;
    }

    .category-filters-close {
        position: absolute;
        top: 18px;
        right: 10px;
    }

    .category-filters-close svg {
        display: inline;
    }

    .category-filters-title {
        padding-block: 2px;
        display: block;
    }

    .filter-box span {
        display: block;
    }

    .category-accordion-box {
        height: 0;
        display: flex;
        flex-direction: column;
        overflow: auto;
        --primary: #275efe;
        --headline: #3f4656;
        --text: #99a3ba;
        cursor: pointer;
        overflow-x: hidden;
    }

    .open_sub {
        left: 0;
        z-index: 100;
        height: 100% !important;
        width: 100%;
        top: 0;
        position: fixed;
        background: #ffff;
        min-height: 100%;
    }

    .filter-box span {
        display: block;
    }

    .filter-box span {
        display: block;
    }

    .filter-box span {
        display: block;
    }




}

@media screen and (max-width: 767px){

    .cat-image {
        width: 60px;
        height: 60px;
    }

    .cat-image img {
        width: 71px;
        height: 71px;
    }

    .all-cat {
        gap: 13px;
        row-gap: 4px;
    }

    .category-more-slide {
        width: 96px;
        height: 96px;
    }

    .all-cat {
        justify-content: center;
    }

    .filter-right {
        font-size: 12px;
    }

    .count-span{
        font-size: 12px;
    }

}

@media screen and (max-width: 575px){

    .sorting-box {
        padding: 13px 10px;
    }

    .category-mobile-filters svg {
        width: 13px;
        height: 13px;
    }

    .sorting-name svg{
        width: 13px;
        height: 13px;
    }

    .sorting-name {
        font-size: 12px;
    }


    .cat-image {
        width: 49px;
        height: 49px;
    }

    .cat-image img {
        width: 60px;
        height: 60px;
    }

    .category-row{
        overflow: auto;
    }

    .all-cat {
        justify-content: flex-start;
        flex-wrap: nowrap;
        row-gap: 10px;
        margin-bottom: 25px;
    }

    .cat-name span {
        height: fit-content;
    }

    .each-cat {
        gap: 6px;
    }

    .cat-name span {
        font-size: 12px;
        font-weight: 500;
    }

    .category-row::-webkit-scrollbar{
        display: none;
    }

    .category-slide-text {
        font-size: 11px;
    }

    .category-more-slide {
        width: 79px;
        height: 79px;
        min-width: 79px;
    }

}

@media screen and (max-width: 425px){

    .filter-box {
        width: 100%;
    }

    .no-product span{
        font-size: 12px;
    }

}

@media screen and (max-width: 375px){

}

@media screen and (max-width: 320px){

    .col-product {
        width: 100%;
    }
    .col-product {
        padding-inline: 5px;
    }


}






/*responsive*/











