#de-loader {
    position: fixed;
    z-index: 20000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #030a1c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
    position: relative;
    width: 110px;
    height: 110px;
}

.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: loader-spin 1.5s linear infinite;
}

.loader-circle:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    bottom: 9px;
    border: 3px solid transparent;
    border-top-color: #ff9d00;
    border-radius: 50%;
    animation: loader-spin 2s linear infinite;
}

.loader-circle:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid transparent;
    border-top-color: #4facfe;
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
