@font-face {
  font-family: 'gotham rounded medium';
  src: url('../fonts/gothamrounded-medium-webfont.eot');
  src: url('../fonts/gothamrounded-medium-webfontd41d.eot?#iefix') format('embedded-opentype'),
       /*url('../fonts/gothamrounded-medium-webfont.woff') format('woff'),*/
       url('../fonts/gothamrounded-medium-webfont.ttf') format('truetype'),
       url('../fonts/gothamrounded-medium-webfont.svg#gothamroundedmedium') format('svg');
  font-weight: normal;
  font-style: normal;
}

.audio-container {
  min-width: 200px;
  height: 42px;
  overflow: hidden;
  position: fixed;
  bottom: 0;
}

.radio-widget {
  max-width: 400px;
  height: auto;
  padding: 5px;
  border-radius: 4px 4px 0 0;
  background: #be1e1e;
  /*background: -moz-linear-gradient(top,  #4a4e59 0%, #2e2e36 100%);
  background: -webkit-linear-gradient(top,  #4a4e59 0%,#2e2e36 100%);
  background: linear-gradient(to bottom,  #4a4e59 0%,#2e2e36 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a4e59', endColorstr='#2e2e36',GradientType=0 );*/
  display: block;
  color: #f2f2f2;
}

.audio-title {
  width: 150px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  top: -1px;
  font-family: 'gotham rounded medium', Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin-right: 5px;
}

.audio-control {
  width: 188px;
  height: 25px;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  margin-top: 4px;
}

.play-btn {
  position: relative;
  top: -8px;
  cursor: pointer;
  margin-right: 5px;
}

.fa-circle:before {
  color: #f6f6f6;
}

.fa-play:before, .fa-pause:before {
  color: #be0701;
  font-size: .9em;
}

.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 67px;
  height: 20px;
  /*padding: 2px;*/
  /*background-color: white;*/
  border-radius: 18px;
  /*box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);*/
  cursor: pointer;
  /*background-image: -webkit-linear-gradient(top, #eeeeee, white 25px);
  background-image: -moz-linear-gradient(top, #eeeeee, white 25px);
  background-image: -o-linear-gradient(top, #eeeeee, white 25px);
  background-image: linear-gradient(to bottom, #eeeeee, white 25px);*/
  top: 3px;
  margin-right: 5px;
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-input:checked ~ .switch-label {
  background: #5c0606;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-family: 'gotham rounded medium', Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  background: #5c0606;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}

.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}

.switch-label:before {
  content: attr(data-off);
  right: 6px;
  color: white;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.55em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

.switch-label:after {
  content: attr(data-on);
  left: 6px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.55em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.switch-input:checked ~ .switch-handle {
  left: 50px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle {
  position: absolute;
  top: 1px;
  left: 0px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.5s ease-out;
  -moz-transition: left 0.5s ease-out;
  -o-transition: left 0.5s ease-out;
  transition: left 0.5s ease-out;
}

.tweet {
  margin-left: 5px;
}