﻿#initialOverlay{position:fixed;display:block;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(255,255,255,1);z-index:2;cursor:pointer}
/*#initialLoader{position:absolute;left:50%;top:50%;z-index:1;width:150px;height:150px;margin:-75px 0 0 -75px;border:16px solid #f3f3f3;border-radius:50%;border-top:16px solid #444;width:120px;height:120px;-webkit-animation:loader-spin 2s linear infinite;animation:loader-spin 2s linear infinite}*/
@-webkit-keyframes loader-spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}
@keyframes loader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.animate-loader-bottom{-webkit-animation-name:animateloaderbottom;-webkit-animation-duration:1s;animation-name:animateloaderbottom;animation-duration:1s}
@-webkit-keyframes animateloaderbottom{from{bottom:-100px;opacity:0}to{bottom:0;opacity:1}}
@keyframes animateloaderbottom{from{bottom:-100px;opacity:0}to{bottom:0;opacity:1}}

#initialLoader {
    position: absolute;
    width: 100%;
    left: calc(50vw - 64px);
    top: 50%;
    z-index: 1;
    margin: 50px;
    height: 28px;
    width: 28px;
    animation: rotate 0.8s infinite linear;
    border: 2px solid #444;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

