#globalLoader {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #f8f9fa;
    flex-direction: column;
}

#globalLoader .water {
    width: 200px;
    height: 200px;
    background-color: #A8C300;
    border: 9px solid black;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, .5), 0 4px 10px 0 rgba(0, 0, 0, .5);
    overflow: hidden;

}

#globalLoader .water::after, .water::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    left: -30px;
    top: -130px;
    background-color: #fff;
}

#globalLoader .water::before {
    border-radius: 45%;
    background: rgba(255, 255, 255, .7);
    animation: wave 5s linear infinite;
}

#globalLoader .water::after {
    border-radius: 35%;
    background: rgba(255, 255, 255, .3);
    animation: wave 5s linear infinite;
}

@keyframes wave {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

#globalLoader h2, h3 {
    font-weight: 600;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    font-family: "Open Sans", sans-serif;
}

#globalLoader h2 {
    font-size: 2.5rem;
    line-height: 3rem;
}


#globalLoader h3 {
    font-size: 2.25rem;
    line-height: 2.75rem;
}
