#initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
    z-index: 9999;
}

#initial-loader .loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

#initial-loader .loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

#initial-loader .loader-circle:nth-child(1) {
    border-top-color: #1890ff;
    animation-delay: 0s;
}

#initial-loader .loader-circle:nth-child(2) {
    border-right-color: #1890ff;
    animation-delay: 0.4s;
}

#initial-loader .loader-circle:nth-child(3) {
    border-bottom-color: #1890ff;
    animation-delay: 0.8s;
}

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

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