html, body {
  height: 100%;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}
html body {
  min-height: 100vh;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  background-position: top center;
  background-attachment: fixed;
  background-color: #410c00;
}
html .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
html .d-flex {
  display: flex;
}
html .justify-content-center {
  justify-content: center;
}

.container {
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .container {
    width: 100%;
  }
}
.container .background {
  background-image: url("./images/bg_cover.jpg?v1.1");
  background-image: -webkit-image-set(url("./images/bg_cover.webp?v1.1") 1x);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  position: relative;
  width: 480px;
  overflow-x: hidden;
}
@media screen and (min-height: 1200px) {
  .container .background {
    overflow-y: hidden;
  }
}
@media screen and (max-width: 575px) {
  .container .background {
    background-image: url("./images/bg_cover_m.jpg?v1.1");
    background-image: -webkit-image-set(url("./images/bg_cover_m.webp?v1.1") 1x);
  }
}
@media screen and (max-width: 575px) {
  .container .background {
    background-size: cover;
    width: 100%;
  }
}
.container .background::before {
  content: " ";
  position: absolute;
  background-image: url("./images/bg_top.png?v1.1");
  background-image: -webkit-image-set(url("./images/bg_top.webp?v1.1") 1x);
  background-size: contain;
  background-position: bottom;
  background-repeat: repeat-y;
  width: 100%;
  height: 10%;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
}
.container .background::after {
  content: " ";
  position: absolute;
  background-image: url("./images/bg_bottom.png?v1.1");
  background-image: -webkit-image-set(url("./images/bg_bottom.webp?v1.1") 1x);
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 20%;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: none;
}
.container .background .platform {
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  align-items: center;
}
@media screen and (min-height: 1200px) {
  .container .background .platform {
    transform: scale(1.4);
  }
}
.container .background .platform > div.col-12 {
  position: relative;
}
.container .background .platform .logo {
  text-align: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 575px) and (max-width: 390px) {
  .container .background .platform .logo {
    padding-top: 35px;
  }
}
@media screen and (max-width: 575px) {
  .container .background .platform .main-title img {
    width: 350px;
  }
}
@media screen and (max-width: 575px) and (max-width: 390px) {
  .container .background .platform .main-title img {
    width: 300px;
  }
}
.container .background .platform .ambassador {
  position: relative;
}
.container .background .platform .ambassador::before {
  content: " ";
  position: absolute;
  background-image: url("./images/img_gold_egg.jpg?v1.1");
  background-image: -webkit-image-set(url("./images/img_gold_egg.webp?v1.1") 1x);
  width: 420px;
  height: 420px;
  left: 5%;
  right: 0;
  background-position: center;
  background-size: contain;
  top: -30%;
  animation: zoomInOut 2s ease-in-out infinite;
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(5px 5px 10px rgba(255, 255, 0, 0.4));
  }
  100% {
    transform: scale(1);
  }
}
.container .background .platform .ambassador img {
  position: relative;
  bottom: -45px;
}
@media screen and (max-width: 575px) {
  .container .background .platform .ambassador img {
    bottom: -80px;
  }
}
.container .background .platform .footer {
  max-width: 480px;
  position: fixed;
  bottom: -5px;
}
@media screen and (max-width: 575px) {
  .container .background .platform .footer {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .container .background .platform .footer img {
    width: 100%;
  }
}
.container .background .cta .btn {
  outline: none;
  background-color: transparent;
  border: none;
  margin: 0 auto;
}
.container .background .cta:disabled {
  cursor: not-allowed;
}
.container .background .cta.open .btn-open {
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  animation: rotateShake 1s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.container .background .cta.open .btn-open:hover {
  transform: scale(1);
  filter: grayscale(1);
  animation: none;
}
.container .background .cta.open .btn-open:disabled {
  filter: grayscale(1);
  opacity: 0.65;
}
@keyframes rotateShake {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0);
  }
}
.container .background .cta.claim {
  opacity: 0;
  top: 65%;
  position: absolute;
  left: 15%;
  right: 15%;
  z-index: 2;
  transition: all 0.6s ease;
  animation: rotateShake 1s ease-in-out infinite;
}
.container .background .cta.claim.show {
  transform: scale(1);
  opacity: 1;
  animation: bounce 0.6s ease;
}
.container .background .modal.gold-egg-modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  z-index: 200;
  background-color: rgba(65, 12, 0, 0.9);
  display: none;
  align-items: center;
}
.container .background .modal.gold-egg-modal .egg {
  position: absolute;
  width: 320px;
  height: 380px;
  left: calc(50% - 160px);
  top: 30%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.container .background .modal.gold-egg-modal .egg.shake {
  animation: shake 0.6s ease-in-out;
}
.container .background .modal.gold-egg-modal .egg .egg-top,
.container .background .modal.gold-egg-modal .egg .egg-bottom {
  position: absolute;
  width: 100%;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.container .background .modal.gold-egg-modal .egg .egg-top {
  height: 320px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./images/img_egg_top.jpg?v1.1");
  background-image: -webkit-image-set(url("./images/img_egg_top.webp?v1.1") 1x);
}
.container .background .modal.gold-egg-modal .egg .egg-bottom {
  height: 320px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./images/img_egg_bottom.jpg?v1.1");
  background-image: -webkit-image-set(url("./images/img_egg_bottom.webp?v1.1") 1x);
}
.container .background .modal.gold-egg-modal .egg.split .egg-top {
  transform: translateY(-120px) rotate(-15deg);
  opacity: 0.8;
}
.container .background .modal.gold-egg-modal .egg.split .egg-bottom {
  transform: translateY(120px) rotate(15deg);
  opacity: 0.8;
}
@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(-5deg);
  }
}
.container .background .modal.gold-egg-modal .prize {
  position: absolute;
  left: calc(50% - 160px);
  top: 40%;
  transform: scale(0);
  font-size: 64px;
  opacity: 0;
  transition: all 0.6s ease;
  text-align: center;
  z-index: 10;
}
.container .background .modal.gold-egg-modal .prize.show {
  transform: scale(1);
  opacity: 1;
  animation: bounce 0.6s ease;
}
@keyframes bounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.container .background .modal.gold-egg-modal .fireworks {
  position: relative;
  position: absolute;
  z-index: 2;
  top: 30%;
  left: calc(50% - 200px);
}
.container .background .modal.bounce-in {
  animation: bounceIn 0.7s ease forwards;
  display: flex;
}/*# sourceMappingURL=style.css.map */