@charset "UTF-8";

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;  
    background: #fff;
    transition: all 0.5s;
    opacity: 1;
}
.preloader-remove {
    opacity: 0;
    z-index: -10;
}

/*.preloader .preloaderImg{*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    display: relative;*/
/*    z-index:-1;*/
/*    height: 20em;*/
/*    width: 20em;*/
/*}*/

.preloader .preloaderImg{
    /*border: 0.1875em solid grey;*/
    /*border-radius: 50%;*/
    height: 16em;
    width: 16em;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(/wa-content/img/m_log_2.png);
    animation: headerLane 2s Ease-in-out;
    animation-fill-mode: forwards;
    background-size: cover;
}

.preloader .circle{
    position: absolute;
    height: 20em;
    width: 20em;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/wa-content/img/830.svg);
    opacity: .8;
}


@keyframes headerLane {
    20% {
        background-image: url(/wa-content/img/m_log_2.png);
    }
    40% {
        background-image: url(/wa-content/img/m_log_2.png);
    }
    60% {
        background-image: url(/wa-content/img/m_log_1.png);
    }
    80% {
        background-image: url(/wa-content/img/m_log_1.png);
    }
    100% {
        background-image: url(/wa-content/img/m_log_1.png);
    }
}


