.bodyRadioPlayer {
  margin: 0;
}

.radioPlayer {
  font-family: Helvetica;
  font-size: 16px;
  padding: 25px 10px;
  max-width: 360px;
  margin: 0 auto;
}

.radioPlayer * {
  box-sizing: border-box;
}

.radioPlayer__logo {
  text-align: center;
  margin-bottom: 20px;
}

.radioPlayer__title {
  margin: 0;
}

.radioPlayer__image {
  width: 320px;
  max-width: 100%;
  padding: 0 15px;
}

.radioPlayer__box {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 64px;
  background-color: #0086c1;
  background: radial-gradient(#005d9b 10%,#0086c1 60%);
}

.radioPlayer__icon {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #005d9b;
}

.radioPlayer__tool--inactive .radioPlayer__icon {
  opacity: 0.4;
}

.radioPlayer__icon--stream {
  font-size: 32px;
}

.radioPlayer__iconHeadphones {
  font-size: 20px;
  margin-right: 8px;
}

.radioPlayer__stream {
  display: inline-block;
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  vertical-align: middle;
  filter: drop-shadow(1px 2px 5px #333);
}

.radioPlayer__tools {
  display: inline-block;
  width: calc(100% - 78px);
  height: 64px;
  vertical-align: middle;
}

.radioPlayer__timerBox {
  padding-left: 10px;
}

.radioPlayer__timer {
  margin: 0;
  color: #fff;
}

.radioPlayer__timeElapsed {
  display: inline-block;
  min-width: 70px;
  font-size: 16px;
  line-height: 24px;
  vertical-align: top;
}

.radioPlayer__musicBarBox {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 140px);
  height: 16px;
  text-align: center;
  margin-top: 2px;;
  margin-left: 4px;
}

.radioPlayer__musicBarBox--playing .radioPlayer__musicColumn {
  animation: musicBar 1.375s ease infinite;
}

.radioPlayer__musicConductor {
  display: inline-block;
  height: 16px;
  width: 1px;
}

.radioPlayer__musicColumn {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 2px;
  background-color: #fff;
}

.radioPlayer__musicBarBox--playing .radioPlayer__musicColumn--second {
  animation-delay: 0.4s;
}

.radioPlayer__musicBarBox--playing .radioPlayer__musicColumn--third {
  animation-delay: 0.2s;
}

.radioPlayer__musicBarBox--playing .radioPlayer__musicColumn--fourth {
  animation-delay: 0.6s;
}

.radioPlayer__musicBarBox--playing .radioPlayer__musicColumn--fifth {
  animation-delay: 0.3s;
}

@keyframes musicBar {
  0% {
    height: 4px;
  }

  50% {
    height: 16px;
  }

  100% {
    height: 4px;
  }
}

.radioPlayer__toolsBox {
  margin-top: 8px;
  padding-left: 4px;
}

.radioPlayer__tool {
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  filter: drop-shadow(1px 2px 3px #333);
}

.radioPlayer__tool--inactive {
  background-color: #ededed;
}

.radioPlayer__tool--refresh {
  margin-right: 15px;
}

.radioPlayer__tool--volume {
  margin-right: 5px;
}

.radioPlayer__volumeBox {
  position: relative;
  display: inline-block;
  width: calc(100% - 108px);
  height: 36px;
}

.radioPlayer__tool--volumeUp {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.radioPlayer__tool--volumeDown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.radioPlayer__volumeLevel {
  background-color: #fff;
  height: 4px;
  width: calc(100% - 10px);
  margin-left: 5px;
  margin-top: 20px;
}

.radioPlayer__volumeLevelInfo {
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

@media (max-width: 359px) {
  .radioPlayer__volumeLevelInfo {
    display: none;
  }
}

.radioPlayer__info {
  margin-top: 30px;
}

.radioPlayer__infoTitle {
  font-size: 18px;
  line-height: 1.25;
  color: #0086c1;
  margin: 0 0 10px;
  padding-left: 8px;
  border-left: 4px solid #0086c1;
}

.radioPlayer__infoList {
  font-size: 16px;
  margin: 10px 0 20px;
  padding-left: 30px;
  list-style-type: square;
}

.radioPlayer__infoListItem {
  color: #0086c1;
  padding: 4px 0;
}

.radioPlayer__infoListItemText {
  color: #222;
}

.radioPlayer__radioName {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #555;
  margin: 35px 0;
}

.radioPlayer__shortName {
  display: block;
}

.radioPlayer__radioLink {
  display: block;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: radial-gradient(#005d9b 10%,#0086c1 60%);
  border-radius: 5px;
}