@font-face {
  font-family: "Epidemic";
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.epidemicsound.com/legacy/19/fonts/epidemic/Epidemic-Medium.woff2") format("woff2"), url("https://cdn.epidemicsound.com/legacy/19/fonts/epidemic/Epidemic-Medium.woff") format("woff");
}
@font-face {
  font-family: "Epidemic";
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.epidemicsound.com/legacy/19/fonts/epidemic/Epidemic-SemiBold.woff2") format("woff2"), url("https://cdn.epidemicsound.com/legacy/19/fonts/epidemic/Epidemic-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Epidemic";
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.epidemicsound.com/legacy/19/fonts/epidemic/Epidemic-Bold.woff2") format("woff2"), url("https://cdn.epidemicsound.com/legacy/19/fonts/epidemic/Epidemic-Bold.woff") format("woff");
}
/*  css-loading-spinners.css
  Copyright (c) Ian A. Cook
  MIT License
  https://github.com/nai888/css-loading-spinners
*/
:root {
  --cls-color: #000;
  --cls-sec-color: #444;
  --cls-size: 5rem;
  --cls-margin: 1rem;
  --cls-speed: 2s;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes flip-flop {
  0%, 100% {
    -webkit-transform: perspective(calc(var(--cls-size) / 5 * 8)) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(calc(var(--cls-size) / 5 * 8)) rotateY(180deg);
  }
}
@keyframes flip-flop {
  0%, 100% {
    -webkit-transform: perspective(calc(var(--cls-size) / 5 * 8)) rotateY(0deg);
    transform: perspective(calc(var(--cls-size) / 5 * 8)) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(calc(var(--cls-size) / 5 * 8)) rotateY(180deg);
    transform: perspective(calc(var(--cls-size) / 5 * 8)) rotateY(180deg);
  }
}
@-webkit-keyframes signal {
  0% {
    -webkit-transform: scale(0);
    -webkit-opacity: 0;
  }
  50% {
    -webkit-opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -webkit-opacity: 0;
  }
}
@keyframes signal {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    opacity: 0;
  }
  50% {
    -webkit-opacity: 1;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 0;
    opacity: 0;
  }
}
@-webkit-keyframes grow-shrink {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes grow-shrink {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
[class^=cls-] {
  box-sizing: border-box;
}

.cls-spinner {
  display: block;
  position: relative;
  width: var(--cls-size);
  height: var(--cls-size);
  margin: var(--cls-margin);
}

.cls-flip-flop {
  -webkit-animation: flip-flop calc(var(--cls-speed) / 2) ease infinite;
  animation: flip-flop calc(var(--cls-speed) / 2) ease infinite;
}

.cls-spin {
  -webkit-animation: spin var(--cls-speed) linear infinite;
  animation: spin var(--cls-speed) linear infinite;
}

.cls-circle {
  border-width: calc(var(--cls-size) / 5 * 0.75);
  border-style: solid;
  border-color: var(--cls-sec-color);
  border-top-color: var(--cls-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.cls-dual-circle {
  border-width: calc(var(--cls-size) / 5 * 0.75);
  border-style: solid;
  border-color: var(--cls-color) transparent;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.cls-bowtie, .cls-bowtie-v {
  border-width: calc(var(--cls-size) / 2);
  border-style: solid;
  border-color: transparent var(--cls-color);
  border-radius: 50%;
}

.cls-bowtie-v {
  border-color: var(--cls-color) transparent;
}

.cls-square {
  width: 100%;
  height: 100%;
  background-color: var(--cls-color);
}

.cls-signal, .cls-triple-signal, .cls-triple-signal::before, .cls-triple-signal::after {
  border-width: calc(var(--cls-size) / 25);
  border-style: solid;
  border-color: var(--cls-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
}

.cls-triple-signal::before, .cls-triple-signal::after, .cls-rings::before, .cls-rings::after {
  content: "";
  top: 50%;
  left: 50%;
  margin: calc(var(--cls-size) / -2) 0 0 calc(var(--cls-size) / -2);
}

.cls-signal, .cls-triple-signal, .cls-triple-signal::before, .cls-triple-signal::after {
  -webkit-animation: signal calc(var(--cls-speed) / 2) ease-out infinite;
  animation: signal calc(var(--cls-speed) / 2) ease-out infinite;
}

.cls-triple-signal::before {
  -webkit-animation-delay: calc(var(--cls-speed) / 20);
  animation-delay: calc(var(--cls-speed) / 20);
}

.cls-triple-signal::after {
  -webkit-animation-delay: calc(var(--cls-speed) * 3 / 20);
  animation-delay: calc(var(--cls-speed) * 3 / 20);
}

.cls-ring, .cls-rings, .cls-rings::before, .cls-rings::after {
  border-width: calc(var(--cls-size) / 25);
  border-style: solid;
  border-color: var(--cls-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.cls-rings, .cls-rings::before, .cls-rings::after {
  position: absolute;
}

.cls-ring, .cls-rings, .cls-rings::before, .cls-rings::after {
  -webkit-animation: grow-shrink var(--cls-speed) ease-in-out infinite;
  animation: grow-shrink var(--cls-speed) ease-in-out infinite;
}

.cls-rings::before {
  -webkit-animation-delay: calc(var(--cls-speed) / -4);
  animation-delay: calc(var(--cls-speed) / -4);
}

.cls-rings::after {
  -webkit-animation-delay: calc(var(--cls-speed) / 4);
  animation-delay: calc(var(--cls-speed) / 4);
}

html, body {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  font-style: normal;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  font-family: "Epidemic";
  text-rendering: geometricPrecision;
}

img, canvas {
  user-select: none;
  user-drag: none;
}

a {
  color: inherit;
  text-decoration: underline;
  color: #0050CA;
}
a:hover {
  color: inherit;
}
a:visited {
  color: inherit;
}
a:active {
  color: inherit;
}

div {
  box-sizing: border-box;
}

.fps {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 40px;
  height: auto;
  background-color: #000;
  font-family: monospace;
  z-index: 999;
  pointer-events: none;
}

.loading-character {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.loading-character.show {
  opacity: 1;
}

.rpm-container {
  position: absolute;
  top: 76px;
  left: 0px;
  width: 100%;
  height: calc(100% - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s linear;
  transition-delay: 0.3s;
}
.rpm-container.open {
  opacity: 1;
  pointer-events: all;
}
.rpm-container iframe {
  width: 100%;
  height: 100%;
  outline: 0;
  border: 0;
}

.logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 150px;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.5s linear;
}
.logo.hidden {
  opacity: 0;
}

.open-rpm-button {
  position: absolute;
  width: 180px;
  height: 50px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(50, 50, 180);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  user-select: none;
  cursor: pointer;
}

.render-button, .download-button {
  position: absolute;
  width: auto;
  height: 50px;
  bottom: 30px;
  transform: translateX(-50%);
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  padding: 20px 60px;
  user-select: none;
  cursor: pointer;
  border-radius: 3px;
  border: 3px solid white;
  opacity: 1;
  transition: opacity 0.5s linear;
}
.render-button.hidden, .download-button.hidden {
  opacity: 0;
}

.user-previous-vals {
  position: absolute;
  width: auto;
  height: auto;
  bottom: 30px;
  right: 30px;
  opacity: 1;
  transition: opacity 0.5s linear;
  font-size: 14px;
  user-select: none;
  pointer-events: auto;
  cursor: pointer;
}
.user-previous-vals:hover {
  text-decoration: underline;
}
.user-previous-vals.hide {
  opacity: 0;
  pointer-events: none;
}

.video-preview-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}
.video-preview-container .video-preview {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 800px;
  height: 700px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 80px;
}
.video-preview-container .video-preview .header {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.video-preview-container .video-preview .header h1 {
  width: 100%;
  height: 100%;
  margin: 0px;
  text-align: center;
  user-select: none;
  pointer-events: none;
}
.video-preview-container .video-preview .video-container {
  width: 100%;
  height: 100%;
  flex: 1;
  pointer-events: none;
  padding: 20px;
  overflow: hidden;
}
.video-preview-container .video-preview .video-container video {
  width: 100%;
  height: 100%;
}
.video-preview-container .video-preview .download-button {
  user-select: none;
  pointer-events: none;
  position: relative;
  left: initial;
  bottom: initial;
  transform: initial;
}
.video-preview-container .video-preview .close {
  user-select: none;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 30px;
  width: auto;
  height: 20px;
  font-size: 14px;
  cursor: pointer;
}
.video-preview-container .video-preview .close:hover {
  text-decoration: underline;
}
.video-preview-container.show {
  opacity: 1;
  pointer-events: auto;
}
.video-preview-container.show .download-button {
  pointer-events: auto;
}
.video-preview-container.show .close {
  pointer-events: auto;
}

.soundpicker {
  position: absolute;
  width: 600px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s linear;
}
.soundpicker h1 {
  margin-bottom: 6px;
}
.soundpicker.hidden {
  opacity: 0;
  pointer-events: none;
}
.soundpicker .sound-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  justify-content: space-between;
}
.soundpicker .sound-container .sound {
  width: 150px;
  height: 150px;
  background-color: #53dad1;
  color: white;
  border-radius: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  user-select: none;
  position: relative;
  cursor: pointer;
}
.soundpicker .sound-container .sound .equalizer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: plus-lighter;
  width: 40px;
  opacity: 0;
  transition: opacity 0.5s linear;
  pointer-events: none;
  user-select: none;
}
.soundpicker .sound-container .sound .equalizer img {
  height: 230px;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
.soundpicker .sound-container .sound .label {
  pointer-events: none;
  user-select: none;
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
.soundpicker .sound-container .sound:last-of-type {
  margin-left: 20px;
}
.soundpicker .sound-container .sound:hover .equalizer {
  opacity: 0.1;
}
.soundpicker .sound-container .sound.selected .equalizer {
  opacity: 1;
}
.soundpicker .sound-container .sound.selected:hover .equalizer {
  opacity: 1;
}
.soundpicker .next {
  margin-top: 20px;
  width: 120px;
  height: 60px;
  background-color: transparent;
  border: 3px solid white;
  color: white;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: 600;
  align-self: flex-end;
}
.soundpicker .next:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.stem-selector {
  position: absolute;
  width: 50%;
  height: 20%;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
}
.stem-selector .track {
  position: relative;
  flex: 0 0 33.33%;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-top: 10px;
}
.stem-selector .track .label {
  position: absolute;
  left: 0px;
  top: 0px;
  color: #000;
  font-size: 9px;
  user-select: none;
  pointer-events: none;
}
.stem-selector .track .stem {
  position: relative;
  flex: 0 0 33.33%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  margin-left: 2px;
  background-color: rgba(100, 100, 255, 0.2);
  transition: background-color 0.5s ease-out;
}
.stem-selector .track .stem:nth-of-type(2) {
  margin-left: 0px;
}
.stem-selector .track .stem .label {
  position: static;
  color: #666;
  transition: color 0.5s ease-out;
}
.stem-selector .track .stem.selected {
  background-color: rgba(50, 50, 200, 0.8);
}
.stem-selector .track .stem.selected .label {
  color: #fff;
}

.three-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.three-container.show {
  opacity: 1;
}
.three-container canvas {
  width: 100%;
  height: 100%;
}
.three-container .three-view {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.three-container .three-view canvas {
  opacity: 1;
  transition: opacity 0.8s ease-out;
  transition-delay: 1s;
}
.three-container .three-view .cls-spinner {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-out;
  transition-delay: 1s;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.three-container .three-view .spinhitarea {
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: all;
  width: 85%;
  height: 85%;
  border-radius: 50%;
}
.three-container .three-view.loading canvas {
  opacity: 0;
  transition-delay: 1s;
}
.three-container .three-view.loading .cls-spinner {
  opacity: 1;
  transition-delay: 1s;
}

.render-preview {
  z-index: 7;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.render-preview video {
  object-fit: unset;
  width: auto;
  height: auto;
}

.recorder {
  position: absolute;
  top: 0px;
  left: 1440px;
  width: 720px;
  height: 1200px;
  background-color: #333;
}
.recorder .button {
  width: 100%;
  height: 40px;
  background-color: #444;
  border-radius: 20px;
  cursor: pointer;
}

.loader {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s linear;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader .header {
  font-size: 50px;
  font-weight: 600;
  user-select: none;
  pointer-events: none;
}
.loader .spinner {
  display: none;
  margin-top: 50px;
  user-select: none;
  pointer-events: none;
}
.loader .spinner .cls-dual-circle {
  border-color: #fff transparent;
  user-select: none;
  pointer-events: none;
}
.loader .status-text {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  user-select: none;
  pointer-events: none;
}
.loader .progress {
  margin-top: 50px;
  width: 300px;
  height: 30px;
  max-width: 100%;
  background-color: #000;
  padding: 1px;
  user-select: none;
  pointer-events: none;
}
.loader .progress .progress-fill {
  width: 45%;
  height: 100%;
  background-color: #fff;
  user-select: none;
  pointer-events: none;
}