.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsla(0, 0%, 0%, 0);
    z-index: 9999;
}

.spinner-overlay {
    position: fixed;
    margin-bottom: -50px !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
}

.spinner img {
    width: 60px;
    height: auto;
    animation: spin 1s linear infinite;
}

.spinner-overlay img {
    width: 50px !important;
    height: auto;
    animation: spin 1s linear infinite;
    margin-bottom: -223px !important;
}

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

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

.hidden {
    display: none;
}

.d_none {
    display: none;
}


.section-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.section-spinner img.spinner-icon {
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    opacity: 0.8; }