html {
    width: 100%;
    height: 100%;  
    overflow: hidden;
    padding: 0;
    margin: 0;
    outline: 0;
  }
  
  body {
    width: 100%;
    /* height: 100%; */
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-size: 420px 680px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c258d', endColorstr='#4389a2', GradientType=1);
    font-family: "Helvetica Neue", "Futura", "Trebuchet MS", Arial;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }
  
  /* Stations */
  .padding {
    width: 100%;
    height: 12.5%;
  }
  .station {
    position: relative;
    width: 100%;
    height: 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 5%;
    cursor: pointer;
    box-sizing: border-box;
  }
  .station:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .title {
    font-size: 2vw;
    line-height: 3vw;
    font-weight: 100;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  .subtitle {
    display: inline-block;
    vertical-align: middle;
  }
  .live {
    width: 8vw;
    height: 3vw;
    background-color: #cc1919;
    border-radius: 3px;
    font-weight: bold;
    color: #fff;
    font-size: 2.25vw;
    line-height: 3vw;
    display: inline-block;
    text-align: center;
    opacity: 0;
    text-shadow: none;
  }
  
  /* Playing Animation */
  .playing {
    position: absolute;
    right: 5%;
    top: 50%;
    margin: -20px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: none;
  }
  .playing > div {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-animation: wavy 1s ease infinite forwards;
    animation: wavy 1s ease infinite forwards;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  .playing .rect2 {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  .playing .rect3 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .playing .rect4 {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
  }
  .playing .rect5 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
  }
  @-webkit-keyframes wavy {
    0% {
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
    50% {
      -webkit-transform: scaleY(0.6);
      transform: scaleY(0.6);
    }
    100% {
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
  }
  @keyframes wavy {
    0% {
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
    50% {
      -webkit-transform: scaleY(0.6);
      transform: scaleY(0.6);
    }
    100% {
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
  }

  