/* Composant isolé de progression des médias du dépôt Témoignages. */
.testimony-media-uploader {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--testimony-line);
}

.testimony-upload__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.testimony-upload-item {
    padding: 16px;
    border: 1px solid var(--testimony-line);
    background: var(--testimony-paper);
}

.testimony-upload-item__header,
.testimony-upload-item__progress,
.testimony-upload-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimony-upload-item__header {
    justify-content: space-between;
}

.testimony-upload-item__header strong,
.testimony-upload-item__header small {
    display: block;
    overflow-wrap: anywhere;
}

.testimony-upload-item__header small,
.testimony-upload-item__progress small {
    color: var(--testimony-muted);
    font-size: 12px;
}

.testimony-upload-item__header > span {
    color: var(--testimony-accent-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.testimony-upload-item__progress {
    margin-top: 14px;
}

.testimony-upload-item__preview {
    margin-top: 14px;
}

.testimony-upload-item__preview img,
.testimony-upload-item__preview video {
    display: block;
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    background: #171714;
}

.testimony-upload-item__preview audio {
    width: 100%;
}

.testimony-upload-item progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #ded8cd;
}

.testimony-upload-item progress::-webkit-progress-bar { background: #ded8cd; }
.testimony-upload-item progress::-webkit-progress-value { background: var(--testimony-accent-deep); }
.testimony-upload-item progress::-moz-progress-bar { background: var(--testimony-accent-deep); }

.testimony-upload-item__progress > span {
    min-width: 38px;
    font-size: 12px;
    text-align: right;
}

.testimony-upload-item__progress > small {
    min-width: 72px;
    text-align: right;
}

.testimony-upload-item__actions {
    justify-content: flex-end;
    margin-top: 12px;
}

.testimony-upload-item__actions button {
    padding: 6px 0;
    border: 0;
    color: var(--testimony-accent-deep);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.testimony-upload-item[data-state="failed"] {
    border-color: #9c3b35;
}

.testimony-upload-item[data-state="removed"] {
    opacity: 0.55;
}

[data-wizard-submit].is-uploading-media::after,
[data-wizard-submit].is-loading::after {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 9px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    content: "";
    vertical-align: -2px;
    animation: testimony-media-spinner 800ms linear infinite;
}

@keyframes testimony-media-spinner {
    to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .testimony-upload-item__progress {
        flex-wrap: wrap;
    }

    .testimony-upload-item__progress progress {
        flex-basis: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-wizard-submit].is-uploading-media::after,
    [data-wizard-submit].is-loading::after {
        animation-duration: 1ms;
    }
}
