/*
Template Name: Event Mini Game
*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/

:root {
  --link-hover-color: #ed697c;
  --Primary-Active: #8f0e35;
  --red-main-color: #4d0707;
  --dark-color: #000000;
  --body-font-family: "Cormorant Infant";
  --title-font-family: "Cormorant Infanta";
  --bold-title-font-family: "Cormorant Infanta";

  --h1-font-size: 80px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

@font-face {
  font-family: 'UTM-Neutra';
  src: url('../fonts/UTM-Neutra.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Bovine MVB';
  src: url('../fonts/fonnts.com-Bovine_MVB_Regular.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SVN-Neutraface 2';
  src: url('../fonts/SVN-Neutraface 2.otf') format('truetype');
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-weight: 400;
  color: var(--Primary-Active, #8F0E35);
  font-family: "Bovine MVB";
  text-transform: uppercase;
  letter-spacing: 5.6px;
  line-height: 1.2;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
b,
strong {
  font-family: var(--bold-title-font-family);
  font-weight: var(--font-weight-bold);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
  scroll-behavior: smooth;
  height: 100%;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* css footer */
.show { position: fixed}
footer {
  height: 50px;
  width: 100%;
  background-color: var(--Primary-Active);
  z-index: 10;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1388px;
  padding: 0 30px;
  position: relative;
}
.banner__language-container {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  display: none;
  z-index: 100;
}
.icon-setting {
  cursor: pointer;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 7px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
}
footer h4 {
  color: #fff;
  font-family: "UTM-Neutra";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.select2-container {
  width: 120px !important;
  font-family: "Cormorant Infant";
  font-size: 12px;
  font-weight: 800;
}
.select2-container--default .select2-selection--single {
  border: none !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 8px !important;
  padding-right: 8px !important;
  border-radius: 4px;
  border: 0.5px solid #8F0E35;
  background: #FFF5E7;
}
.select2-container--default .select2-selection--single .select2-selection__rendered span {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.select2-container .select2-selection--single {
  height: auto !important;
  width: 120px !important;
}
.select2-results__option--selectable span{
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.flag-icon {
  width: 24px;
  height: 18px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
}
.select2-selection__arrow {
  display: none !important;
}
.skiptranslate {
  display: none;
}

.wrapper {
  background-color: #fff;
  background-image: url("../images/BG_home.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.overlay-gif {
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  z-index: 9;
  overflow: hidden;
}

.overlay-gif--show {
  display: flex;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.overlay-gif__gif img {
  width: 250px;
  height: 324px;
  flex-shrink: 0;
}
/* CSS Home Page */
.logo__box {
  padding: 0 60px;
}


.start-btn {
  padding: 0.375rem 0.75rem;
  width: 276px;
  height: auto;
  position: relative;
  top: 0;
  cursor: pointer;
  text-decoration: none !important;
  outline: none !important;
  border-radius: 10px;
  border: 1px solid var(--Primary-Active);
  box-shadow: 0 10px 0 var(--red-main-color);
  background: #fff;
  color: #4D0707;
  text-align: center;
  font-family: "SVN-Neutraface 2";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease-in-out;
}

.start-btn:hover {
  border: 1px solid var(--Primary-Active);
  background: #FFDBDB !important;
  color: #4D0707;
}

.start-btn:active {
  top: 2px;
  color: #4D0707 !important;
  border-radius: 10px !important;
  border: 2px solid #4d0707 !important;
  background: #ffdbdb !important;
  box-shadow: 0 0 0 var(--red-main-color);
}


/* css screen true or false */
.qa-card__container {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
  max-width: 1400px;
}

.qa-content-question {
  color: #1F1F1F;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.qa-card__note-text {
  color: #1f1f1f;
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  line-height: 42px;

  a {
    text-decoration: underline;
  }
}
.qa-btn {
  font-family: "SVN-Neutraface 2";
  font-size: 25px;
  font-weight: 400;
  min-width: 240px;
  width: auto;
  display: flex;
  gap: 30px;
  padding: 9px 21px;
  border-radius: 10px;
  background: #FFFFFF;
  flex-shrink: 0;
  align-items: center;
}
.qa-btn-true {
  color: #0f1c1b;
  box-shadow: 0 5px 0 #0f1c1b;
  border: 1px solid #0F1C1B
}

.qa-btn-true:hover {
  background: #E2FBE5;
}

.qa-btn-true:active {
  box-shadow: 0 0 0;
  border: 2px solid #0F1C1B
}
.restart-btn {
  color: #235723;
  box-shadow: 0 5px 0 #235723;
  border: 1px solid #235723;
}
.restart-btn:hover {
  background: #E2FBE5;
}

.restart-btn:active {
  box-shadow: 0 0 0;
  border: 2px solid #235723
}

.qa-btn-false {
  color: #850800;
  box-shadow: 0 5px 0 #850800;
  border: 1px solid #850800
}

.qa-btn-false:hover {
  background: #FFE0D6;
}

.qa-btn-false:active {
  box-shadow: 0 0 0;
  border: 2px solid #850800
}

.home-btn {
  color: #8F0E35;
  box-shadow: 0 5px 0 #8F0E35;
  border: 1px solid #8F0E35;
}
.home-btn:hover {
  background: #FFDBDB;
}
.home-btn:active {
  box-shadow: 0 0 0;
  border: 2px solid #8F0E35
}

.qa-card__title.cute-panda {
  color: #215521;
}

.qa-card__title.dream-car {
  color: #9a1616;
}

.qa-card__title.football {
  color: #137ab9;
}

.qa-card__title.luxury-lifestyle {
  color: #6f5240;
}

.qa-card__title.healthy-body {
  color: #ff6506;
}

.qa-card__description.true {
  color: #2f7c5b;
}

.qa-card__description.false {
  color: #d30d00;
}

/* Reponsive in tablet */
@media (max-width: 980px) {
  .start-btn {
    font-size: 24px;

  }
  .qa-btn {
    font-size: 22px;

  }
  /* create slider when tablet */
  .qa-content-question {
    font-size: 24px;

  }
  .qa-card__note-text {
    font-size: 22px;

  }
}

/* Reponsive in mobile */
@media (max-width: 478px) {
  .select_team__list-card {
    margin-bottom: 20px;
  }
  .start-btn {
    font-size: 20px;
  }
  .qa-content-question {
    font-size: 20px;

  }
  .qa-card__note-text {
    font-size: 18px;

  }
  .qa-btn {
    font-size:18px;

  }
}