@font-face {
  font-family: 'Gotham SSm A', 'Gotham SSm B', 'Lato';
  src: url('/media/webfonts/Lato/lato-regular-webfont.eot');
  src: url('/media/webfonts/Lato/lato-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('/media/webfonts/Lato/lato-regular-webfont.woff') format('woff'),
       url('/media/webfonts/Lato/lato-regular-webfont.ttf') format('truetype');
}

* {
  -webkit-box-sizing: border-box; /* Provides easier layout management */
     -moz-box-sizing: border-box; /* by including element padding when */
          box-sizing: border-box; /* setting width and height.         */
}

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Lato, Helvetica, Arial, sans-serif;
  font-size: 0.8em;
}

strong {
  font-weight: bold;
}

.oldie .wrapper, .oldbrowser .wrapper, .no-js .wrapper, .no-localstorage {
  background-color: white;
}

a {
  color: inherit;
  text-decoration: inherit;
}

a:hover {
  color: inherit;
  text-decoration: inherit;
}

h2, h3 {
  font-weight: normal;
}

h2 {
  font-size: 1.125em;
}

.no-selection {
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
}

.wrapper {
  -webkit-perspective: 1000;
  height: 100%;
  background: black;
}

.layout {
  background: white;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s linear;
  -webkit-transform-origin: 0 0 0;
  -webkit-transform: translateZ(0);
}

.layout.backgrounded {
    opacity: 0.7;
    -webkit-transform: translate3d(0,10px, -30px) rotateX(-5deg);
}

.initializing .wrapper {
  opacity: 0;
}

.row {
  width: 100%;
  display: block;
  clear: both;
}

.column {
  height: 100%;
}

.top-bar {
  height: 45px;
  width: 100%;
}

