h1h1/* Theme Name: Lakes
    Description: Responsive coming soon template
    Author: Margo
    Author URI: https://themeforest.net/user/margo_89
    Version: 1.0

This file defines default appearance of the site preloader.
Please, do not change the contents of this file.   */

#page-preloader 
{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000!important;
    z-index: 999;
}
#spinner 
{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: absolute;
    left: 45%;
    top: 40%;
    border-left: 5px solid #20A2B3;
    border-right: 5px solid #20A2B3;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    box-shadow: 0 0 10px rgba(92, 180, 192, .5);
    animation: spinner 4s infinite;
    animation-timing-function: linear;
}
@keyframes spinner 
{
    0%{
        transform: rotate(0deg);
        width: 70px;
        height: 70px;
        top: 45%;
        left: 45%;
    }
    40%{
        width: 50px;
        height: 50px;
        top: 46%;
        left: 45.5%;
    }
    100%{
        transform: rotate(1440deg);
        width: 70px;
        height: 70px;
        top: 45%;
        left: 45%;
    }
}