@font-face {
    font-family: "proradio";
    src: url("fonts/proradio.eot");
    src: url("fonts/proradio.eot?#iefix") format("embedded-opentype"),url("fonts/proradio.woff") format("woff"),url("fonts/proradio.ttf") format("truetype"),url("fonts/proradio.svg#proradio") format("svg");
    font-weight: normal;
    font-style: normal;
}

.overlay {
    display: block;
    position: fixed;
    font-size: 12px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    text-align: center;
    vertical-align: middle;
    z-index: 999;
}

.overlay .text {
    display: block;
    position: absolute;
    height: 60px;
    top: 40%;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    margin-top: -30px;
}

#wrapper {
    display: block;
}

#wrapper .content {
    display: block;
    /*margin: 40px 0;*/
    text-align: center;
}

#wrapper .content form {
    display: block;
    max-width: 360px;
    text-align: left;
    margin: 0 auto;
}

#wrapper .content input,#wrapper .content select,#wrapper .content option {
    font-family: 'Droid Sans';
}

#wrapper .content label.text {
    display: inline-block;
    font-size: 13px;
    width: 120px;
    text-align: right;
    margin-right: 20px;
    vertical-align: middle;
}

#wrapper .content input[type=checkbox] {
    display: none;
}

#wrapper .content input[type=checkbox]+label:before {
    display: inline-block;
    vertical-align: middle;
    font-family: proradio;
    font-style: normal;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 1.3333em;
    content: " ";
    cursor: pointer;
    color: #585858;
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    text-align: center;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
    -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
}

#wrapper .content input[type=checkbox]:checked+label:before {
    content: "g";
}

#wrapper .content select {
    cursor: pointer;
    color: #585858;
    padding: 3px 8px;
    width: 200px;
    background: #FFF;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
    -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
}

#wrapper .content select option {
    background: #fff;
    border-top: 1px solid #fafafa;
}

#wrapper .content .artist-image {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 10px;
    width: 140px;
    height: 140px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

#wrapper .content .artist-image img {
    display: block;
    height: auto;
    z-index: 1;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
}

#wrapper .content .artist-image .extra-options {
    display: block;
    color: #f0f0f0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    position: absolute;
    z-index: 2;
    background: #323232;
    border: 1px solid #4b4b4b;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
}

#wrapper .content .artist-image .extra-options .title {
    height: 20px;
    top: 25px;
    position: absolute;
    width: 100%;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

#wrapper .content .artist-image .extra-options a {
    color: #fff;
    text-decoration: none;
    outline-style: none;
    display: block;
}

#wrapper .content .artist-image .extra-options .bottom {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

#wrapper .content .artist-image .extra-options .bottom a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 auto;
    text-align: center;
    font-size: 2em;
}

#wrapper .content .artist-image .extra-options .bottom a:hover {
    border-color: #eaeaea;
    color: #eaeaea;
}

#wrapper .content .artist-image:hover .extra-options,#wrapper .content .artist-image:focus .extra-options {
    opacity: 0.9;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
}

#wrapper .content .artist-image:hover img,#wrapper .content .artist-image:focus img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

#wrapper .content .player {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    color: #4b4b4b;
    width: 64px;
    transition: width 250ms ease-out;
    -moz-transition: width 250ms ease-out;
    -webkit-transition: width 250ms ease-out;
    -o-transition: width 250ms ease-out;
}

#wrapper .content .player i.icon-play,#wrapper .content .player i.icon-stop {
    font-size: 26px;/*2em;*/
    transition: transform 0.1s linear;
    -moz-transition: transform 0.1s linear;
    -webkit-transition: transform 0.1s linear;
    -o-transition: transform 0.1s linear;
}

#wrapper .content .player i.icon-volume,#wrapper .content .player i.icon-mute {
    margin-left: 12px;
    font-size: 26px;/*2em;*/
}

#wrapper .content .player a {
    display: inline-block;
    color: #4b4b4b;
    transition: all 150ms ease-out;
    -moz-transition: all 150ms ease-out;
    -webkit-transition: all 150ms ease-out;
    -o-transition: all 150ms ease-out;
    float: left;
}

#wrapper .content .player a:hover {
    color: #000;
}

#wrapper .content .player .player-volume {
    position: relative;
    padding-bottom: 5px;
    float: left;
}

