#customMediaBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85px;
  backdrop-filter: blur(5px);
  background-color: rgba(5, 5, 33, 0.85);
  padding: 0 20px;
  z-index: 9999;
}

#leftSection,
#rightSection {
  display: flex;
  align-items: center;
  gap: 10px;
}

#leftSection {
  flex: 1;
}

#adWrapper {
  flex: 0 0 320px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#rightSection {
  flex: 1;
  justify-content: flex-end;
}

#customCoverArt {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

#nowPlayingWrapper {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  flex-grow: 1;
  overflow: hidden;
}

#nowPlayingText {
  color: white;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize !important;
}

#stationTagline {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#nativeVolumeWrapper {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

#playPauseBtn {
  width: 65px;
  height: 65px;
  /*background-color: #f43ec8;*/
  color: white;
  font-size: 26px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
}

#hiddenPlayerContainer {
  position: absolute;
  top: -1000px;
  left: -1000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* MOBILE STYLES */
@media (max-width: 767px) {
  #customMediaBar {
    flex-direction: column-reverse;
    align-items: flex-start;
    height: auto;
    padding: 0px 0px 10px 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  #leftSection {
    width: 75%;
    justify-content: flex-start;
    padding-top: 10px;
  }

  #rightSection {
    position: absolute;
    top: -30px;
    right: 10px;
    width: auto;
    justify-content: flex-end;
    z-index: 10000;
    float: right;
  }

  #adWrapper {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #playPauseBtn {
    margin-top: 0;
    width: 55px;
    height: 55px;
  }

  #customCoverArt {
    width: 60px;
    height: 60px;
  }

  #nowPlayingText {
    font-size: 14px;
    animation: scroll 10s linear infinite;
  }

  #stationTagline {
    font-size: 12px;
  }
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Volume slider styles */
.td-player-bar__volume-controls {
  width: 140px;
  margin: 0 50px 0 0 !important;
  float: right;
  position: fixed;
  bottom: 0% !important;
  right: 5%;
  z-index: 99999;
}

.td-player-bar__volume-controls__volume-slider {
  display: block !important;
  background: #0075FF !important;
  /*margin-top: 42px !important;*/
}

.td-player-bar__volume-controls__volume {
  color: #ffffff !important;
  font-size: x-large !important;
  margin-top: 3px !important;
}

.noUi-horizontal {
  height: 8px !important;
  /*margin-top: 41px !important;*/
  border-radius: 10px !important;
}

.noUi-handle {
  background: #0075FF !important;
  border: #0075FF !important;
  border-radius: 50px !important;
  height: 15px !important;
  width: 15px !important;
  margin-top: -4px !important;
  outline: 0;
  margin-left: -10px !important;
}
.noUi-origin {
  border-radius: 50px !important;
}