@charset "UTF-8";

.st0 {
  fill: #ffffff;
}

.st1 {
  fill: #9289c1;
}

.st2 {
  fill: #ee732a;
}

.st3 {
  fill: #2357a4;
}

.st4 {
  fill: #7091ca;
}


.player > div {
  width: 100% !important;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: auto !important;
}

/* Contenedor principal para centrar el reproductor */
.custom-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  width: 100%;
}

/* La tarjeta blanca (el estilo de tu imagen) */
.controls-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  background-color: #ffffff;
  width: 100%;
  max-width: 320px;
  /* Tamaño ideal para sidebar */
  height: 100px;
  border-radius: 30px;
  /* Bordes muy redondeados como la imagen */
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  /* Sombra suave y moderna */
  border: 1px solid rgba(0, 0, 0, 0.02);
  /* Borde casi imperceptible para definir forma */
}

/* Estilo base para los botones */
.btn-audio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: none;
  color: #2357a4;
  /* El gris azulado de la imagen */
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  outline: none !important;
  /* Efectos al pasar el mouse */
}
.btn-audio:hover {
  color: #9da3b0;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.btn-audio {
  /* Efecto al hacer clic (feedback táctil) */
}
.btn-audio:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.btn-audio {
  /* Botón central (Play) más grande */
}
.btn-audio.play-main {
  font-size: 2.4rem;
  color: #2357a4;
}

/* Ocultar el reproductor nativo de HTML5 para que no estorbe */
audio {
  display: none !important;
}

/* Ajuste opcional para móviles */
@media (max-width: 480px) {
  .controls-container {
    max-width: 100%;
    height: 80px;
  }
}
/* Animación de rotación */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading-icon {
  display: inline-block;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
  color: #2357a4;
}

/* Estado visual cuando está cargando (opcional: desvanece un poco los botones laterales) */
.is-loading .btn-audio:not(.play-main) {
  opacity: 0.4;
  pointer-events: none;
}

#prevBtn,
#nextBtn {
  display: none;
}
