body {
    background-color: #000000;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
  display:none;
}

a {
    color: #0297d1;
}

a:link, a:visited {
    text-decoration: underline;
}

a:hover, a:active, a:focus {
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

#container {
    left: 0px;
    min-width: 886px;
    position: absolute;
    top: 50%;
    width: 100%;
}

#player-container {
    background: url(../images/radio_tausta.jpg) top left no-repeat;
    height: 620px;
    left: 50%;
    margin-left: -443px;
    position: absolute;
    top: -310px;
    width: 886px;
}

/* Playlist */
#playlist-container {
  left: 80px;
  position: absolute;
  top: 187px;
  width: 532px;
  height: 314px;
  overflow: hidden;
}
#playlist {
  padding: 10px 5px;
  width: 100%;
  box-sizing: border-box;
}

.song {
  color: #12D136;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 2px 5px;
}

.song--playing-now {
}

.song__title {
  float: left;
  width: 465px;
}

.song__time {
  float: right;
  width: 45px;
}

.song a:link, .song a:visited {
    color: #12D136;
    text-decoration: none;
}

.song a:hover, .song a:active, .song a:focus {
    color: #12D136;
    text-decoration: underline;
}

/* Highlight the playing track */
.song--playing-now {
  background-color: #12D136;
  color: #333333;
  margin: 6px 0;
}

.song--playing-now a:link,
.song--playing-now a:visited,
.song--playing-now a:hover,
.song--playing-now a:active,
.song--playing-now a:focus {
    color: #333333;
}

/* Button states */
.player__play-button {
    background-position: top left;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    display: block;
    height: 107px;
    left: 672px;
    outline: none;
    position: absolute;
    top: 268px;
    width: 152px;
    text-indent: -9999px;
}

/* Play button */

.player__play-button {
  background-image: url(../images/pause.png);
}

.player__play-button:hover {
  background-image: url(../images/pause_hover.png);
}

.player__play-button:active {
  background-image: url(../images/pause_down.png);
}

.player__play-button.play {
  background-image: url(../images/play.png);
}

.player__play-button.play:hover {
  background-image: url(../images/play_hover.png);
}

.player__play-button.play:active {
  background-image: url(../images/play_down.png);
}


/* Volume slider */

.player__volume {
  position: absolute;
  width: 135px;
  right: 70px;
  top: 405px;
  height: 32px;
}

.player__volume-input {
  display: none;
}

.player__volume-slider {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.noUi-handle {
  background: url(../images/slider.png) top left no-repeat;
  cursor: pointer;
  height: 32px;
  outline: none;
  width: 18px;
  margin-left: -9px;
}

/* Links */
.some-links {
  color: #0297d1;
  font-size: 0;
  left: 90px;
  position: absolute;
  top: 508px;
  width: 510px;
}

.some-links > * {
  margin-right: 5px !important;
  display: inline-block;
}

.site-links {
    color: #0297d1;
    font-size: 11px;
    left: 90px;
    position: absolute;
    top: 525px;
    width: 510px;
}

.right {
    float: right;
}

/* Footer */
#footer {
    color: #808080;
    font-size: 11px;
    left: 13px;
    position: absolute;
    bottom: 13px;
    width: 860px;
}

#footer a {
    color: #808080;
    text-decoration: none;
}


/* noUiSlider
 * Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
.noUi-handle {
  position: relative;
  z-index: 1;
}
.noUi-stacking .noUi-handle {
  /* This class is applied to the lower origin when
     its values is > 50%. */
  z-index: 10;
}
.noUi-stacking + .noUi-origin {
  /* Fix stacking order in IE7, which incorrectly
     creates a new context for the origins. */
  *z-index: -1;
}
.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  position: relative;
  width: 100%;
  height: 100%;
}
