/* CSS */

#tp-tn{display:none;} /* Alle drei zusammen */

.ton {
    background-image: url(../img/01-about/ton.svg);
    height: 18px;
	width: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}

.play-music {
    display: flex;
    position: fixed;
    z-index: 10;
	bottom: 0;
    margin: 90px;
}

.music-animation {
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 20px;
    margin-left: -20px;
	padding-bottom: 0px;
}
.music-animation.on .bar {
  -webkit-animation: bar 1.2s infinite;
          animation: bar 1.2s infinite;
}
.music-animation.on .bar2 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.music-animation.on .bar3 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.music-animation.on .bar4 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.music-animation.on .bar5 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.music-toggle {
  cursor: pointer;
  font-size: 20px;
  position: relative;
}
.music-toggle:after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: white;
  position: absolute;
  transition: 0.2s;
}
.music-toggle:hover:after {
  width: 100%;
}

.bar {
  width: 2px;
  background-color: white;
  height: 2px;
  display: block;
  margin: 0 1.5px;
}

@-webkit-keyframes bar {
  0% {
    height: 4px;
  }
  50% {
    height: 14px;
  }
  100% {
    height: 4px;
  }
}

@keyframes bar {
  0% {
    height: 4px;
  }
  50% {
    height: 14px;
  }
  100% {
    height: 4px;
  }
}
.dance-frame {
  width: 400px;
}

.dance-animation {
  list-style: none;
  padding: 0;
  text-align: center;
  width: calc(11 * 400px);
  display: flex;
  transform: translateX(2000px);
  -webkit-animation: play 1.3s steps(11) infinite;
          animation: play 1.3s steps(11) infinite;
}

@-webkit-keyframes play {
  100% {
    transform: translateX(-2400px);
  }
}

@keyframes play {
  100% {
    transform: translateX(-2400px);
  }
}
.dance-frame {
  position: relative;
  height: 550px;
}

@media only screen and (max-device-width: 760px)  {
	.play-music {margin-left: calc((100vw - 322px) / 2);margin: 30px 36px;}	
	.ton {height: 13px;width: 16px;}
	.bar {width: 1px;height:2px;}
}