.InterventionForm_Audio_Transcript {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsl(0, 0%, 0%, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border: 1px solid #898989;
    z-index: 11;
    overflow: auto;
}

.InterventionForm_Audio_Transcript-frame {
    flex-grow: 1;
    min-width: 0;
    margin-top: auto;
    margin-bottom: auto;
    background-color: white;
    max-width: 600px;
    border-radius: 6px;
    padding: 16px;
}

.InterventionForm_Audio_Transcript-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.InterventionForm_Audio_Transcript-title-text {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    word-wrap: break-word;
}

.Transcription_copy_element.mobile {
    margin-left: auto;
}

.InterventionForm_Audio_Transcript-close {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    border-radius: 3px;
}
.InterventionForm_Audio_Transcript-close:hover {
    background-color: hsl(0, 0%, 95%);
}

.InterventionForm_Audio_Transcript-copied {
    background-color: black;
    border-radius: 3px;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    color: white;
}

@media (min-width: 992px) {
    .Transcription_copy_element.mobile {
        display: none;
    }
}

@media (max-width: 992px) {
    .Transcription_copy_element.desktop {
        display: none;
    }
}