/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 24 2024 | 01:07:58 */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    background: #F2F2F2;
    justify-content: center;
    align-items: center;
    animation: fadeOut 12s ease forwards;
    z-index: 9999;
    pointer-events: none; /* Disables any pointer events while it's visible */
}
*/
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

#loader {
    background-color: transparent;
}
.loader span {
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: #0098fd;
    margin: 2px;
    opacity: 0; 
    animation: moveLines 1s linear infinite alternate;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.loader span:nth-child(1) { animation-delay: 0s; }
.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }
.loader span:nth-child(4) { animation-delay: 0.6s; }
.loader span:nth-child(5) { animation-delay: 0.8s; }

@keyframes moveLines {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}