body{
    font-family: Arial, Helvetica, sans-serif;
    color: whitesmoke;
    margin:0%;
    
}

canvas {
    display: block;
    position:absolute;
    bottom: 0px;
    z-index: 1;
  }

.player{
    height: 90vh;
    display: flex;
    align-items: right;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.wrapper{
    margin: 1rem;
    border: 1px solid transparent;
    padding: 10px 30px 30px 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    z-index: 2;
}

.musica{
    margin: 1rem;
    border: 1px solid transparent;
    padding: 10px 30px 30px 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    z-index: 2;
}
.details{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.track-art{
    margin: 25px;
    height: 150px;
    width: 150px;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    -moz-box-shadow: 0px 6px 5px #ccc;
    -webkit-box-shadow:0px 6px 5px #ccc;
    box-shadow: 0px 6px 5px #ccc;
    -moz-border-radius:190px;
    -webkit-border-radius:190px;
    border-radius: 190px;
}
.now-playing{
    font-size: 1rem;
}
.now-genero{
    font-size: 1rem;
}
.track-name{
    font-size: 2rem;
}
.track-artist{
    margin-top: 5px;
    font-size: 1.2rem;
}
.buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}
.active{
    color: black;
}
.repeat-track,
.random-track,
.playpause-track,
.prev-track,
.next-track{
    padding: 25px;
    opacity: 0.8;
    transition: opacity .2s;
}
.repeat-track:hover,
.random-track:hover,
.playpause-track:hover,
.prev-track:hover,
.next-track:hover{
    opacity: 1.0;
}
.slider_container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.seek_slider,
.volume_slider{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    background: #37ff91;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.seek_slider::-webkit-slider-thumb,
.volume_slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #ff8737;
    cursor: pointer;
    border-radius: 100%;
}
.seek_slider:hover,
.volume_slider:hover{
    opacity: 1.0;
}
.seek_slider{
    width: 60%;
}
.volume_slider{
    width: 30%;
}
.current-time,
.total-duration{
    padding: 10px;
}
i.fa-volume-down,
i.fa-volume-up{
    padding: 10px;
}
i,
i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward{
    cursor: pointer;
}
.randomActive{
    color: black;
}
.rotate{
    animation: rotation 8s infinite linear;
}
@keyframes rotation{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(359deg);
    }
}
.loader{
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader .stroke{
    background: #f1f1f1;
    height: 100%;
    width: 10px;
    border-radius: 50px;
    margin: 0px 5px;
    animation: animate 1.4s linear infinite;
}
@keyframes animate{
    50%{
        height: 20%;
        background: #42f4aa;
    }
    100%{
        height: 100%;
    }
}
.stroke:nth-child(1){
    animation-delay: 0s;
}
.stroke:nth-child(2){
    animation-delay: 0.3s;
}
.stroke:nth-child(3){
    animation-delay: 0.6s;
}
.stroke:nth-child(4){
    animation-delay: 0.9s;
}
.stroke:nth-child(5){
    animation-delay: 0.6s;
}
.stroke:nth-child(6){
    animation-delay: 0.3s;
}
.stroke:nth-child(7){
    animation-delay: 0s;
}

#playlist0{
    width:300px;
    padding:20px;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}

#sortable, audio{
    width:300px;
    padding:20px;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
  }

  #playlist{
    width:300px;
    
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
  }
  a {
    text-decoration:none;
  }
  .active a {
    color:#3dea0e;
    text-decoration:none;
  }
  /*
  */

ul {
    list-style-type: none;
    padding: 0;
}
 

  li a {
    background: rgba(47, 94, 249, 0.3);
    color:#eeeedd;
    border: 1px dotted rgb(22, 210, 239);
    padding:5px;
    display:block;
    cursor: grab;
    
  }

li a:hover{
    text-decoration:none;
  }
.sortable-list {
    max-width: 300px;
    margin: 0 auto;
}