body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #34495e;
}

iframe#player {
  display: none;
}

.controls {
  position: fixed;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

button.play_pause_button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #34495e;
  border: 2px solid #ecf0f1;
  cursor: pointer;
}

button.play_pause_button {
  background-image: url(/images/play.png);
  background-position: 28px 22px;
  background-size: 55%;
  background-repeat: no-repeat;
  transition: all .4s ease-in-out;
}

button.play_pause_button.pause {
  background-image: url(/images/pause.png);
  background-position: 22px 22px;
}

input#volume {
  margin-left: 25px;
}

label.volume {
  margin-left: 25px;
  color: white;
  font-size: 30px;
  width: 70px;
  text-align: center;
}

label.time, label.song_title {
  position: fixed;
  bottom: 0;
  left: 50px;
  color: white;
  font-size: 30px;
  text-align: center;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
}

label.song_title {
  left: auto;
  right: 50px;
}

span.time_bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100px;
  background: #844545;
  z-index: -1;
  transition: all .25s cubic-bezier(0, 0, 1, 1);
}

.load_playlist {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

input#playlist_id {
  width: 500px;
  background: white;
  border: none;
  padding: 14px 15px;
  font-size: 18px;
  border-radius: 25px;
}

button#load_playlist {
  margin-left: 20px;
  background: white;
  border: none;
  padding: 14px 25px;
  font-size: 20px;
  border-radius: 25px;
  cursor: pointer;
}

img.next_song {
  margin-right: 30px;
  transform: rotate(180deg);
  width: 45px;
  height: 45px;
  cursor: pointer;
}

img.prev_song {
  width: 45px;
  height: 45px;
  cursor: pointer;
  margin-left: 30px;
}

img.shuffle_songs {
  width: 45px;
  height: 45px;
  cursor: pointer;
  margin-left: 30px;
  padding: 10px;
  border-radius: 50%;
}

img.shuffle_songs.active {
  padding: 8px;
  border: 2px solid white;
}

span.time_bg_clickable {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
}
