.text-scroller-container {
    position: relative;
    width: 490px;
    height: 70px;
    overflow: hidden;
  }

.text-scroller-container2 {
    position: relative;
    width: 490px;
    height: 70px;
    overflow: hidden;
  }

.cc_streaminfo {
    height: 70px;
    display:inline-block;
    font-family: Unica, Verdana,Geneva,sans-serif;
    font-size: 48px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    white-space: nowrap;
      /* Starting postition */
      transform: translate3d(100%, 0, 0);
    
      /* Animation settings */
      animation-name: marquee-animation;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
}
  
  #prog_current_track {
    text-shadow: 0 0 7px #fff, 0 0 10px #2da2ff, 0 0 21px #41a9fe; 
    color:#2da2ff;
  }


  #chill_current_track {
    text-shadow: 0 0 7px #fff, 0 0 10px #fa9600, 0 0 21px #ffbb56; 
    color:#fa9600;
  
  }

  @keyframes marquee-animation {
    from {
      transform: translate3d(100%, 0, 0);
    }
    
    to {
      transform: translate3d(-490px, 0, 0);
    }
  }
  