/* ====================== 10-UPLOAD-PROGRESS.CSS ====================== */
/* Стили прогресс-бара загрузки файла */

#uploadProgressModal {
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
}

#uploadProgressModal .modal-content {
    max-width: 360px;
    padding: 25px;
    text-align: center;
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#progressBar {
    height: 100%;
    width: 0%;
    background: #27ae60;
    transition: width 0.4s ease-in-out;
}

body.theme-dark #uploadProgressModal .modal-content {
    background: #2d2d2d;
}