body {
  background: #ccc;
  user-select: none;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.radio-container {
  width: 350px;
  margin: auto;
  .radio-header {
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
    .radio-name {
      font-size: 26px;
      font-weight: bold;
      color: #1481BA;
    }
    .current-presenter {
      font-size: 14px;
      font-weight: 400;
      color: #43ac6a;
    }
  }
  .radio-body {
    background: #1481BA;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, #11B5E4, #1481BA);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(top left, #11B5E4, #1481BA);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(top left, #11B5E4, #1481BA);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #11B5E4, #1481BA);
    /* Standard syntax */
    background-size: 100% 200%;
    animation: background-scroll 7s alternate ease-in-out infinite;
    height: 250px;
    position: relative;
    overflow: hidden;
    .current-song {
      font-size: 20px;
      font-weight: 100;
      text-align: center;
      padding: 110px 0;
      position: absolute;
      z-index: 2;
      width: 350px;
    }
    .radio-buttons {
      position: absolute;
      bottom: 0;
      left: 15px;
      height: 50px;
      width: 320px;
      z-index: 2;
      .button {
        color: rgba(255, 255, 255, 0.6);
        float: left;
        &:hover {
          color: rgba(255, 255, 255, 0.8);
        }
      }
      .button-play {
        font-size: 2em;
        width: 25px;
      }
      .button-stop {
        margin: 12px;
      }
      .button-request {
        float: right;
        margin-top: 16px;
        font-size: 14px;
      }
    }
    .shine {
      position: absolute;
      top: -50px;
      left: -90px;
      height: 120px;
      width: 300px;
      background: linear-gradient(360deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0.05));
      transform: rotate(-45deg);
    }
    .wave-bars {
      position: relative;
      z-index: 1;
      height: 100%;
      .wave {
        margin-top: 125px;
        transform: translateY(-50%);
        height: 3px;
        width: 4px;
        background: rgba(255, 255, 255, .2);
        float: left;
        margin-right: 3px;
        animation-delay: 2s;
        &:first-child {
          margin-left: 2px;
        }
        &:last-child {
          margin-right: 0;
        }
        &.wave-1 {
          animation: wave1 .5s linear alternate infinite;
        }
        &.wave-2 {
          animation: wave2 .7s linear alternate infinite;
        }
        &.wave-3 {
          animation: wave3 .6s linear alternate infinite;
        }
        &.wave-4 {
          animation: wave4 .5s linear alternate infinite;
        }
        &.wave-5 {
          animation: wave5 .6s linear alternate infinite;
        }
        &.no-animation {
          animation: stopwaves 1s linear;
          animation-iteration-count: 1;
          animation-fill-mode: forwards;
        }
      }
    }
  }
  .radio-message {
    background: linear-gradient(to bottom, #381026, #462E48);
    padding: 15px;
    text-align: center;
    .message-header {
      font-weight: 600;
    }
  }
  .radio-volume {
    background: #fff;
    padding: 10px 15px;
    height: 40px;
    .button-sound {
      float: left;
      font-size: 2em;
      color: #ddd;
      width: 30px;
      &:hover {
        color: #bbb;
      }
    }
    input[type="range"] {
      position: relative;
      top: 8px;
      width: 260px;
      height: 9px;
      margin: 10px 12px;
      display: inline;
      -webkit-appearance: none;
      border-radius: 8px;
      border: 1px solid #ddd;
      background-color: #fff;
      &::-webkit-slider-thumb {
        -webkit-appearance: none;
        background-color: #fff;
        border: 1px solid #ccc;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        cursor: pointer;
      }
      &::-moz-range-track {
        border-radius: 8px;
        width: 260px;
        height: 7px;
        border: 1px solid #ddd;
        background-color: #fff;
      }
      &::-moz-range-thumb {
        background: #fff;
        border: 1px solid #ccc;
        width: 18px;
        height: 18px;
        border-radius: 9px;
        cursor: pointer;
      }
      &::-ms-track {
        width: 164px;
        height: 7px;
        cursor: pointer;
        background: transparent;
        border-color: transparent;
        color: transparent;
      }
      &:focus {
        outline: 0;
      }
    }
  }
  .button {
    cursor: pointer;
  }
}

@-webkit-keyframes background-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

@-moz-keyframes background-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

@keyframes background-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

@-webkit-keyframes wave1 {
  0% {
    height: 10%;
  }
  33% {
    height: 30%;
  }
  66% {
    height: 15%;
  }
  100% {
    height: 35%;
  }
}

@-moz-keyframes wave1 {
  0% {
    height: 10%;
  }
  33% {
    height: 30%;
  }
  66% {
    height: 15%;
  }
  100% {
    height: 35%;
  }
}

@keyframes wave1 {
  0% {
    height: 10%;
  }
  33% {
    height: 30%;
  }
  66% {
    height: 15%;
  }
  100% {
    height: 35%;
  }
}

@-webkit-keyframes wave2 {
  0% {
    height: 40%;
  }
  33% {
    height: 20%;
  }
  66% {
    height: 40%;
  }
  100% {
    height: 20%;
  }
}

@-moz-keyframes wave2 {
  0% {
    height: 40%;
  }
  33% {
    height: 20%;
  }
  66% {
    height: 40%;
  }
  100% {
    height: 20%;
  }
}

@keyframes wave2 {
  0% {
    height: 40%;
  }
  33% {
    height: 20%;
  }
  66% {
    height: 40%;
  }
  100% {
    height: 20%;
  }
}

@-webkit-keyframes wave3 {
  0% {
    height: 30%;
  }
  33% {
    height: 45%;
  }
  66% {
    height: 30%;
  }
  100% {
    height: 15%;
  }
}

@-moz-keyframes wave3 {
  0% {
    height: 30%;
  }
  33% {
    height: 45%;
  }
  66% {
    height: 30%;
  }
  100% {
    height: 15%;
  }
}

@keyframes wave3 {
  0% {
    height: 45%;
  }
  33% {
    height: 20%;
  }
  66% {
    height: 30%;
  }
  100% {
    height: 15%;
  }
}

@-webkit-keyframes wave4 {
  0% {
    height: 30%;
  }
  33% {
    height: 25%;
  }
  66% {
    height: 45%;
  }
  100% {
    height: 25%;
  }
}

@-moz-keyframes wave4 {
  0% {
    height: 30%;
  }
  33% {
    height: 25%;
  }
  66% {
    height: 45%;
  }
  100% {
    height: 25%;
  }
}

@keyframes wave4 {
  0% {
    height: 30%;
  }
  33% {
    height: 25%;
  }
  66% {
    height: 45%;
  }
  100% {
    height: 25%;
  }
}

@-webkit-keyframes wave5 {
  0% {
    height: 20%;
  }
  33% {
    height: 35%;
  }
  66% {
    height: 15%;
  }
  100% {
    height: 35%;
  }
}

@-moz-keyframes wave5 {
  0% {
    height: 20%;
  }
  33% {
    height: 35%;
  }
  66% {
    height: 15%;
  }
  100% {
    height: 35%;
  }
}

@keyframes wave5 {
  0% {
    height: 20%;
  }
  33% {
    height: 35%;
  }
  66% {
    height: 15%;
  }
  100% {
    height: 35%;
  }
}

@keyframes stopwaves {
  100% {
    height: 3px;
  }
}