.cat-filter-ss{
    margin-bottom: 21px;;
}
.dropdown-filterr {
    position: relative;
    width: 100%;
    z-index: 99999999;
}

.dropdown-filterr-button {
    width: 100%;
    padding: 5px;
    /* background: #3498db; */
    color: #000;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    display: flex
    ;
        align-items: center;
        justify-content: space-between;
}

.dropdown-filterr-button:hover {
    color: #ba252f;
}

.dropdown-filterr-list {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    /* margin-top: 5px; */
    z-index: 10;
    padding: 5px 0;
}

/* Custom Scrollbar */
.dropdown-filterr-list::-webkit-scrollbar {
    width: 8px;
}

.dropdown-filterr-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.dropdown-filterr-list::-webkit-scrollbar-thumb {
    background: #ba252f;
    border-radius: 5px;
}

.dropdown-filterr-list::-webkit-scrollbar-thumb:hover {
    background: #a31e28;
}

.dropdown-filterr-list label {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    font-size: 14px;
}

.dropdown-filterr-list label:hover {
    background: #f1f1f1;
}

/* Custom Checkbox */
.dropdown-filterr-list input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ba252f;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-in-out;
}

/* Checked Checkbox Style */
.dropdown-filterr-list input[type="checkbox"]:checked {
    background: #ba252f;
    border-color: #ba252f;
}

.dropdown-filterr-list input[type="checkbox"]:checked::after {
    content: "✔";
    color: white;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Hover Effect to Open dropdown-filterr */
.dropdown-filterr:hover .dropdown-filterr-list {
    display: block;
}
@media (min-width: 768px) {
    .col-md-custom-2 {
        flex: 0 0 auto;
        width: 13.666667%!important;
    }
}

@media(max-width:767px){
    .dropdown-filterr-list{
        position: relative;;
    }
}



/* HTML: <div class="lenses-loader-main"><div class="lenses-loader"></div> </div>*/
.lenses-loader-main{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999999;
    
;
    align-items: center;
    justify-content: center;
    
    background: rgb(214 117 117 / 8%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.lenses-loader {
    width: 50px;
    aspect-ratio: 1;
    display:grid;
    -webkit-mask: conic-gradient(from 15deg,#0000,#000);
    animation: l26 1s infinite steps(12);
  }
  .lenses-loader,
  .lenses-loader:before,
  .lenses-loader:after{
    background:
      radial-gradient(closest-side at 50% 12.5%,
       #f03355 96%,#0000) 50% 0/20% 80% repeat-y,
      radial-gradient(closest-side at 12.5% 50%,
       #f03355 96%,#0000) 0 50%/80% 20% repeat-x;
  }
  .lenses-loader:before,
  .lenses-loader:after {
    content: "";
    grid-area: 1/1;
    transform: rotate(30deg);
  }
  .lenses-loader:after {
    transform: rotate(60deg);
  }
  
  @keyframes l26 {
    100% {transform:rotate(1turn)}
  }