#slim {
  position: relative;
  bottom: 0;
  right: 1px;
  width: 300px;
  height: 40px;
  background-color: #000000;   /*cor do radio*/
  border: 1px solid #ccc;
  border-radius: 8px;
  
   }

.player_slim {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 2px;
}

.player_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  height: 100%;
}

#play_button {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin: 0 10px;
}

#play_button.playing {
  background-image: url("../imagens/pause.png");
}

#div_timer {
  display: flex;
  align-items: center;
}

#cuTimer,
#slashTimer,
#toTimer {
  font-size: 12px;
  margin: 0 5px;
}

#progress-bar {
  width: 100%;
  height: 10px;
  margin: 0 10px;
}

#progress-bar::-webkit-progress-bar {
  background-color: #ffffff;
  border-radius: 10px;
}

#progress-bar::-webkit-progress-value {
  background-color: #6e6a67;
  border-radius: 10px;
}

#div_vol {
  display: flex;
  align-items: center;
}

#vol_img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

#change_vol {
  width: 30px;
  height: 4px;
}

#info {
  font-size: 12px;
}