.header_date {
  color: white;
  font-size: 24px;
}

#music-button {
  align-items: center;
  border-radius: 100%;
  display: flex;
  height: 50px;
  justify-content: center;
  margin: 0;
  padding: 0 !important;
  width: 50px;
}

.play-icon {
  height: 45px;
  margin-left: 5px;
  padding: 0;
  width: 45px;
}

.pause-icon {
  height: 35px;
  padding: 0;
  width: 35px;
}

.music-player__container {
  align-items: center;
  column-gap: 16px;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.progress-bar {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  height: 10px;
  width: 50%;
}

.progressed {
  background-color: white;
  border-radius: 10px;
  height: 10px;
  position: relative;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .progress-bar {
    width: 300px;
  }

  .progressed::after {
    background-color: white;
    border-radius: 10px;
    content: '';
    height: 20px;
    position: absolute;
    right: -10px;
    top: -5px;
    width: 20px;
  }
}

.play-icon--hide {
  display: none;
}

.pause-icon--hide {
  display: none;
}
