/* Loader container */
.loader-container_1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 98%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* Hide loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Progress bar */
.progress-bar_1 {
    width: 300px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.progress_1 {
    /*width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4a6bff, #6a5acd);*/ /* Gradient color */
    /*transition: width 0.1s linear;
    animation: fillColor 0.6s ease-in-out infinite;*/

    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4a6bff, #6a5acd);
    animation: progress 4.5s ease-in-out infinite;
    border-radius: 3px;
}

/* Loader text */
.loader-text {
    margin-top: 50px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    position:absolute;
}

/* Animation for color filling effect */
@keyframes fillColor {
   /* 0% {
        background: #e0e0e0;
    }

    100% {
        background: linear-gradient(90deg, #4a6bff, #6a5acd);
    }*/
    0% {
        width: 0%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}
