.upload-progress-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}


.progress-bar-label {
    position: absolute;
    font-weight: bold;
    text-shadow: 0 0 1px black, 0 0 1px black, 0 0 1px black, 0 0 1px black;
    color: #fff;
}

progress {
    background-color: #fff;
    border-radius: .25rem;
    height: 25px;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
    -webkit-appearance: none;
}

::-webkit-progress-bar {
    background-color: #fff;
    border-radius: .25rem;
    height: 25px;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
}

::-webkit-progress-value {
    background-color: #00338d;
    border-radius: .25rem;
}

::-moz-progress-bar {
    background-color: #00338d;
    border-radius: .25rem;
}

.wpcf7-form.file-upload-success > *:not(.wpcf7-response-output) {
    display: none !important;
}

.wpcf7-form.file-upload-success > .wpcf7-response-output {
    display: block !important;
    border: none;
}