/* BOTÃO DE PLAYER */
#playbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #33333346;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
  }

  
  #playpause {
      cursor: pointer;
      outline: none;
      border-radius: 50px;
      border-style: none;
      width: 55px;
      height: 50px;
  }
  
   #playpause:hover{
      background-color: #fff;
      border-style: none;
  } 


  .fa-volume-down,
  .fa-volume-up {
    cursor: pointer;
  }