/* Base style
   ========================================================================== */

/* Fonts */
@font-face {
  font-family: "azonixregular";
  src: url("fonts/azonix-webfont.woff2") format("woff2"),
    url("fonts/azonix-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #420539;
}

/*-- Percent Loader -- */
#mainLoader {
  position: absolute;
  z-index: 5;
  display: none;
  font-size: 35px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  width: 100%;
  font-family: "azonixregular";
}

/*-- Content Wrapper -- */
#mainHolder {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*-- Browser Not Support -- */
#notSupportHolder {
  width: 90%;
  margin: 5% auto;
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-family: "azonixregular";
  display: none;
}

/*-- Rotate Animation -- */
@-moz-keyframes spin {
  50% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes spin {
  50% {
    -webkit-transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes spin {
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/*-- Canvas Wrapper -- */
#canvasHolder {
  display: none;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: auto;
  position: relative;
}
canvas {
  position: fixed;
}

/*-- Form Wrapper -- */
.clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  clear: both;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-1vmin);
  }
  60% {
    transform: translateY(-0.5vmin);
  }
}

/*-- Center Logo Overlay for GIF Support -- */
#centerLogoContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  display: none;
}

#centerLogoContainer img {
  object-fit: contain;
}

@media (375px < width < 768px) {
  #centerLogoContainer img {
    width: calc(var(--img-width) / 2);
    height: calc(var(--img-height) / 2);
    max-width: none;
    max-height: none;
  }
}

