body:has(.loader-container) {
    overflow: hidden !important;
    margin: 0;
    padding: 0;
}

.loader-container {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #32333d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader {
    width: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid;
    border-color: #2096f4 #0000;
    animation: l1 1s infinite;
    position: relative;
}

@keyframes l1 {
    to {
        transform: rotate(.5turn);
    }
}

.loading-text {
    color: #2096f4;
    font-size: 17px;
    font-family: roboto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loading-progress-text {
    color: #2096f4;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
}