/* MEDIA PLAYER */
.media-player { 
  background-color: black;
  position: fixed;
  bottom: 0px;
  width: 98%;
  height: 72px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
}
.media-player-left {
  display: flex;
  position: relative;
  top: 0.5rem;
}
.media-artist {
  display: flex;
  flex-direction: column;
  top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  justify-content: center;
}
.media-image {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.25rem;
}
.song-name {
  color: white;
  text-decoration: none;
  font-size: small;
  font-weight: 600;
  padding-bottom: 0.25rem;
}
.song-name:hover {
  text-decoration: underline;
}
.artist-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #8f8f8f;
  text-decoration: none;
  padding-bottom: 0.75rem;
}
.artist-name:hover {
  text-decoration: solid;
  color: white;
}
.add {
  background-color: black;
  border: 0;
  height: 1rem;
  width: 1rem;
  align-self: center;
  padding-bottom: 2rem;
}
.add i {
  font-size: 1rem;
  background-color: #656565;
  border: 2px solid #656565;
  border-radius: 50%;
}
.add:hover i {
  background-color: white;
  cursor: pointer;
  border: 2px solid white;
}
.media-player-center {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0.5rem;
}
.player-top {
  display: flex;
  justify-content: center;
}
.media-btn {
  padding: 0.5rem;
  background-color: black;
  border: 0;
  margin: 0 0.5rem;
  
}
.media-btn img {
  height: 1rem;
  width: 1rem;
  color: #656565;
}
.media-btn img:hover {
  cursor: pointer;
  transform: scale(1.07);
}
.btn2 {
  margin: 0;
}
.play-btn {
  background-color: black;
  border: 0;
}
.play-btn img:hover {
  cursor: pointer;
  transform: scale(1.07);
}
.play-btn img {
  height: 2rem;
  width: 2rem;
}
.media-player-right {
  display: flex;
  align-items: center;
}
.control-btn {
  background-color: black;
  border: 0;
  font-size: 1rem
}
.control-btn img {
  height: 2.5rem;
  width: 1.5rem;
}
.control-btn img:hover {
  cursor: pointer;
  transform: scale(1.07);
}
.control-btn i {
  color: #656565;
}
.control-btn i:hover {
  cursor: pointer;
  transform: scale(1.07);
}
.btn1 {
  margin-top: 0.5rem;
}

.player-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-bar {
  width: 26.9248125rem;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.progress-bar::-webkit-slider-runnable-track {
  background-color: #404040;
  border-radius: 100px;
  height: 0.2rem; 
}

.progress-bar::-webkit-slider-thumb {
  appearance: none;
  height: 0.8rem;
  width: 0.8rem;
  background-color: #ddd;
  border-radius: 50%;
  margin-top: -0.3rem;
  opacity: 0;
}

.progress-bar:hover::-webkit-slider-thumb {
  opacity: 1;
}

.time {
  color: #9d9d9d;
  font-size: 0.8rem;
  padding: 0 0.25rem;
}

.range-slider {
  width: 5.8125rem;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.range-slider::-webkit-slider-runnable-track {
  background-color: #404040;
  border-radius: 100px;
  height: 0.2rem; 
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  height: 0.8rem;
  width: 0.8rem;
  background-color: #ddd;
  border-radius: 50%;
  margin-top: -0.3rem;
  opacity: 0;
}

.range-slider:hover::-webkit-slider-thumb {
  opacity: 1;
}