/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-condensed-v31-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
  margin : 0;
  padding : 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  height : 100%;
}

body {
  overflow : hidden;
  font-family : 'Roboto Condensed', sans-serif;
  font-size : 18px;
  font-weight : 400;
  color : #000;
  height: 100%;
  background: #000;
}

a {
  text-decoration : none;
  color : #000;
}

a:hover {
  color : #000;
}

#wrapper {
  position: relative;
  height: auto;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#player {
  width: 100%;
  max-width: 690px;
  height: 315px;
  background : #b3b3b3 url(images/background.png);
  background-size: cover;
  background-position: center center;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  perspective: 900px; /* für 3D-Kippen */
}

#dots_container {
  width: 690px;
  height: 280px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

#dots {
  width: 690px;
  height: 280px;
  background: url(images/dots.svg);
  background-size: cover;
  position: relative;
  z-index: 1;
  transform: translate3d(0,0,0) scale(1);
  will-change: transform;
  pointer-events: none;
}

#ddp_radio {
  position: absolute;
  width: 140px;
  height: 140px;
  display: block;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  z-index: 2;
}

#ddp_dance {
  position : absolute;
  width : 116px;
  height : 116px;
  display: block;
  left: 85px;
  top: 47px;
  z-index: 2;
}

#ddp_schlager {
  position : absolute;
  width : 116px;
  height : 116px;
  display: block;
  right: 85px;
  top: 47px;
  z-index: 2;
}

#ddp_radio img, #ddp_dance img, #ddp_schlager img {
  display: block;
  width: 100%;
  height: auto;
}

#ddp_radio:before, #ddp_dance:before, #ddp_schlager:before {
  content: '';
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  right: -3px;
  bottom: -3px;
  background: #fff;
  z-index: -1;
  border-radius: 50%;
} 

#ddp_dance:after {
  content: '';
  display: block;
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background: #e96900;
  z-index: -2;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in;
} 


@keyframes pulse {
  from {transform: scale(1);
  background: #e96900;
}
  to {transform: scale(1.18);
  background: #fa7000;}
}

.sm_icons {
  position: absolute;
  width: 30px;
  top: 20px;
}

.sm_icons_dance {
  left: 16px;
}

.sm_icons_schlager {
  right: 16px;
}

.sm_icons .button {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  z-index: 10;
}

.sm_icons .button > a {
  display: block;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: #e96900;
  border-radius: 50%;
}

.sm_icons_schlager .button > a {
  background: #117eb8;
}

.sm_icons .button > a img {
  display: block;
  width: 100%;
  height: auto;
}

.sm_icons .button:nth-child(1) { top: 0; }
.sm_icons .button:nth-child(2) { top: 45px; }
.sm_icons .button:nth-child(3) { top: 90px; }
.sm_icons .button:nth-child(4) { top: 135px; }

#radio {
  max-width : 690px;
  height : 315px;
  margin: 0 auto;
  position : relative;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
}




#social {
    position: absolute;
    top: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

#player_container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 10;
}

#mylunaradio {
    width: 90%;
    height: 60px;
    margin: 0 auto;
    position : relative;
    border : #fff solid 2px;
    z-index: 11;
}

#mylunaradio > div > div > div:nth-child(8) > div:nth-child(1), #mylunaradio > div > div > div:nth-child(8) > div:nth-child(2) {
  fill: #e96900 !important;
}

#mylunaradio > div > div > div:nth-child(5) {
  font-weight: 500 !important;
}



#footer {
  position : absolute;
  bottom : 15px;
  left: 0;
  right: 0;
}

#footer p {
    display: block;
    width : 90%;
    text-align : center;
    color : #000;
    font-size : 10px;
    margin: 0 auto;
}

@media(max-width: 630px) {

  #player {
    height: 470px;
  }

  #dots_container {
    top: -15px;
  }

  #ddp_radio {
    width: 130px;
    height: 130px;
    top: 55px;
  }

  #ddp_dance_container {
    position: absolute;
    left: 46px;
    right: 50%;
    top: 210px;
  }

  #ddp_dance {
    width : 100px;
    height : 100px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }

  #ddp_schlager_container {
    position: absolute;
    right: 46px;
    left: 50%;
    top: 210px;
  }

  #ddp_schlager {
    width : 100px;
    height : 100px;
    right: 50%;
    transform: translateX(50%);
    top: 0;
  }

  .sm_icons {
    top: 173px;
  }

  .sm_icons_dance {
    left: 14px;
  }

  .sm_icons_schlager {
    right: 1
    4px;
  }

}