#block-ponal-emisora {
    position: fixed;
    bottom: 5vh;
    right: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
}

#wrapEmisora {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#wrapEmisora #botonEmisora {
    z-index: 2;
    position: relative;
}

#wrapEmisora #botonEmisora img {
    border-radius: 45px;
}

#playerEmisora {
    width: 0px;
    display: flex;
    height: 0px;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-radius: 39px;
    border: 2px solid rgba(255, 255, 255, 0.70);
    background: #142749;
    position: relative;
    left: -35px;
    transition: all 0.5s ease-in;
}

#playerEmisora.openPlayer {
    width: 400px;
    height: 60px;
    padding: 20px;
}

#playerEmisora button {
    background: transparent;
    border: none;
}

#playerEmisora #muteEmisora,
#playerEmisora #pauseEmisora {
    display: none;
}

#playerEmisora #volume-slider,
#playerEmisora button,
#playerEmisora button svg {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in;
}

#playerEmisora.openPlayer #volume-slider,
#playerEmisora.openPlayer button,
#playerEmisora.openPlayer button svg {
    visibility: visible;
    opacity: 1;
}



#playerEmisora p {
    margin: 0;
    color: #A8D42E;
    text-align: center;
    font-family: 'Montserrat-Regular';
    font-size: 0px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in;
}

#playerEmisora.openPlayer p {
    font-size: 18px;
    visibility: visible;
    opacity: 1;
}


#playerEmisora svg {
    height: 40px;
    width: 40px;
}

#playerEmisora #botonEmisora {
    cursor: pointer;
}

#playerEmisora #volume-slider {
    width: 54px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: white;
    cursor: pointer;
    border-radius: 20px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    background-color: white;
    height: 8px;
    width: 8px;
    border-radius: 50%;
}


input[type="range"]::-moz-range-thumb {
    border: none;
    background-color: white;
    height: 8px;
    width: 8px;
    border-radius: 50%;
}


/**Página radio**/

.banner-radio {
    background-image: url(/sites/default/files/2024-03/Group%20272.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner-radio .lista-emisoras {
    border: none;
    font-family: 'WorkSans-Regular';
    font-size: 35px;
    color: white;
    text-align: center;
    background-image: url(/sites/default/files/Vector.png);
    background-size: unset;
    background-repeat: no-repeat;
    background-position: right;

}


.banner-radio #frecuencia {
    font-family: 'Montserrat-Bold';
    color: #A8D42E;
    font-weight: bolder;
    font-size: 55px;
}

.banner-radio #playerEmisora {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    background: #00665F80;
    height: 183px;
    border: none;
    justify-content: space-between;
}

.banner-radio #playerEmisora p {
    color: white;
}

.banner-radio .enVivo {
    font-family: 'Montserrat-Bold';
    color: #142749;
    font-weight: bolder;
    font-size: 40px;
    background: #A8D42E;
    max-width: 269px;
    text-align: center;
    margin: 20px auto;
    padding: 10px 10px 10px 20px;
    border-radius: 20px;

}

.banner-radio .enVivo::before {
    content: "";
    background-color: #142749;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse-animation 2s infinite;
}

.banner-radio .lista-emisoras option {
    color: #142749;
    font-family: 'WorkSans-Regular';
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #14274933;
    }

    100% {
        box-shadow: 0 0 0 20px #14274900;
    }
}

.soundwave-container {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    margin-right: 15px;
}



.bar {
    width: 6px;
    height: 100%;
    background: white;
    border-radius: 2px;
    margin: 0 2px;
    animation: equalizer 1.9s steps(20, end) infinite;
}

.bar:nth-child(1) {
    animation-duration: 1.9s;
}

.bar:nth-child(2) {
    animation-duration: 2.0s;
}

.bar:nth-child(3) {
    animation-duration: 1.7s;
}

.bar:nth-child(4) {
    animation-duration: 2.1s;
}


@keyframes equalizer {
    0% {
        height: 60%;
    }

    4% {
        height: 50%;
    }

    8% {
        height: 40%;
    }

    12% {
        height: 30%;
    }

    16% {
        height: 20%;
    }

    20% {
        height: 30%;
    }

    24% {
        height: 40%;
    }

    28% {
        height: 10%;
    }

    32% {
        height: 40%;
    }

    36% {
        height: 60%;
    }

    40% {
        height: 20%;
    }

    44% {
        height: 40%;
    }

    48% {
        height: 70%;
    }

    52% {
        height: 30%;
    }

    56% {
        height: 10%;
    }

    60% {
        height: 30%;
    }

    64% {
        height: 50%;
    }

    68% {
        height: 60%;
    }

    72% {
        height: 70%;
    }

    76% {
        height: 80%;
    }

    80% {
        height: 70%;
    }

    84% {
        height: 60%;
    }

    88% {
        height: 50%;
    }

    92% {
        height: 60%;
    }

    96% {
        height: 70%;
    }

    100% {
        height: 80%;
    }
}