.preloadertransparent {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #29cd9b4f;
    z-index: 9999999;
    text-align: center;
}

/* Preloader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000080;
    z-index: 9999999;
    text-align: center;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 40px;
    display: flex;
    align-items: center;
}

.loader-line {
    width: 7px;
    height: 40px;
    background: #fff;
    margin: 0 3px;
    border-radius: 3px;
    animation: loading 1s infinite;
}

    .loader-line:nth-child(2) {
        animation-delay: 0.1s;
    }

    .loader-line:nth-child(3) {
        animation-delay: 0.2s;
    }

    .loader-line:nth-child(4) {
        animation-delay: 0.3s;
    }

    .loader-line:nth-child(5) {
        animation-delay: 0.4s;
    }

    .loader-line:nth-child(6) {
        animation-delay: 0.5s;
    }

    .loader-line:nth-child(7) {
        animation-delay: 0.6s;
    }

    .loader-line:nth-child(8) {
        animation-delay: 0.7s;
    }

@keyframes loading {
    0% {
        height: 0;
    }

    50% {
        height: 40px;
    }

    100% {
        height: 0;
    }
}

.hide {
    display: none;
}
