/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #222831;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    border: 5px solid rgba(255, 184, 76, 0.2);
    border-top: 5px solid #FFB84C;
    animation: spin 1.5s linear infinite;
}

.loader-circle:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left: 3px solid #76ABAE;
    animation: spin-reverse 1s linear infinite;
}

.loader-circle:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-right: 2px solid #CE4F4F;
    animation: spin 1s linear infinite;
}

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

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