.progress-bar-container {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 10;
    backdrop-filter: blur(10px);

    animation: show-progress-bar 0.5s ease-out;
}

.progress-bar-container.show {
    display: block;
}

@keyframes show-progress-bar {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.progress-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-self: center;
    width: 400px;
    background-color: white;
    border-radius: 7px;
    padding: 16px 20px 20px 20px;

    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
}

.progress-card>h3 {
    position: relative;
    text-align: center;
    margin: 6px 0 8px 0;
    color: var(--text-primary);
}

.progress-card>.progress-body {
    text-align: center;
    margin: 0 0 14px 0;
    color: var(#5e717e);
    font-size: 0.95rem;
}

.progress-bar {
    position: relative;
    justify-self: center;
    width: 90%;
    height: 5px;
    background-color: #dadada;
    border-radius: 50px;
    margin: 40px auto 0 auto;
}

.progress-fill {
    position: relative;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--theme-color);
    border-radius: 50px;
}