.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: row;
}

.spinner {
    margin-top: 16px;
    /* display: none; */
    /* margin-left: -35px; */
    margin-left: 12px;
    width: 40px;
    height: 40px;
    border: 4px solid white;
    border-top: 4px solid var(--green-background);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}