/* ONESIGNAL BOTÓN FLOTANTE */
div#onesignal-bell-launcher {
    display: none !important;
}

/* Botón de reproducción */
.audio_player_button_dum {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.play-audio-btn {
    background-color: #a80000;
    color: white;
    font-size: 25px;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 60px;
    width: 60px;
    justify-items: center;
}

.play-audio-btn:hover {
    background-color: #a80000c4;
    transform: scale(1.1);
}

.play-audio-btn:focus {
    outline: none;
}

.play-audio-btn:active {
    transform: scale(1.05);
}

/* Loader para indicar generación de audio */
div#loader_spin {
    display: none;
    width: 35px;
    height: 35px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #323232;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
