/* =Loader
-------------------------------------------------------------- */

.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #ffffff;
}

.loading {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 60px;
    height: 60px;
    z-index: 2;
}

.loader-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid rgba(37, 99, 235, 0.1);
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

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

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