html, body {
    overflow-x: hidden;
}

#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #210657;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

.loader-page {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-top: 4px solid #01ecc8;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader-page::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid #ffc000;
        border-bottom: 4px solid transparent;
        animation: rotation 0.5s linear infinite reverse;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fade-out {
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

    .fade-out .loader-page {
        transition: opacity 1s ease-out;
        opacity: 0;
    }