/* Page Loader */
.js .loading::before {
    content: '';
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    background: var(--primary);
}

.js .loading::after {
    content: '';
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    pointer-events: none;
    background: #fff;
    animation: animloader 0.3s 0.3s linear infinite alternate;
}

@keyframes loaderAnim {
    to {
        transform: translate3d(0,-100px,0);
    }
}

#loader_wrapper{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;

    content: '';
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    background: var(--primary);
    justify-content: center;
    align-items: center;
}

#loader_wrapper.loaded{
    visibility: hidden;
    display:none;
}


.loader {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 20px;
    margin-top: 10px;
    position: relative;
    background: currentColor;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 0.5s 0.5s linear infinite alternate;
}
.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 20px;
    animation: animloader1 0.5s  0.45s  linear infinite alternate;
}
.loader::before {
    left: -20px;
    animation-delay: 0s;
}

@keyframes animloader {
    0% {
        height: 40px;
        transform: translateY(0);
    }
    100% {
        height: 10px;
        transform: translateY(30px);
    }
}

@keyframes animloader1 {
    0% {
        height: 48px;
    }
    100% {
        height: 4.8px;
    }
}

