.loader{
    position: fixed;overflow-x: hidden;width: 100%;height: 100%;background-color: #fff;z-index: 99999;
    
    
    
    
        
}
.loader img{
    top: 50%;left: 50%;
    
    position: fixed;
    margin-top: -32px;
    margin-left: -32px; 
}
.loader.Hidden img{
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

.loader.Hidden {
    animation: fadeOut2 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeOut{
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes fadeOut2{
    100% {
        opacity: 0;
    }
}







