.body.loading {
    overflow: hidden;
}

.loading-section {
    display: none;
    width: 100%;
    height: 100%;
    background: var(--background);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

.loading-section.active {
    display: block;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--white);
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--background);
    animation: rotate 0.5s infinite;
    border-radius: 50%;
    transition: all 0.5s;
}