/*Stylesheet for the track player on tracks.php*/
.main_track_player {
  border: 1px solid grey;
  margin: 0;
  padding: 0;
  top: 525px;
  width: 99.80%;
  position: absolute;
  left: 0px;
  height: 180px;
  background-color: rgba(5, 5, 5, 0.9);
  border-radius: 4px;
  box-shadow: 3px 3px 50px rgba(0, 0, 0, 0.4), -3px -3px 50px rgba(0, 0, 0, 0.4);
}
.main_track_player_container {
  background-color: rgba(255, 255, 255, 0.01);
  margin: 0;
  padding: 0;
  width: 100%;
  height: 125px;
  position: relative;
  top: -5px;
}
.track_player_text {
  text-align: center;
  margin: 0;
  padding: 0;
}
.track_player_text h3 {
  margin: 5px 0 0 0;
  padding: 5px 0 5px 0;
}
.track_player_text p {
  margin: 0;
  font-size: 16px;
  padding: 5px 0 5px 0;
}
.time {
  display: flex;
  justify-content: space-between;
  margin: 20px 5px 0 5px;
}
.time a {
  color: #fff;
  font-size: 1.1em;
  text-decoration: none;
}
.seek {
  width: 100%;
  height: 4px;
  left: -2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 5px 2px 0 2px;
  position: relative;
  cursor: pointer;
}
.fill {
  width: 65%;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
}
.handle {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: -3px;
  right: 270px;
  position: absolute;
}
.track_player_btns {
  margin: 20px 0;
  text-align: center;
  position: relative;
  /*right: 0px;*/
  width: 100%;
}
.track_player_btns a {
  color: #fff;
  font-size: 1.8em;
  margin: 0 10px;
  position: relative;
  right: -20px;
  transition: all 0.3s ease-in-out;
}
.track_player_btns a:hover {
  color: #b9b6b6;
}
.track_player_btns a:nth-child(1), .track_player_btns a:nth-child(7) {
  opacity: 0.6;
}
.track_player_btns a:nth-child(1):hover, .track_player_btns a:nth-child(7):hover {
  opacity: 1;
  color: #fff;
}
.track_player_btns a:nth-child(4) {
  /*border: 2px solid #fff;*/
}
.track_player_btns_pause.hide {
  display: none;
}