/*!*********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/styles.scss ***!
  \*********************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Titillium+Web:ital@1&display=swap);
/*!*************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/styles.scss (1) ***!
  \*************************************************************************************************************************************************************************************/
.purple {
  fill: #5440da;
  stroke: #5440da;
}

.midnight {
  fill: #33374c;
  stroke: #33374c;
}

.red {
  fill: #ff7866;
  stroke: #ff7866;
}

.sky {
  fill: #92c2c3;
  stroke: #92c2c3;
}

.green {
  fill: #80cb9e;
  stroke: #80cb9e;
}

.yellow {
  fill: #ffb55e;
  stroke: #ffb55e;
}

.loading-screen {
  background: #e5ebeb;
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.loading-screen.active {
  visibility: visible;
  opacity: 1;
  z-index: 0;
}
.loading-screen .branding {
  background-image: url(bde4569ecc142cea0582.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50vw;
  height: 25vh;
  max-width: 500px;
}
.loading-screen .progress-bar .progress {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  height: 80px;
}
.loading-screen .progress-bar .progress .star {
  background-image: url(92b58142135ee2b9b563.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.loading-screen .progress-bar .progress .star.active {
  background-image: url(0d4b71d7f56deba7f055.svg);
  animation: wiggle 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes wiggle {
  0% {
    transform: translateY(20px) rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes l20 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.audio-control {
  position: relative;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.audio-control.active {
  opacity: 1;
}

.audio-btn {
  position: fixed;
  width: 55px;
  height: 55px;
  left: 1rem;
  bottom: 1rem;
  opacity: 0.75;
  z-index: 50;
}

.toggle-sound {
  position: absolute;
  top: calc(50% - 25.5px);
  left: calc(50% - 25.5px);
  background-color: #b4cfcf;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  animation: pulse 1.25s forwards cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 #f06292;
}

.toggle-sound.sound-mute {
  box-shadow: none;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
.sound {
  width: 97%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  left: 0;
  top: 0;
  margin-left: -15%;
}

.sound--icon {
  color: inherit;
  line-height: inherit;
  font-size: 2.6rem;
  display: block;
  margin: auto;
  text-align: left;
  padding-left: 20px;
}
.sound--icon svg {
  width: 12px;
  height: auto;
}

.sound--wave {
  position: absolute;
  border: 2px solid transparent;
  border-right: 2px solid #fff;
  border-radius: 50%;
  transition: all 200ms;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sound--wave_one {
  width: 45%;
  height: 40%;
}

.sound--wave_two {
  width: 70%;
  height: 62%;
}

.sound--wave_three {
  width: 95%;
  height: 75%;
}

.sound-mute .sound--wave {
  border-radius: 0;
  width: 35%;
  height: 35%;
  border-width: 0 2px 0 0;
  left: 5px;
}

.sound-mute .sound--wave_one {
  -webkit-transform: rotate(45deg) translate3d(0, -50%, 0);
  transform: rotate(45deg) translate3d(0, -50%, 0);
}

.sound-mute .sound--wave_two {
  -webkit-transform: rotate(-45deg) translate3d(0, 50%, 0);
  transform: rotate(-45deg) translate3d(0, 50%, 0);
}

.sound-mute .sound--wave_three {
  opacity: 0;
  transform: translateX(-46%);
  height: 20%;
}

.wrapper {
  position: relative;
}

#main-controls {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#main-controls.active {
  opacity: 1;
}

.control-container {
  position: absolute;
  color: white;
  z-index: 9999;
  width: 100vw;
  height: 60px;
  max-height: 500px;
  bottom: 50px;
  right: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 767px) {
  .control-container {
    bottom: 7px;
  }
}
.control-container .centerer {
  display: flex;
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.control-container .img-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.control-container .img-wrapper img {
  height: 50px;
  transition: transform 0.6s ease;
}
.control-container .button {
  font-family: "Titillium Web", sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin: 0 5px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
  min-width: 110px;
  overflow: hidden;
  background-color: #5440da;
  border-radius: 15px;
  cursor: pointer;
  border: 1px solid #dbd8f0;
  background-image: radial-gradient(75% 50% at 50% 0%, #f4feff, transparent), radial-gradient(75% 35% at 50% 80%, #2d1d96, transparent);
  box-shadow: inset 0 -2px 4px 1px rgba(17, 110, 231, 0.6), inset 0 -4px 4px 1px rgba(45, 29, 150, 0.5725490196), inset 0 0 2px 1px rgba(255, 255, 255, 0.2), 0 1px 4px 1px rgba(17, 110, 231, 0.2), 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 767px) {
  .control-container .button {
    margin: 0 25px;
    font-size: 20px;
    min-width: 120px;
  }
}
.control-container .button.btn2 img {
  transform: rotate(0deg);
}
.control-container .button.btn2:hover img {
  transform: rotate(360deg);
}
.control-container .button.btn3 img {
  transform: scale(1);
}
.control-container .button.btn3:hover img {
  transform: scale(1.3);
}

.modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  color: #fff;
  transition: all 1s ease-in-out;
  z-index: 1000;
  background-image: url(b15f8c93eb722905faaf.png);
  background-size: cover;
  background-position: center center;
  z-index: 1000;
  width: 100%;
  height: 100%;
}

.modal-bg {
  display: none;
}
@media screen and (max-width: 1000px) {
  .modal-bg {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 5%, 5% 5%, 5% 95%, 95% 95%, 95% 5%, -1% 5%);
  }
}

.modal.close {
  top: 100%;
  height: 0;
}

.control-container.close {
  visibility: hidden;
  opacity: 0;
}

.close-button {
  text-align: right;
  display: block;
}

.modal .modal-content > div {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .modal .modal-content > div {
    width: 100%;
  }
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  top: 50%;
  left: 50%;
  height: 85%;
  width: 85%;
  transform: translate3d(-50%, -50%, 0);
  background-color: transparent;
  text-align: center;
  color: #5440d8;
}

.modal-inner {
  position: relative;
  height: 85%;
  width: 100%;
}
.modal-inner .modal-content--img {
  position: relative;
  width: 45%;
  height: auto;
  bottom: -40%;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.modal-inner .modal-content--img.active {
  opacity: 1;
}
.modal-inner .modal-content--txt {
  width: 100%;
  height: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
.modal-inner .modal-content--txt .image-container {
  position: relative;
  width: 95%;
  height: 50%;
}
.modal-inner .modal-content--txt .image-container .happy {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 720px;
  transform: translate(0%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.modal-inner .modal-content--txt .image-container .happy.active {
  opacity: 1;
}
.modal-inner .modal-content--txt h1 {
  color: black;
  font-size: 7vw;
}
.modal-inner .modal-content--txt .modal-img svg {
  fill: #5440d8;
  stroke: #33374c;
}
@media screen and (max-width: 1000px) {
  .modal-inner {
    height: 50%;
    left: 0;
  }
  .modal-inner .modal-content--txt {
    top: 0;
    left: 0;
    height: 75%;
    width: 110vw;
  }
  .modal-inner .modal-content--txt .image-container .happy {
    top: 0;
    left: 0;
    transform: translate(-12%, -30%);
    height: 110vw;
    width: auto;
  }
  .modal-inner .modal-content--img {
    position: absolute !important;
    bottom: 10px;
    right: unset;
    left: 28%;
    width: 150px;
  }
}

.modal-img svg {
  fill: #5440d8;
  stroke: #33374c;
}

.close-btn, .dwn-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 20px;
  height: 20px;
  opacity: 0;
  z-index: 10000;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}
.close-btn.active, .dwn-btn.active {
  opacity: 1;
  visibility: visible;
}
.close-btn:hover, .dwn-btn:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 1000px) {
  .close-btn, .dwn-btn {
    top: 10px;
    right: 10px;
  }
}

.dwn-btn {
  right: 25px;
  top: 75px;
}
@media screen and (max-width: 1000px) {
  .dwn-btn {
    right: 50px !important;
    top: 10px !important;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #d7e9e9;
  position: relative;
  height: 100%;
  width: 100%;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.external-link {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  background-color: #ff7866;
  text-align: center;
  width: 100%;
  padding: 2px;
}
.external-link a {
  position: relative;
  color: white;
  opacity: 0.8;
  font-family: "Titillium Web", sans-serif;
  text-decoration: none;
  z-index: 99999;
  transition: all 0.3s ease-in-out;
}
.external-link a:hover {
  opacity: 1;
  text-decoration: underline;
}
.external-link.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1000px) {
  .external-link {
    bottom: 5px;
    font-size: 15px;
  }
  .external-link a {
    color: white;
  }
}

#controlPanel {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  color: white;
  z-index: 9999;
  width: 250px;
  height: 100px;
  max-height: 500px;
  top: 0;
  right: 0;
  padding: 1rem;
}
#controlPanel .btn {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 25px 50px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ba55d3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff00ff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.screenshot {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  object-fit: contain;
  object-position: center center;
}

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