/* ADDED THIS ON 30th SEPT 2024 */

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.601);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader::after{
    content: "";
    width: 80px;
    height: 80px;
    border: 15px solid white;
    border-top-color: rgb(0, 85, 255);
    border-radius: 50%;
    animation: loadingCricle 1s ease-in-out infinite;
}

.hideLoader{
    visibility: hidden;
    opacity: 0;
}

@keyframes loadingCricle {
    0%{
        transform: rotate(0turn)
    }
    100%{
        transform: rotate(2turn)
    }
}


#progress-container{
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
}

#progress-bar{
    width: 0%;
    height: 15px;
    background-color: #4caf50;
    text-align: center;
    line-height: 15px;
    color: white;
}