/* This file is reserved for overriding and extending the template styles. */
.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 9999;
}

.loader-image {
    width: 100%;
    height: 100%;
    animation: growShrink 2s infinite;
}

.splashes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.splash {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    animation: splash 1s infinite;
}

.splash:nth-child(1) {
    top: -30px;
    left: 0;
    animation-delay: 0.2s;
}

.splash:nth-child(2) {
    top: 0;
    left: -30px;
    animation-delay: 0.4s;
}

.splash:nth-child(3) {
    top: 0;
    left: 30px;
    animation-delay: 0.6s;
}

@keyframes growShrink {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
}

@keyframes splash {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}