html,
body {
  font-family: "Arial", sans-serif;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: none;
}

#player {
  border: 3px solid #666;
  border-radius: 15px;
  -o-border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  max-width: 100%;
  background-color: #00203E;
  margin: auto;
  background-image: url('../bilder/bg.jpg');
  background-position: 50px center;
  background-size: 60% auto;
}

#player audio {
  width: 96%;
  padding: 0px;
  border: 0px none;
  background-color: #FFF;
  font-size: 16px;
  margin: 10px 2%;
}

body.mobile #player audio {
  font-size: 16px;
  height: 80px;
}

#player ul {
  margin: 0px;
  padding: 0px;
}

#player li {
  box-sizing: border-box;
  list-style-type: none;
  border-top: 2px solid #666;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.2);
}


#player li a:focus,
#player li a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  outline: 0px
}

#player li a {
  padding: 6px;
  color: #FFF;
  text-decoration: none;
  font-size: 15px;
  display:block;
}

body.mobile #player li a {
  font-size: 22px;
  padding: 20px 10px;
  color: #FFF;
}

#player ul li.activ a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  outline: 0px;
  background-image: url('../bilder/stern.png');
  padding-left: 30px;
  background-position: 10px center;
  background-repeat: no-repeat;
}

body.mobile #player ul li.activ a {
  background-image: url('../bilder/stern2x.png');
  padding-left: 40px;
}

div.loading {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

div.loading div.icon {
  width: 50px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #FFF;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
