.audio-controls {
    display: flex;
    align-items: start;
}

.wave-btn {
    background: none;
    padding: 0;
    margin: 0 1.5px !important;
    width: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.1s ease-out;
}

.wave-btn:hover i{
    color: var(--blue-unimar);
}

.wave-btn i {
    font-size: 20px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.time-bar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.time-left, .time-right {
    color: #6c757d;
    font-size: 16px;
    width: 50px;
    text-align: center;
}
.wave-bar {
    height: 125px; /* Ajusta la altura que desees */
    overflow: hidden; /* Evitar el desplazamiento interno si es necesario */
    flex-grow: 1;
    margin: 0 10px;
}

.fas.fa-circle-notch {
    font-size: 1.5rem;
}

.episode-info {
    max-width: 60%;
}

.episode-info p{
    font-size: 18px;
}

.episode-info p, .episode-info i {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.program-thumb{
    width: 204px;
    height: 204px;
    margin-right: 26px;
    float: left;
}

.program-thumb img{
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

.time-bar-wrap{
    width: calc(100% - 230px);
}

.loading-line {
    width: calc(96% - 100px);
    height: 1.5px;
    background-color: #0f4c98; /* Color sólido antes de la animación */
}

.loading-text{
    position: absolute;
    top: 27px;
    color:#0f4c98;
    font-weight: bold;
    animation: fade-text 1.5s ease-in-out infinite;
}

.loading {
    background: linear-gradient(
    90deg,
        rgba(15, 76, 152, 0.3) 0%,
        #0f4c98 50%,
        rgba(15, 76, 152, 0.3) 100%
    );
    background-size: 200% 100%;
    animation: loading-gradient 1.5s infinite;
}

@keyframes loading-gradient {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@keyframes fade-text {
    0% {
        opacity: 0.5; /* Claro */
    }
    50% {
        opacity: 1; /* Oscuro */
    }
    100% {
        opacity: 0.5; /* Claro */
    }
}

@media(min-width: 1580px){
    .radio-programs{
        max-width: 1500px;
        margin-left: calc((100% - 1500px)/2) !important;
    }
}

@media(max-width: 750px){
    .info-controls{
        flex-direction: column-reverse;
        align-items: center;
    }
}

@media(max-width: 530px) {
    .row .wave-audio{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0 !important;
    }

    .program-thumb{
        display: none;
    }

    .time-bar-wrap{
        width: 100%;
        margin: 10px 0;
    }

    .info-controls{
        text-align: center;
    }
}