<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# Spinner / Preloader Style 1
--------------------------------------------------------------*/
.atomion-spinner {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9999 !important;
}

.atomion-spinner.style-1 &gt; div {
    height: 40px;
    width: 6px;
    margin-right: 4px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.atomion-spinner.style-1 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.atomion-spinner.style-1 .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.atomion-spinner.style-1 .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.atomion-spinner.style-1 .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
    }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
    }
}</pre></body></html>