
.loader-container
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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-1 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader-1::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #FF3D00 #FF3D00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
} 
    
@keyframes rotationBack {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(-360deg);
    }
}
      