.loader {
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 9999; 
} 
.loader-open {
    overflow: hidden;
}
.show-variation-cls{
    float:right;
}
.is_wishlist{
    color: red; /* Set the fill color */
    font-size: 1.5rem; /* Adjust the size as needed */
    transition: color 0.3s ease-in-out; /* Optional transition effect */
}

/* Thin scrollbar track */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the scrollbar track */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar handle on hover */
}