.header {
  height: 100%;
  width: 100%;
  background: #222;
  position: relative;
  -webkit-transition: background-color 0.5s linear;
  -moz-transition: background-color 0.5s linear;
  -ms-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

.default-branding .header {
  /* Only shown if a site doesn't set */
  /* the app's branding.              */
  background-color: #e11837;
}



.header .tabs-toggle {
  width: 60px;
  height: 45px;
  font-size: 1.4em;
  float: left;
  color: #f2a9b6;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}

.header h1 {
  color: white;
  margin: 0;
  line-height: 45px;
  font-size: 1.4em;
  font-weight: normal;
  padding: 0 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 80%;
}

.volume-wrapper {
  display: none;
  position: absolute;
  right: 1em;
  top: 0;
  width: 78px;
  height: 100%;
  color: white;
  line-height: 47px;
  font-size: 14px;
}

.volume {
  width: 39px;
  height: 13px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}

.volume-block {
  width: 5px;
  padding: 0 1px;
  height: 100%;
  float: left;
  background: white;
  background-clip: content-box;
  opacity: 0.4;
  filter: alpha(opacity=40);
  /*pointer-events: none;*/
  -webkit-transition: -webkit-transform 0.25s linear;
  -webkit-transform-origin: 0 100%;
  -moz-transition: -moz-transform 0.25s linear;
  -moz-transform-origin: 0 100%;
  -o-transition: -o-transform 0.25s linear;
  -o-transform-origin: 0 100%;
  -ms-transition: -ms-transform 0.25s linear;
  -ms-transform-origin: 0 100%;
  transition: transform 0.25s linear;
  transform-origin: 0 100%;
}

.volume-block.hover {
  -webkit-transition-duration: 0s;
  -webkit-transform: scaleY(1.3);
  -moz-transition-duration: 0s;
  -moz-transform: scaleY(1.3);
  -o-transition-duration: 0s;
  -o-transform: scaleY(1.3);
  -ms-transition-duration: 0s;
  -ms-transform: scaleY(1.3);
  transition-duration: 0s;
  transform: scaleY(1.3);
}

.volume-block.set {
  opacity: 1;
  filter: alpha(opacity=100);
}

.volume-block:first-child {
  /*margin-left: 0;*/
}



.central-section {
  height: 435px;
}

.no-localstorage .requires-localstorage {
  display: none;
}

.tabs {
  float: left;
  width: 70px;
  background: #384043;
  overflow: hidden;
}

.tabs-closed .tabs {
  width: 0;
}

.tabs ul {
  margin: 1.5em 0 0 0.4em;
}

.tabs li {
  width: 59px; /* prevents tab images moving during tab bar resize */
  text-align: center;
  margin: 0 0 2em;
  font-size: 12px;
  cursor: pointer;
  color: #71767B;
  text-decoration: none;
  position: relative;
  -webkit-transition: text-shadow linear 0.2s, color linear 0.2s;
     -moz-transition: text-shadow linear 0.2s, color linear 0.2s;
      -ms-transition: text-shadow linear 0.2s, color linear 0.2s;
       -o-transition: text-shadow linear 0.2s, color linear 0.2s;
          transition: text-shadow linear 0.2s, color linear 0.2s;
}

.tabs li:hover, .tabs li.selected {
  color: #fff;
}

.tabs li.selected {
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.8);
}

.tabs li > i {
  display: block;
  margin: 0 auto 5px;
  font-size: 2em;
}

.tabs a {
  text-decoration: none;
}

.tabs a:hover {
  text-decoration: none;
}

.tabs .count-badge {
  position: absolute;
  top: -4px;
  right: 9px;
  background: #e11838;
  color: white;
  width: 15px;
  height: 15px;
  font-size: 9px;
  line-height: 15px;
  border-radius: 2px;
}

.tabs .count-badge.animated-increment {
  color: #e11838;
  -webkit-animation: animated-increment 0.3s ease-in-out 0s 1;
     -moz-animation: animated-increment 0.3s ease-in-out 0s 1;
      -ms-animation: animated-increment 0.3s ease-in-out 0s 1;
       -o-animation: animated-increment 0.3s ease-in-out 0s 1;
          animation: animated-increment 0.3s ease-in-out 0s 1;
}

.tabs .count-badge.animated-decrement {
  color: #e11838;
  -webkit-animation: animated-decrement 0.3s ease-in-out 0s 1;
     -moz-animation: animated-decrement 0.3s ease-in-out 0s 1;
      -ms-animation: animated-decrement 0.3s ease-in-out 0s 1;
       -o-animation: animated-decrement 0.3s ease-in-out 0s 1;
          animation: animated-decrement 0.3s ease-in-out 0s 1;
}

.main {
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
}

.content {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.player-padding .list-view:after, .player-padding .detail-view:after {
  /* Add space to the bottom of content
     when the player is open on top.
     An IE8 hack that is cross-browser compatible.
  */
  content: "";
  height: 80px;
  position:relative;
  display:block;
}

.content {
  -webkit-overflow-scrolling: touch;
}

.content .full-image {
  width: 100%;
  overflow: hidden;
  margin: 0 0 2.3em;
  max-height: 380px;
}

.content .full-image img, .content .mini-image img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.content .mini-image {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 1em 0.5em 0;
  background: #eee;
}

.content .mini-image + .show-title {
  padding-top: 15px;
}

.controls {
  position: absolute;
  bottom: 0;
  height: 0;
  text-align: center;
}

.controls.visible {
  z-index: 0;
  height: 80px;
}

.controls-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}

.linked.controls-wrapper {
  background: rgb(56, 64, 67); /* IE 8 fallback */
  background: rgba(56, 64, 67, 0.8);
}

.linked.controls-wrapper .playback-toggle {
  position: relative;
  width: 80px;
  height: 80px;
  left: auto;
  right: 0;
  top: 0;
  float: right;
  background: rgb(56, 64, 67);
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  color: white;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.linked.controls-wrapper .playback-toggle:hover {
  background: rgb(46, 52, 55);
}

.linked.controls-wrapper p {
  font-size: 1em;
  float: left;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 1.3em 1em 0 2em;
  color: white;
  line-height: 1.4em;
  text-align: left;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.linked.controls-wrapper p:hover {
  background: rgba(56, 64, 67, 0.4);
}


.linked.controls-wrapper .return.active-link {
  cursor: pointer;
}

.playback-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -27px 0 0 -27px;
  text-align: center;
  border: 1px solid #e9e9e9;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
      -ms-border-radius: 50%;
       -o-border-radius: 50%;
          border-radius: 50%;
  cursor: pointer;
  color: #222;
  background: white;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  -moz-transition: background-color 0.2s linear, color 0.2s linear;
  -ms-transition: background-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
}

.playback-button:hover {
  background: #384043;
  color: white;
}

.playback-button i {
  display: block;
  position: absolute;
  font-size: 30px;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -10px;
}

.playback-button i.fa-pause {
  margin: -15px 0 0 -13px;
}

.playback-toggle {
  width: 55px;
  height: 55px;
}

  .playback-toggle .icon-pause
, .playback-toggle .icon-spinner
{
  margin-left: -13px;
}

.small.playback-button {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
}

.small.playback-button i {
  font-size: 30px;
  margin: -15px 0 0 -13px;
}

.rewind.playback-button {
  margin-left: -85px;
}

.rewind.playback-button p {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -3px 0 0 -5px;
  font-size: 9px;
}

.share.playback-button {
  margin-left: 45px;
}

.progress-meter {
  bottom: 100%;
  position: absolute;
  width: 100%;
  cursor: pointer;
  -webkit-transition: height 0.3s;
     -moz-transition: height 0.3s;
      -ms-transition: height 0.3s;
       -o-transition: height 0.3s;
          transition: height 0.3s;
}

.progress-meter-wrapper {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}

.progress-meter .downloaded, .progress-meter .progress {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-meter .downloaded {
  background: #e5e5e5;
}

.progress-meter .progress {
  background: #e11838;
}

.progress-meter .time-stamp {
  position: absolute;
  top: 0em;
  width: 100%;
  background: white;
  text-align: center;
  pointer-events: none;
  font-size: 0.9em;
  line-height: 1.3em;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
}

.progress-meter:hover .time-stamp {
  top: -1.3em;
  -ms-filter: "";
  opacity: 1;
}

.sharing-region {
  position: relative;
  z-index: 1;
}

.controls-region {
  height:  100%;
  width: 100%;
  position: relative;
  z-index: 2;
  background: #f9f9f9;
}

.progress-meter {
    z-index: 2;
    height: 14px;
}

.sharing-menu {
  position: absolute;
  top: -14px; /* height of progress meter */
  left: 50%;
  width: 180px;
  height: 0px;
  overflow: hidden;
  background: rgb(241,241,241);
  -webkit-transition: top 0.1s linear, height 0.1s linear;
}

.streams .sharing-menu {
  top: 0px; /* no progress meter for stream playback controls */
}

.sharing-menu.visible {
  top: -134px;
  height: 120px;
}

.streams .sharing-menu.visible {
  top: -120px;
}

.sharing-menu li {
  font-size: 1em;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #e2e2e2;
  border-left: 1px solid #f2f2f2;
  text-align: left;
  cursor: pointer;
}

.sharing-menu li:hover {
  background: rgb(249,249,249);
}

.sharing-menu li:first-child {
  border-top: none;
}

.sharing-menu li:last-child {
  border-bottom: none;
}

.sharing-menu a {
  text-decoration:  none;
  display: block;
  width: 100%;
  height: 100%;
  color:  black;
  padding: 0 0 0 1em;
}

.sharing-menu a i {
  display: block;
  float: left;
  width: 1.7em;
  line-height: 40px;
}

.sharing-menu a:hover {
  color: black;
}

@media screen and (max-width: 420px) {
  .sharing-menu {
    left: auto;
    right: 0;
  }
}

.loading-view {
  position: absolute;
  text-align: center;
  width: 100%;
  line-height: 2em;
  top: 50%;
  margin-top: -2em;
  padding: 0 2em;
}

.list-view {
  -webkit-transform: translateZ(0); /* hack to prevent rubber band scrolling
                                       in ios5 from preventing the rendering
                                       of anything below the fold. */
}

.empty.list-view {
  height: 100%;
}

.list-view > li {
  position: relative;
  padding: 14px;
  border-bottom: 1px solid #f1f1f1;
  background: none;
  -moz-transition: background 0.5s ease-out;
  -webkit-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}

.list-view-image {
  position: relative;
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 20px 0 0;
  text-align: center;
  overflow: hidden;
}

.list-view-image > img {
  position: relative;
  width: 32px;
  height: 32px;
}

.list-view .title {
  margin-bottom: 0.5em;
  line-height: 1.6em;
}

.ondemand.list-view .title h3 {
  color: rgb(170, 170, 170);
  margin-bottom: 0.3em;
}

.stream-header .title {
  margin-bottom: 0;
}

.stream-header .title h3 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 72%;
}

.streams-list.list-view > li {
  height: 68px;
  cursor: pointer;
}

.streams-list.list-view > li:hover {
  background: #f2f2f2;
}

.ondemand.list-view .title {
  line-height: 1.4em;
  cursor: pointer;
}

  .detail-view a
, .detail-view .show-title
, .detail-view .episode-title
, .detail-view .full-playlist-link
{
  font-weight: normal;
  color: rgb(18, 117, 210);
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms ease 0s;
  -moz-transition: all 200ms ease 0s;
  -webkit-transition: all 200ms ease 0s;
  -o-transition: all 200ms ease 0s;
}

  .detail-view .show-title.no-link
, .detail-view .episode-title.no-link
, .detail-view .full-playlist-link.no-link
{
  color: black;
  cursor: auto;
}


  .detail-view a:hover
, .detail-view .show-title:hover
, .detail-view .episode-title:hover
, .detail-view .full-playlist-link:hover
{
  color: #e21838;
}

  .detail-view .show-title.no-link:hover
, .detail-view .episode-title.no-link:hover
, .detail-view .full-playlist-link.no-link:hover
{
  color: black;
}



.detail-view .catalog-entry-link,
.detail-view .composer {
  color: #333;
}

.detail-view h2 {
  color: #999;
}

.detail-view, .ondemand-detail {
  margin: 0 auto;
  max-width: 450px;
  padding: 22px;
}

.detail-view .stream-header {
  height: 32px;
  padding: 0 0 24px 0;
}

.playlist.detail-view .stream-header {
  height: 60px;
}

.playlist.detail-view .annotations {
  font-size: 0.8em;
}

.playlist.detail-view .annotations [class^="icon-"] {
  float: left;
}

.detail-view .stream-logo {
  width: 32px;
  width: 32px;
}

.detail-view .show-title {
  margin: 0 0 1em;
  font-size: 1em;
  line-height: 1.4em;
  font-weight: normal;
  overflow: hidden;
}

.detail-view .show-link {
  text-decoration: none;
}

.detail-view .episode-title {
  line-height: 1.3em;
  font-size: 2em;
  margin: 0 0 0.6em 0;
  clear: left;
}

.detail-view .loading {
  position: absolute;
  width: 100%;
  height: 2em;
  top: 50%;
  left: 0;
  margin-top: -1em;
  text-align: center;
  line-height: 2em;
}

.detail-view .show-time {
  color: #909090;
}

.detail-view.playlist .stream-header {
  border-bottom: 1px solid #F4F4F4;
  padding-bottom: 0;
}

.detail-view.playlist ul {
  margin-top: 18px;
}

.detail-view .episode-tease {
  margin: 1.5em 0 1.8em;
  padding: 0;
  color: #909090;
  font-size: 1em;
  font-weight: 200;
  line-height: 1.5em;
}

.episode-tease p {
  margin: 0 0 1em;
}

.annotations {
  height: 40px;
}

.annotations li {
  font-size: 1em;
  float:left;
  margin: 0 1.6em 0 0;
}

.annotations li i {
  display: block;
  line-height: 0.4em;
  font-size: 1.3em;
  padding: 0 0.3em 0 0;
  float: left;
}

.listener-count {
  color: #909090;
}

.comment-count {
  color: rgb(18, 117, 210);
  cursor: pointer;
}

.comment-count:hover {
  color: #e21838;
}

.stream-playlist-item {
  padding: 0 0 32px;
  line-height: 2em;
}

.stream-playlist-item h5 {
  font-weight: normal;
  font-size: 0.9em;
  color: #a4a4a4;
}

.stream-playlist-item h1 {
  font-size: 1em;
  color: #666;
}

.stream-playlist-item h2 {
  font-size: 1em;
  color: #7c7c7c;
}

  .stream-playlist-item.just-now h1
, .stream-playlist-item.playing-now h1
{
  color: #000;
}

  .stream-playlist-item.just-now h2
, .stream-playlist-item.just-now h5
, .stream-playlist-item.playing-now h2
, .stream-playlist-item.playing-now h5
{
  color: #333;
  font-weight: normal;
}

.buttons {
  height: 32px;
  clear: both;
  margin-top: 1em;
}

.buttons > li {
  float: left;
  margin: 0 0.4em 0 0;
}

.list-view li .error {
  margin: 0.5em 0 0;
  padding: 0.5em;
  background: rgb(150,150,150);
  color: white;
}

.oldbrowser-message a {
  text-decoration: underline;
}

.oldbrowser-message, .no-js-message, .no-localstorage-message {
  display: none;
  line-height: 1.5em;
  padding: 1em;
  position: absolute;
  height: 4em;
  margin-top: -2em;
  top: 50%;
  left: 0;
}

.oldie .oldbrowser-message, .oldbrowser .oldbrowser-message, .no-js .no-js-message, .no-localstorage .no-localstorage-message {
  display: block;
}

.oldie.no-localstorage .no-localstorage-message, .oldbrowser.no-localstorage .no-localstorage-message {
  /*
  If the user is using a browser that is too old AND the browser has
  no local storage support then only display the old browser message.
  */
  display: none;
}

.banner-image {
  display: none;
}

.popular-item-view h2 {
  cursor: pointer;
}

.popular-item-view h2:hover {
  color: #666;
}

.list-view > .gad {
  height: 278px;
  padding: 14px 0;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #f1f1f1;
  text-align: center;
}

.modal {
  position: absolute;
  z-index: 1000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: rgba(255,255,255,0.7);
}

.modal.hidden {
  display: none;
}

.flash-error {
  width: 100%;
  height: 120px;
  background: rgb(215,0,43);
  position: absolute;
  top: 50%;
  margin: -60px 0 0;
  padding: 1em;
  color: white;
  font-size: 1.3em;
  text-align: center;
  line-height: 1.7em;
}

.upgrade-link {
  font-size: 1.3em;
  text-decoration: underline;
  color: white;
}

.upgrade-link:hover {
  color: white;
}

.flash-error .refresh-message {
  display: none;
}

.flash-error.show-refresh-message .refresh-message {
  display: block;
}

.flash-error.show-refresh-message .message {
  display: none;
}

.ellipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
