.products-list .product .colors-inline-variations {
    margin: 0 auto !important;
    position: inherit;
    text-align: left;
	padding-bottom: 10px;
	min-height: 0px !important;
	
}

.products-grid .product .colors-inline-variations {
    margin: 0 auto !important;
    position: relative;
    text-align: center;
}

.products-list .product .colors-inline-variations img {
    display: inline-block !important;
	height:20px;
}


.products-grid .product .colors-inline-variations img {
    display: inline-block !important;
}

.snow-flake {
    position: absolute;
    left: 0;
    z-index: 1001;
    font-size: 1.5em;
    opacity: 0;
}

.product a:hover .snow-flake, .product a:focus .snow-flake {
    color: #80b8ec;
}

.spinner-jan-single-product {
    position: relative;
    top: 200px;
    right: 50px;
    width: 100%;
    height: 100px;
    background: url(../images/spinner-jan.gif);
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-position: center center;
    z-index: 999;
    display: none;
}

@media screen and (max-width: 800px) {
    .spinner-jan-quick-view {
        top: 10px !important;
        left: 0 !important;
		display:none;
    }
}

.spinner-jan-quick-view {
    position: relative;
    top: 250px;
    right: 220px;
    width: 100%;
    height: 100px;
    background: url(../images/spinner-jan.gif);
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-position: center center;
    z-index: 999;
    display: none;
}

.page-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-left: -125px; /* Adjust left margin to center horizontally */
    margin-top: -125px; /* Adjust top margin to center vertically */
    z-index: 9999;
    background-color: rgb(255 255 255 / 75%);
    border: 1px solid #b1b1b1;
    backdrop-filter: blur(1px);
    z-index: 999999;
    pointer-events: none;
    opacity: 1; /* Set initial opacity */
    transition: all 0.3s; /* Add transition effect */
}

.page-overlay.loaded {
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s;
}

.page-overlay .loader-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	
}
.loader-text {
    font-weight: 600;
    margin-top: 20px;
}

svg.loader {
    display: block;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transform-origin: 50%;
    animation: rotate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

svg.loader circle {
    stroke: #4e8fd1;
    stroke-dasharray: 1px, 295px;
    stroke-linecap: round;
    animation: line;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.hidden-overlay {
    visibility: hidden !important;
}

@keyframes rotate {
    100% {
        transform: translate3d(0, 0, 0) rotate(360deg);
    }
}

@keyframes line {
    50% {
        stroke-dasharray: 295px, 295px;
        stroke-dashoffset: -105px;
    }
    100% {
        stroke-dasharray: 295px, 295px;
        stroke-dashoffset: -295px;
    }
}