
.loader-container 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(255,255,255,.7);
}

.water-loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
}
    
.water {
    width: 60px;
    height: 60px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 184, 119, 0.5)), to(rgba(91, 184, 119, 0.8)));
    background: -o-linear-gradient(top, rgba(91, 184, 119, 0.5), rgba(91, 184, 119, 0.8));
    background: linear-gradient(to bottom, rgba(91, 184, 119, 0.5), rgba(91, 184, 119, 0.8));
    border-radius: 50%;
    position: relative;
    -webkit-animation: water 1.5s ease-in-out infinite;
            animation: water 1.5s ease-in-out infinite;
}

.water:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 50px;
    height: 50px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 184, 119, 0.7)), to(rgba(91, 184, 119, 0.3)));
    background: -o-linear-gradient(top, rgba(91, 184, 119, 0.7), rgba(91, 184, 119, 0.3));
    background: linear-gradient(to bottom, rgba(91, 184, 119, 0.7), rgba(91, 184, 119, 0.3));
    border-radius: 50%;
}

.water:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 20px;
    background: rgba(91, 184, 119, 0.5);
    border-radius: 50%;
    -webkit-filter: blur(10px);
            filter: blur(10px);
}

.water:nth-child(1) {
    margin-right: -30px;
    -webkit-animation-delay: -1.2s;
            animation-delay: -1.2s;
}

.water:nth-child(2) {
    margin-right: -30px;
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
}

.water:nth-child(3) {
    margin-right: -30px;
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
}

.water:nth-child(4) {
    margin-right: -30px;
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
}

.water:nth-child(5) {
    margin-right: -30px;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.water:nth-child(6) {
    margin-right: -30px;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}

@-webkit-keyframes water {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes water {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

.loader-01 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
            animation: rotation 1s linear infinite;
}
.loader-01::after {
    content: '';  
    -webkit-box-sizing: border-box;  
            box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid #FF3D00;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}
@-webkit-keyframes rotation {
    0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    }
}
@keyframes rotation {
    0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    }
} 

.preloader-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff;
}
.preloader-area .spinner {
    width: 55px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -70px;
    margin-left: -65px;
}
.preloader-area .spinner > div {
    background-color: #007aff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.preloader-area .spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.preloader-area .spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.preloader-area .spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.preloader-area .spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
    0%,
    100%,
    40% {
        -webkit-transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}
@keyframes sk-stretchdelay {
    0%,
    100%,
    40% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}