.dioramabtn {
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background-color: #f20808;
  padding: 10px 30px;
  border: solid #ec0016 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  /*display: flex;*/
  /*flex-direction: row;*/
  align-items: center;
  cursor: pointer;
  margin: 3px;
}

.dioramabtn:hover {
  transition: 1000ms;
  padding: 10px 50px;
  transform: translateY(-0px);
  background-color: #fff;
  color: #ec0016;
  border: solid 5px #ec0016;
}

#animSteuerung {
  position: absolute;
  top: 10px;
  right: 19px;
  cursor: pointer !important;
}

.btntype:hover {
  background-color: #be8e8e;
  color: white;
}

#btnRestart {
  width: 55px;
  height: 55px;
  /*background-color: #3f52b4;*/
  border-radius: 50px;
}

#btnRestart:active {
  background-color: red;
  color: white;
}

#btnPlay {
  width: 55px;
  height: 55px;
  border-radius: 50px;
}

#btnPlay:active {
  background-color: red;
  color: white;
}

#btnFuehrung {
  width: 55px;
  height: 55px;
  border-radius: 50px;
}

#btnFuehrung:active {
  background-color: red;
  color: white;
}

#btnPause {
  width: 55px;
  height: 55px;
  border-radius: 50px;
}

#btnPause:active {
  background-color: red;
  color: white;
}

#api-frame {
  width: 100%;
  height: 100vh;
  background-color: #4a4a4a;
}

#navigator {
  /*z-index: 1000000000;*/
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#btnZu, #btnAuf {
  width: 20%;
}

div {
}

#btnZu {
  background-color: rgba(0,128,0,0.39);
  font-size: 2.5vw;
  border: none;
}

/* Dieser Media Query wird aktiv, wenn 2.5% der Viewport-Breite 40px übersteigt. */

@media (min-width: 1600px) {
  #btnZu {
    font-size: 40px;
  }
}

#btnAuf {
  background-color: rgba(255,0,0,0.35);
  font-size: 2.5vw;
  border: none;
}

/* Dieser Media Query wird aktiv, wenn 2.5% der Viewport-Breite 40px übersteigt. */

@media (min-width: 1600px) {
  #btnAuf {
    font-size: 40px;
  }
}

.transparent-modal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.transparent-modal .modal-dialog {
  background-color: transparent;
}

.transparent-modal img.your-image-class {
  margin: 0;
  background-color: transparent;
}

.transparent-modal .modal-header, .transparent-modal .modal-footer, .transparent-modal .modal-body {
  border: none;
  padding: 0;
}

