/* standalone-preloader/preloader.css */

.preloader-wrap {
    background-color: #1C76BC;
    /* Flashart Blue */
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader-2 {
    display: inline-block;
    text-align: center;
}

.loader-text {
    font-size: 20px;
    color: #ffffff;
    margin-top: 10px;
    opacity: 0.6;
    font-family: sans-serif;
}

.preloader-2 .line {
    width: 2px;
    height: 40px;
    background: #ffffff;
    margin: 0 4px;
    display: inline-block;
    animation: opacity-2 1000ms infinite ease-in-out;
}

.preloader-2 .line-1 {
    animation-delay: 800ms;
}

.preloader-2 .line-2 {
    animation-delay: 600ms;
}

.preloader-2 .line-3 {
    animation-delay: 400ms;
}

.preloader-2 .line-4 {
    animation-delay: 200ms;
}

.preloader-2 .line-5 {
    animation-delay: 0ms;
}

.preloader-2 .line-6 {
    animation-delay: 200ms;
}

.preloader-2 .line-7 {
    animation-delay: 400ms;
}

.preloader-2 .line-8 {
    animation-delay: 600ms;
}

.preloader-2 .line-9 {
    animation-delay: 800ms;
}

@keyframes opacity-2 {
    0% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0;
        height: 24px;
    }

    100% {
        opacity: 1;
        height: 40px;
    }
}

/* Class to fade out preloader */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}