#wrapper .content .player .player-volume .volume-slider {
    position: absolute;
    z-index: 9;
    left: 50%;
    margin-left: -85px;
    width: 170px;
    padding: 6px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-top: 5px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.1s linear 0.5s, opacity 0.1s linear 0.5s;
    -webkit-transition: visibility 0.1s linear 0.5s, opacity 0.1s linear 0.5s;
    -moz-transition: visibility 0.1s linear 0.5s, opacity 0.1s linear 0.5s;
    -o-transition: visibility 0.1s linear 0.5s, opacity 0.1s linear 0.5s;
    -ms-transition: visibility 0.1s linear 0.5s, opacity 0.1s linear 0.5s;
}

#wrapper .content .player .player-volume .volume-slider i {
    margin: 0;
    color: #292929;
    vertical-align: middle;
    font-size: 20px;/*1.444444444em;*/
}

#wrapper .content .player .player-volume .volume-slider:after {
    top: -13px;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136,183,213,0);
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -14px;
}

#wrapper .content .player .player-volume .volume-slider .progress {
    display: inline-block;
    width: 90px;
    height: 8px;
    background: #dcdcdc;
    padding: 0;
    vertical-align: middle;
    margin: 8px 5px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    overflow: hidden;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.1) inset;
    -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.1) inset;
}

#wrapper .content .player .player-volume .volume-slider .progress .bar {
    display: block;
    height: 8px;
    width: 50%;
    background: #517FA4;
    box-shadow: 0px -1px 0px rgba(0,0,0,0.15) inset;
    -webkit-box-shadow: 0px -1px 0px rgba(0,0,0,0.15) inset;
}

#wrapper .content .player .player-volume:hover .volume-slider,#wrapper .content .player .player-volume:focus .volume-slider {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
}

#wrapper .content .stream-info {
    display: inline-block;
    color: #323232;
    vertical-align: middle;
    text-align: left;
    margin: 0 10px;
}

#wrapper .content .stream-info a {
    text-decoration: none;
    outline-style: none;
    outline-width: 0px;
    color: #4b4b4b;
    position: relative;
}

#wrapper .content .stream-info .artist a:hover:after,#wrapper .content .stream-info .title a:hover:after,#wrapper .content .stream-info .playtime:hover:after {
    background: #111;
    background: rgba(0,0,0,0.8);
    border-radius: .5em;
    bottom: 1.95em;
    color: #fff;
    content: attr(data-title);
    display: block;
    left: -0.2em;
    padding: .3em 1em;
    position: absolute;
    white-space: nowrap;
    z-index: 98;
    font-size: 13px;
}

#wrapper .content .stream-info .artist a:hover:before,#wrapper .content .stream-info .title a:hover:before,#wrapper .content .stream-info .playtime:hover:before {
    position: absolute;
    bottom: 10px;
    left: 10px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    content: " ";
    border-color: rgba(136,183,213,0);
    border-top-color: rgba(0,0,0,0.8);
    border-width: 8px;
}

#wrapper .content .stream-info .player-status {
    font-size: 10pt;
}

#wrapper .content .stream-info .artist {
    font-size: 22pt;
}

#wrapper .content .stream-info .title {
    font-size: 16pt;
}

#wrapper .content .stream-info .playtime {
    font-size: 10pt;
    position: relative;
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    vertical-align: middle;
    border: solid 1px #81B600;
    border-color: #81B600 transparent #81B600 transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-animation: tomato-spinner 600ms linear infinite;
    animation: tomato-spinner 600ms linear infinite;
}

.spinner.spinner-small {
    width: 12px;
    height: 12px;
    border-width: 1px;
}

@-webkit-keyframes tomato-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes tomato-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media all and (max-width: 480px) {
    #wrapper .content .stream-info {
        display: block;
        text-align: center;
        margin: 20px 0 0;
    }
}

[class^="icon-"],[class*=" icon-"] {
    display: inline-block;
    font-family: "proradio" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    vertical-align: middle;
}

.icon-facebook:before {
    content: "c";
}

.icon-twitter:before {
    content: "e";
}

.icon-check:before {
    content: "g";
}

.icon-remove:before {
    content: "f";
}

.icon-settings:before {
    content: "h";
}

.icon-external-link:before {
    content: "k";
}

.icon-volume:before {
    content: "j";
}

.icon-mute:before {
    content: "l";
}

.icon-play:before {
    content: "b";
}

.icon-stop:before {
    content: "a";
}
