﻿.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
}

.loader-spinner {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    border: 5px solid var(--black);
    border-radius: 50%;
    border-bottom-color: transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}