.spinner-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.123);
    z-index: 19;
}

.spinner-wrapper.active {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 5px solid lightgray;
    border-top: 5px solid white;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}