#loader {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.dot-pulse {
    position: relative;
    left: -9999px;
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
    background-color: #ffffff;
    color: #ffffff;
    box-shadow: 9999px 0 0 -12.5px;
    -webkit-animation: dot-pulse 1.5s infinite linear;
    animation: dot-pulse 1.5s infinite linear;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
.dot-pulse::before, .dot-pulse::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
    background-color: #ffffff;
    color: #ffffff;
}
.dot-pulse::before {
    box-shadow: 9961.5px 0 0 -12.5px;
    -webkit-animation: dot-pulse-before 1.5s infinite linear;
    animation: dot-pulse-before 1.5s infinite linear;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.dot-pulse::after {
    box-shadow: 10036.5px 0 0 -12.5px;
    -webkit-animation: dot-pulse-after 1.5s infinite linear;
    animation: dot-pulse-after 1.5s infinite linear;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes dot-pulse-before {
    0% {
        box-shadow: 9961.5px 0 0 -12.5px;
    }
    30% {
        box-shadow: 9961.5px 0 0 5px;
    }
    60%, 100% {
        box-shadow: 9961.5px 0 0 -12.5px;
    }
}

@keyframes dot-pulse-before {
    0% {
        box-shadow: 9961.5px 0 0 -12.5px;
    }
    30% {
        box-shadow: 9961.5px 0 0 5px;
    }
    60%, 100% {
        box-shadow: 9961.5px 0 0 -12.5px;
    }
}
@-webkit-keyframes dot-pulse {
    0% {
        box-shadow: 9999px 0 0 -12.5px;
    }
    30% {
        box-shadow: 9999px 0 0 5px;
    }
    60%, 100% {
        box-shadow: 9999px 0 0 -12.5px;
    }
}
@keyframes dot-pulse {
    0% {
        box-shadow: 9999px 0 0 -12.5px;
    }
    30% {
        box-shadow: 9999px 0 0 5px;
    }
    60%, 100% {
        box-shadow: 9999px 0 0 -12.5px;
    }
}
@-webkit-keyframes dot-pulse-after {
    0% {
        box-shadow: 10036.5px 0 0 -12.5px;
    }
    30% {
        box-shadow: 10036.5px 0 0 5px;
    }
    60%, 100% {
        box-shadow: 10036.5px 0 0 -12.5px;
    }
}
@keyframes dot-pulse-after {
    0% {
        box-shadow: 10036.5px 0 0 -12.5px;
    }
    30% {
        box-shadow: 10036.5px 0 0 5px;
    }
    60%, 100% {
        box-shadow: 10036.5px 0 0 -12.5px;
    }
}