﻿#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b212f;
    z-index: 9999999999;
    opacity: 0;
    transition: .3s;
    display: none;
}

    #loader.loadpage {
        background-color: #ee2d7a;
        opacity: 1;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

    #loader.loadpage-submit {
        background-color: rgba(200, 200, 200, 0.5);
        opacity: 1;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }



.pre-loader {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999991;
    background-color: #fff;
}

#loader.loadpage-submit .pre-loader {
    background-color: unset;
}

.pre-loader:before {
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0.15;
    background-color: #fff;
}

#loader.loadpage-submit .pre-loader:before {
    background-color: transparent;
}

.loader-inner {
    padding: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader-text {
    display: inline-block;
    font-size: 3.75rem;
    font-weight: bold !important;
    letter-spacing: 1px;
    line-height: normal;
    text-transform: uppercase;
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-animation: textclip 1.5s linear infinite;
    animation: textclip 1.5s linear infinite;
}

.loader-text {
    background-image: #fff
}

#loader.loadpage-submit .loader-text {
    color: #ee2d7a;
}

-webkit-@keyframes textclip {
    to

{
    background-position: 200% center;
}

}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}
