@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
#desktop-player {
  display: flex;
  z-index: 10;
  width: 100%;
  height: 99px;
  padding: 16px 40px;
  align-items: center;
  position: fixed;
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(4px);
}

#desktop-player.embedded {
  background: black;
}

#desktop-player svg path {
  stroke: var(--station-secondary-color);
}

#desktop-player svg rect {
  stroke: var(--station-secondary-color);
}

#desktop-player .content {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#desktop-player .content .left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 32px;
}

#desktop-player .content .left .play-btn {
  width: 60px;
  margin-top: -0.5rem;
  color: var(--station-secondary-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

#desktop-player .content .left .play-btn .btn-background {
  background: var(--station-play-pause-button-color);
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: -1;
  border-radius: 100px;
  margin-top: 1.5rem;
}

#desktop-player .content .left .play-btn i {
  font-size: 5.5rem;
}

#desktop-player .content .left .play-btn span {
  background-color: var(--station-color);
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 4rem;
  margin-top: -24px;
  color: #F9F9F9;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  z-index: 10;
}

#desktop-player .content .left .play-btn span.embedded {
  margin-top: -12px;
}

#desktop-player .content .left .noar .program-content {
  color: #F9F9F9;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
}

#desktop-player .content .left .noar .program-content .program-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#desktop-player .content .left .noar .program-content .program-info span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

#desktop-player .content .left .noar .program-content .program {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

#desktop-player .content .left .noar .program-content .program span {
  color: var(--station-secondary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

#desktop-player .content .left .noar .program-content .program svg path {
  stroke: var(--station-secondary-color);
}

#desktop-player .content .left .noar .program-content .program-image img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0) 29.95%, rgba(255, 255, 255, 0.5) 47.76%, rgba(255, 255, 255, 0) 48.18%), lightgray 50%/cover no-repeat;
  background-blend-mode: overlay, normal;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 80px 0px rgba(255, 255, 255, 0.65);
  object-fit: cover;
}

#desktop-player .content .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  flex-direction: row;
}

#desktop-player .content .right .volume {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}

#desktop-player .content .right .volume .mute i {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--station-secondary-color);
}

#desktop-player .content .right .video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#desktop-player .content .right input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 96px;
  height: 4px;
  background: rgba(164, 164, 164, 0.251);
  border-radius: 5px;
  background-image: linear-gradient(var(--station-secondary-color), var(--station-secondary-color));
  background-size: 70% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

#desktop-player .content .right input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 6px;
  border-radius: 2px;
  background: #f9f9f9;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
  cursor: pointer;
}

* {
  font-family: "Roboto", sans-serif;
}

#bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
}
