﻿.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.spinner {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    position: absolute;
    background-color: #ff7223a6;
    border-radius: 50%;
    animation: spin 2.5s linear infinite;
    transform-origin: 50% 50%;
    animation-delay: calc(var(--i) * -0.15s);
    width: calc(10px + var(--i) * 1px);
    height: calc(10px + var(--i) * 1px);
    transform: rotate(calc(var(--i) * 36deg)) translateY(-85px);
}

@keyframes spin {
    0% {
        transform: rotate(0deg) translateY(-60px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateY(-60px) rotate(-360deg);
    }
}