#app-3d-container {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  aspect-ratio: 1.5625;
  /* Loader 2 */
}
#app-3d-container .loader-2 {
  display: block;
  height: 20vw;
  width: 20vw;
  max-height: 200px;
  max-width: 200px;
  animation: loader-2-1 3s linear infinite;
}
@keyframes loader-2-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#app-3d-container .loader-2 span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 20vw;
  width: 20vw;
  max-height: 200px;
  max-width: 200px;
  clip: rect(25px, 50px, 50px, 0);
  animation: loader-2-2 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@media (min-width: 461px) {
  #app-3d-container .loader-2 span {
    clip: rect(50px, 100px, 100px, 0);
  }
}
@media (min-width: 768px) {
  #app-3d-container .loader-2 span {
    clip: rect(100px, 200px, 200px, 0);
  }
}
@keyframes loader-2-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#app-3d-container .loader-2 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 20vw;
  width: 20vw;
  max-height: 200px;
  max-width: 200px;
  border: 3px solid transparent;
  border-top: 3px solid #FFF;
  border-radius: 50%;
  animation: loader-2-3 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes loader-2-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#app-3d-container .loader-2 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 20vw;
  width: 20vw;
  max-height: 200px;
  max-width: 200px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

#app-3d-play {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
#app-3d-play > div:first-of-type {
  width: inherit;
  height: inherit;
}
#app-3d-play > div:first-of-type img {
  width: inherit;
  height: inherit;
}

#app-3d-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 20vw;
  height: 20vw;
  max-height: 200px;
  max-width: 200px;
  transform: translate(-50%, -50%);
}

#app-3d-output {
  display: none;
}

#app-3d-loader {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20vw;
  height: 20vw;
  max-height: 200px;
  max-width: 200px;
  margin: auto;
}

#app-3d-canvas {
  max-width: 100%;
  width: 1000px;
}

/*# sourceMappingURL=draw_animation.css.map*/