header{
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: fit-content;
	background: -webkit-linear-gradient(to right, #000, #000, #000, #343e63, #000, #000, #000); 
    background: linear-gradient(to right, #000, #000, #000, #343e63, #000, #000, #000);
    position: fixed;
    top: 0;
    z-index: 100;
    border-radius: .46875rem;
    box-shadow: inset 0 0 .375rem rgba(127,220,255,.75);
}

#audio-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px; /* Puedes ajustar el ancho máximo según tus necesidades */
    height: fit-content;
    margin: 0 auto;
    padding: .625rem;
    box-sizing: border-box;
}

.video-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    filter: opacity(.25);
    z-index: -1;
}

#wave-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 1.25rem;
}

.wave {
  width: .1875rem;
  height: .0625rem;
  margin: 0 .15625rem;
  border-radius: .15625rem;
  background: goldenrod;
}

.wave.active {
    transform: scale(1); /* Escala completa al estar activo */
}

.logotype img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 3.75rem;
}

#current-song-title {
    color: #e1e1e1;
    text-shadow: -2px -4px 2px black;
    margin-bottom: 2%;
}

#controls {
    display: flex;
    align-items: center;
}

#controls button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
}

#play-pause-btn .material-icons{
    margin: auto;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.875rem;
    color: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: ;
    border-radius: 50%;
    box-shadow: 0 0 .75rem #02ff67;
    cursor: pointer;
    padding: .15825rem
}

#play-pause-btn .material-icons:hover{
	background: -webkit-linear-gradient(to bottom, rgba(0,0,0,.5), rgba(41,192,96,.5), rgba(0,0,0,.5));
    background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(41,192,96,.5), rgba(0,0,0,.5));
}

#play-pause-btn.play .material-icons{
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.875rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .15825rem
}

#play-pause-btn.pause .material-icons{
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.875rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: -webkit-linear-gradient(225deg, #d82b56,#be264c,#920c2d);
    background: linear-gradient(225deg, #d82b56,#be264c,#920c2d);
    box-shadow: 0 0 .75rem #e1e1e1;
    padding: .15825rem
}

#play-pause-btn.pause .material-icons:hover{
    background: -webkit-linear-gradient(90deg, #a62142,#8c1c38,#a62142);
    background: linear-gradient(90deg, #a62142,#8c1c38,#a62142);
}

#volume-btn .material-icons{
    cursor: pointer;
    font-size: 1.5rem;
    color: #e1e1e1;
    margin: 0 10px;
}

#volume-slider {
    width: 100%;
}

#time-elapsed {
    margin: 0;
    width: 3.75rem;
    font-size: 1rem;
    color: #e1e1e1
}

@media only screen and (max-width: 700px) {
    header{
        height: 3.5rem;
    }
    .logotype img {
        width: 2.75rem;
    }
    #play-pause-btn .material-icons{
        margin-left: 2rem;
        margin-right: .75rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.5rem;
        border-radius: 50%;
    }
    #play-pause-btn.play .material-icons, #play-pause-btn.pause .material-icons{
        margin-left: 2rem;
        margin-right: .75rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.5rem;
    }
    #volume-slider {
        width: 80%;
    }
    #time-elapsed {
        display: none
    }
    #current-song {
        display: none
    }
    .wave {
        display: none
    }
}

@keyframes wave {
  0% {
    height: 5px;
  }
  50% {
    height: 15px;
  }
  100% {
    height: 5px;
  }
}

@media screen and (min-width:1200px){
    header{
    background: -webkit-linear-gradient(to right, #000, #343e63, #000, #343e63, #000, #343e63, #000, #343e63, #000, #000, #000); 
    background: linear-gradient(to right, #000, #343e63, #000, #343e63, #000, #343e63, #000, #343e63, #000, #000, #000);
    }
}
