@import url('https://fonts.googleapis.com/css?family=Open+Sans:300i,400,600,700');

*, *:after, *:before {
  margin: 0;
  padding: 0;
  border: 0;
}
html, body {
    width: auto;
    height: 100%;
    font-family: 'Open Sans', Arial, sans-serif;
}
body {
    position: relative;
    display: block;
    background: rgb(0, 0, 0);
    color: #fff;
    text-align: center;
}
header {
    position: relative;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0, 0, 0);
    z-index: 9999;
    border-bottom: 0;
    transition: all 0.25s;
}
h1 {
	font-weight: 700;
	font-size: 36px;
	padding: 30px 20px 20px;
	transition: all 0.25s;
	max-width: 1000px;
	margin: 0 auto;
}
h2 {
    font-weight: 600;
    font-size: 16px;
}
h2 span {
    background: rgba(0, 0, 0);
    padding: 6px 16px;
    margin: 0 12px 0 0;
    border-radius: 3px;
    transition: all 0.25s;
}

#logo {
    display: inline-block;
    float: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    width: 200px;
    height: 200px;
    border: none;
    border-radius: 0;
    outline: none;
    color: transparent;
    background-image: url('logo.png');
    background-color: transparent;
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;    
}

#radio-player {
    position: relative;
    height: auto;
    width: 100%;
    margin: 0 auto;
    padding: 0;
        text-align: center;
    z-index: 999;
}
#listen {
    padding: 32px 0 0 0;
}

#play-box {
    margin: 20px 0;
}
#play-btn {
    cursor: pointer;
    display: block;
    outline: none;
    height: 150px;
    width: 150px;
    margin: 0 auto;
    border: 6px solid #fff;
    background-size: 120px;
    border-radius: 50%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s;
}
#play-btn:hover, #play-btn:focus {
    background-color: rgba(255, 255, 255, 0.20);
    border-color: transparent;
}

#play-btn.play {
    background-image: url("play_arrow.svg");
}
#play-btn.stop {
    background-image: url("pause.svg");
}
#play-btn.load {
    background-image: url("wifi.svg");
}
#vol-box {
    background: transparent url("volume_mute.svg") no-repeat scroll 0% 50%;
    visibility: hidden;
    height: 64px;
    margin: 0 auto;
    width: 250px;
    background-size: 64px;
}
#slider-box {
    height: 68px;
    margin-left: 40px;
    padding-top: 30px;
    width: 170px;
}
.ui-slider-horizontal {
    border-radius: 0 5px 5px 0;
    background: #fff;
    height: 6px;
    margin: 0 0 0 20px;
    cursor: pointer;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -8px;
    background: #fff;
    outline: none;
}
.ui-slider .ui-slider-handle {
	border-radius: 50%;
	height: 22px;
	width: 22px;
	cursor: e-resize;
	border: none;
}
.buttons {
    margin: 20px auto;
    width: 100%;
    height: auto;
}
.buttons a {
    display: inline-block;
    border: 3px solid #fff;
    border-radius: 42px;
    width: auto;
    height: auto;
    padding: 12px 30px 10px 55px;
    margin: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background-position: 8% 50%;
    background-size: 28px;
    background-repeat: no-repeat;
    text-transform: uppercase;
    transition: all 0.25s;
}
#share { background-image: url("share.svg"); }
#schedule { background-image: url("schedule.svg"); }
#playstore { background-image: url("play_store.png"); }
#web { background-image: url("web_white.svg"); }

.buttons a:hover, .buttons a:focus {
    background-color: rgba(255, 255, 255, 0.20);
    border-color: transparent;
}


/* Live animation */

#live { 
    width: auto;
  -webkit-animation: sk-scaleout 1.2s infinite ease-in-out;
  animation: sk-scaleout 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.10);
    background: rgba(255, 255, 255, 0.2);
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    background: rgba(255, 255, 255, 0.0);
  }
}



@media screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
    }
    header, #logo {
        height: 80px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 14px;
    }
    #play-btn {
        height: 140px;
        width: 140px;
        background-size: 80px;
    }
}