@font-face {
  font-family: "Kanit-SemiBold";
  src: url("./../assets/fonts/Kanit-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Kanit-Light";
  src: url("./../assets/fonts/Kanit-Light.ttf") format("truetype");
}
html,
body {
  margin: 0;
  font-family: "Kanit-Light";
  font-family: "Kanit-SemiBold";
  background-color: #333;
  position: fixed;
  touch-action: none;
  overflow: hidden;
}

.permanentlyDisabled {
  transition: opacity 0s;
  opacity: 0;
  pointer-events: none;
  display: none;
}

.disabled {
  pointer-events: none;
  display: none !important;
}

.fontHolder {
  width: 0px;
  height: 0px;
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  font-family: "Kanit-Light";
}

.ui {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  pointer-events: none;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ui .logo {
  background-image: url(./../assets/images/logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  height: 86px;
  position: absolute;
  top: 25px;
  left: 10px;
}
.ui .soundToggle {
  background-image: url(./../assets/images/icons/sound_off.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  pointer-events: all;
}
.ui .soundToggle.on {
  background-image: url(./../assets/images/icons/sound_on.svg);
}
.ui .scroll {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 20px;
  font-size: 16px;
  pointer-events: none;
  transition: all 1s;
}
.ui .scroll .icon {
  background-image: url(./../assets/images/icons/scroll.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  margin-top: 20px;
}
.ui .scroll.hidden {
  opacity: 0;
}
.ui .view {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ui .trivia {
  width: 1100px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.ui .trivia .blend {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0);
}
.ui .trivia .left {
  width: 515px;
}
.ui .trivia .left .close {
  background-color: rgba(0, 0, 0, 0.9);
  border: solid #965dd3 7px;
  color: #fff;
  font-size: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.5s;
  top: -23px;
  left: -23px;
}
.ui .trivia .left .close:hover {
  border: solid #1ce682 7px;
}
.ui .trivia .left .baseBlock, .ui .trivia .left .answer, .ui .trivia .left .question {
  background-color: rgba(0, 0, 0, 0.7);
  border: solid #965dd3 7px;
  border-radius: 20px;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.ui .trivia .left .baseBlock p, .ui .trivia .left .answer p, .ui .trivia .left .question p {
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 24px;
}
.ui .trivia .left .question {
  width: 100%;
  height: 140px;
}
.ui .trivia .left .answer {
  width: 100%;
  height: 60px;
  margin-top: 20px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.5s;
}
.ui .trivia .left .answer .icon {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 50px;
  height: 50px;
  right: 20px;
  position: absolute;
}
.ui .trivia .left .answer:hover {
  border: solid #1ce682 7px;
}
.ui .trivia .left .answer.correct {
  border: solid #fff 7px;
  background-color: #1ce682;
}
.ui .trivia .left .answer.correct .icon {
  background-image: url(./../assets/images/check.png);
}
.ui .trivia .left .answer.correctGhost {
  border: solid #fff 7px;
  background-color: rgba(28, 230, 130, 0.5);
}
.ui .trivia .left .answer.correctGhost .icon {
  opacity: 0.5;
  background-image: url(./../assets/images/check.png);
}
.ui .trivia .left .answer.incorrect {
  border: solid #f7131c 7px;
}
.ui .trivia .left .answer.incorrect .icon {
  background-image: url(./../assets/images/x.png);
}
.ui .trivia .left .answer.inactive {
  border: solid #b9b9b9 7px;
  pointer-events: none;
}
.ui .trivia .left .answer.inactive .icon {
  background-image: "";
}
.ui .trivia .right {
  width: 540px;
}
.ui .trivia .right .image {
  background-color: rgba(0, 0, 0, 0.7);
  border: solid #1ce682 7px;
  border-radius: 20px;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: 420px;
  background-position: center center;
  background-size: cover;
}
.ui .trivia .right .image .counter {
  background-color: #1ce682;
  width: 160px;
  height: 55px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 20px;
  font-size: 21px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7;
  right: -7px;
}
.ui .trivia .right .image .slogan {
  background-color: #1ce682;
  width: 230px;
  height: 40px;
  border-radius: 7px;
  font-size: 38px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -22px;
  right: 20px;
}
.ui .trivia .right .next {
  background-image: url(./../assets/images/next.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 110px;
  height: 32px;
  position: absolute;
  right: 0;
  bottom: -80px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.5s;
}
.ui .trivia .right .next:hover {
  opacity: 0.5;
}
.ui .result {
  background-image: url(./../assets/images/result.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 635px;
  height: 665px;
  position: relative;
}
.ui .result .card {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 35%;
  height: 40%;
  top: 0%;
  left: 0%;
}
.ui .result .logo {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 65%;
  height: 35%;
  top: 4%;
  left: 30%;
}
.ui .result .texts {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  width: 80%;
  height: 20%;
  position: absolute;
  top: 45%;
  left: 10%;
  text-align: center;
}
.ui .result .texts .title {
  font-size: 44px;
  line-height: 35px;
}
.ui .result .texts .text {
  font-family: "Kanit-Light";
  font-size: 30px;
  line-height: 30px;
}
.ui .result .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  position: absolute;
  top: 68%;
  left: 10%;
  text-align: center;
}
.ui .result .buttons .retry {
  width: 285px;
  height: 48px;
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid #1ee682 7px;
  font-size: 30px;
  pointer-events: all;
  cursor: pointer;
  transition: border 0.5s, background-color 0.5s;
  color: #242323;
}
.ui .result .buttons .retry:hover {
  background-color: #1ee682;
  border: solid #fff 7px;
}
.ui .result .buttons .share {
  margin-top: 10px;
  width: 285px;
  height: 48px;
  text-align: center;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  pointer-events: all;
  cursor: pointer;
  transition: border 0.5s, background-color 0.5s;
  background-color: #1ee682;
  border: solid #fff 7px;
  color: #242323;
}
.ui .result .buttons .share:hover {
  border: solid #1ee682 7px;
  background-color: #fff;
}
.ui .loading {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(25, 25, 25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.ui .loading .iconLogo {
  background-image: url(./../assets/images/logo_loading.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  height: 100px;
}
.ui .loading .loadingAnimation {
  background-image: url(./../assets/images/loading.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 150px;
  height: 50px;
  margin-top: -35px;
}

.mobile .scroll .text {
  font-size: 28px;
}
.mobile .trivia {
  flex-direction: column-reverse;
  width: 460px;
  height: 850px;
}
.mobile .trivia .left {
  width: 460px;
  margin-top: 20px;
  position: relative;
}
.mobile .trivia .right {
  width: 460px;
}
.mobile .trivia .right .image {
  height: 360px;
}
.mobile .result {
  width: 480px;
  height: 503px;
}
.mobile .result .texts .title {
  font-size: 30px;
}
.mobile .result .texts .text {
  font-size: 22px;
  line-height: 20px;
}
.mobile .result .buttons .retry {
  width: 260px;
  height: 40px;
  font-size: 24px;
}
.mobile .result .buttons .share {
  margin-top: 5px;
  width: 260px;
  height: 40px;
  font-size: 24px;
}/*# sourceMappingURL=style.css.map */