@font-face {
  font-family: Montserrat-Regular;
  src: url("../assets/fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Montserrat-Bold;
  src: url("../assets/fonts/Montserrat-Bold.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media only screen and (max-width: 768px) {
  .privacy-policy {
    hyphens: auto;
  }
}

/* PREVENT STICKY BUTTONS ON TOUCH DEVICES */
@media (pointer: coarse) {
  [data-color-link-primary]:hover,
  [data-color-link-secondary]:hover,
  [data-menu]:hover,
  [data-color-social-primary]:hover,
  [data-color-social-secondary]:hover {
    opacity: 1 !important;
  }

  [data-button]:hover:not([disabled]) {
    opacity: 1 !important;
  }
}

div[data-background] {
  z-index: 0;
}

[data-email] {
  position: relative;
  min-height: 100vh;
  background-color: black;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none !important;
  color: #000;
  font-weight: bold;
}

.custom-btn {
  padding: 0.6rem 2.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  cursor: pointer;
}

.custom-btn:focus {
  outline: none;
  box-shadow: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.privacy-policy {
  margin: 2rem 0;
}

.privacy-policy .heading-style {
  margin: 2rem;
  text-align: center;
}

.privacy-policy h4 {
  font-weight: 600;
}

.external .main-content {
  color: #f2f2f2;
}

.external .main-content h2.heading-style {
  color: #f2f2f2;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.external .main-content p.copyright {
  margin-bottom: 1rem;
}

h2.heading-style {
  color: #c69c6d;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

h2.heading-style span {
  color: #c69c6d;
}

p {
  font-size: 1.25rem;
  line-height: 1.3;
}

p a {
  color: #c69c6d;
  transition: all 0.3s ease-in-out;
}

p a:hover {
  color: #f2f2f2;
}

p.copyright {
  color: #c69c6d;
  width: 100%;
  text-align: center;
  font-size: 1.15rem;
  margin: 1rem 0 0;
  padding-bottom: 1rem;
  font-weight: 400;
}

p.copyright a {
  color: #c69c6d;
  transition: all 0.3s ease-in-out;
}

p.copyright a:hover {
  color: #f2f2f2;
}

/* social icons */

.social__wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 0 20px -5px;
  padding: 0;
}

[data-social] {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px 5px 0;
  transition: transform .3s ease-out, opacity .5s ease-in;
}

[data-social]:hover {
  transform: translateY(-10px);
  opacity: .6;
}

[data-social]>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

a>svg {
    max-width: 50%;
    max-height: 50%;
    width: 50%;
    height: auto;
    object-fit: contain;
    margin: auto;
}

@media screen and (min-width: 1025px) {
  .social__wrap {
    justify-content: flex-start;
  }
}

img.logo {
  margin: 1rem auto;
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
}

.form-group {
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-group input.form-control,
select.form-control {
  background-color: transparent;
  border: 1px solid #c69c6d;
  border-radius: 0;
}

.form-group input.form-control:focus,
select.form-control:focus {
  box-shadow: none;
  outline: none;
}

.form-group input.form-control::placeholder {
  color: #f2f2f2;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  background-color: #c69c6d;
  transform: scale(0.7);
}

.custom-checkbox .custom-control-label::before {
  background-color: transparent !important;
  border-radius: 0;
  border: 1px solid #c69c6d;
}

.custom-checkbox .custom-control-label::before,
.custom-checkbox .custom-control-label::after {
  top: calc(50% - 0.5rem);
}

.custom-checkbox .custom-control-label * {
  vertical-align: middle;
}

button img {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}

.gold {
  color: #c69c6d;
}

.description {
  padding: 2rem 1rem 2rem 15rem;
}

.description .custom-btn {
  margin-top: 1.5rem;
}

.border-gold {
  border: 5px solid #c69c6d;
  min-height: 500px;
  width: 100%;
  margin: 0;
  position: relative;
}

.gold-bg {
  background: #c69c6d;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.image-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 75%;
  margin: 0 -14rem 0 auto;
  z-index: 1;
}

.image-container img {
  width: 100%;
  height: 344px;
  border: 10px solid;
  object-fit: cover;
  max-width: 500px;
}

.image-container .image-double {
  position: relative;
  width: 100%;
  z-index: 3;
  height: 7rem;
  margin-top: 7rem;
}

.image-container .image-double img.image-2 {
  transform: rotate(-8deg);
}

html,
body {
  width: 100%;
  min-height: 100vh;
}

.container-fix {
  max-width: 1560px;
  margin-left: 0;
  display: flex;
  padding: 0;
}

.game-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 29rem;
  color: #f2f2f2;
  font-weight: 700;
  margin-top: 1.5rem;
  font-size: 2rem;
  margin-bottom: 0;
}

body {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

body .main-content {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

body .main-content > div {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
}

body .main-content .game__block {
  display: none;
  align-items: center;
  margin: 0 auto;
}

body .main-content .game__block .timer {
  color: #f2f2f2;
  font-weight: 700;
  margin-top: 1.5rem;
  font-size: 2rem;
  margin-bottom: 0;
}

body .main-content .game__block .game-items {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  flex-wrap: wrap;
  height: 100%;
}

body .main-content .game__block .game-items .item {
  -webkit-box-flex: 0;
  flex: 0 0 23%;
  max-width: 23%;
}

body .main-content .game__block .game-items .item img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

body .main-content .game__quiz {
  display: none;
}

body .main-content .game__quiz a.btn {
  width: 100%;
  text-transform: inherit;
  padding: 0.75rem 2.5rem;
  margin: 0.5rem 0;
}

body .main-content .game__survey {
  display: none;
}

body .main-content .game__survey .custom-checkbox {
  margin: 0;
}

body .main-content .game__survey .custom-checkbox .custom-control-label {
  border: 0;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  border-radius: 0;
  background: #c69c6d;
  color: #f2f2f2;
  width: 100%;
  text-transform: inherit;
  padding: 0.75rem 2.5rem;
  margin: 0.5rem 0;
  text-align: center;
}

body .main-content .game__survey .custom-checkbox .custom-control-label::before {
  border-color: #c69c6d;
  top: 1rem;
}

body .main-content .game__survey .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
}

body .main-content .game__survey__radio {
  display: none;
}

body .main-content .game__survey__radio .custom-radio {
  margin: 0;
}

body .main-content .game__survey__radio .custom-radio .custom-control-label {
  border: 0;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  border-radius: 0;
  background: #c69c6d;
  color: #f2f2f2;
  width: 100%;
  text-transform: inherit;
  padding: 0.75rem 2.5rem;
  margin: 0.5rem 0;
  text-align: center;
}

body .main-content .game__survey__radio .custom-radio .custom-control-label::before {
  background-color: transparent;
  border: 1px solid #c69c6d;
  top: 1rem;
}

body .main-content .game__survey__text {
  display: none;
}

body .main-content .game__survey__text textarea {
  background: transparent;
  border-radius: 0;
  border-color: #c69c6d;
  margin-left: 1.5rem;
  width: 90%;
  color: #f2f2f2;
}

body .main-content .game__survey__text textarea::placeholder {
  color: #f2f2f2;
}

body .main-content .quiz_container .game-controls {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

body .main-content .quiz_container .game-controls .box {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #c69c6d;
}

body .main-content .quiz_container .game-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: 0;
  color: #f2f2f2;
  font-weight: 700;
  margin-top: 1.5rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

body .main-content .great-job {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body .main-content .great-job .image {
  margin: 0 auto;
  display: block;
  text-align: center;
}

body .main-content .great-job .image img {
  width: 75%;
  border: 15px solid #f2f2f2;
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
}

body .main-content .thank-you {
  display: none;
  padding: 0;
}

body .main-content .thank-you .image {
  margin: 0 auto;
  display: block;
  text-align: center;
  z-index: 2;
  position: relative;
}

body .main-content .thank-you .image img {
  width: 75%;
  border: 15px solid #f2f2f2;
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
}

body .main-content .thank-you .thank-you-desc {
  text-align: center;
}

body .main-content .thank-you .thank-you-desc h3 {
  font-weight: 900;
  margin-top: 1.5rem;
}

/*
*   Responsive
*/
@media only screen and (min-width: 1350px) and (max-width: 1650px) {
  .container-fix {
    max-width: 1300px;
    margin-left: 0;
  }

  .container-fix.scratch {
    max-width: 100% !important;
  }

  h2.heading-style {
    font-size: 2.25rem;
    margin: 0.5rem 0;
  }

  .custom-btn,
  p {
    font-size: 1rem !important;
  }

  .description {
    padding: 2rem 0 2rem 13rem;
  }

  .image-container {
    width: 80%;
    margin-right: -11rem;
  }

  .image-container img {
    height: 300px;
  }

  body .main-content .game__survey .game-info,
  body .main-content .game__quiz .game-info {
    margin-left: 16rem;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1349px) {
  .container-fix {
    max-width: 1100px;
    margin-left: 0;
  }

  .container-fix.scratch {
    max-width: 100% !important;
  }

  h2.heading-style {
    font-size: 2.25rem;
    margin: 0.5rem 0;
  }

  .custom-btn,
  p {
    font-size: 1rem !important;
  }

  .description {
    padding: 2rem 0 2rem 10rem;
  }

  .image-container {
    width: 80%;
    margin-right: -8rem;
  }

  .image-container img {
    height: 280px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .col-md-4,
  .col-md-6 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .external .main-content {
    width: 100%;
  }

  .external .main-content h2.heading-style {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }

  .external .main-content h4 {
    font-size: 1.25rem !important;
  }

  .external .main-content p {
    font-size: 0.9rem !important;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  h2.heading-style {
    font-size: 2rem;
    margin: 0 0 0.75rem;
  }

  p {
    font-size: 0.9rem !important;
  }

  p.copyright {
    font-size: 0.8rem !important;
    margin: 0;
    padding: 1rem 0;
  }

  .custom-btn {
    font-size: 0.9rem !important;
  }

  .description {
    text-align: center;
    padding: 5rem 0 1rem;
  }

  .gold-bg {
    padding: 3rem 2rem 2rem;
  }

  .image-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto -5rem;
  }

  .image-container img {
    height: 330px;
    width: 100%;
  }

  .image-container .image-double img.game {
    position: absolute;
    top: -110px;
    width: 100%;
    height: 220px;
  }

  form {
    width: 100%;
  }

  form button {
    margin-top: 0.5rem;
  }

  .container-fix {
    max-width: 100%;
    display: block;
  }

  .border-gold {
    min-height: auto;
  }

  body {
    height: auto;
    min-height: 100vh;
  }

  body .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  body .main-content > div {
    width: 80%;
    padding: 1rem 0;
    margin: auto;
  }

  body .main-content .first-screen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: auto;
  }

  body .main-content .game__block .border-gold.p-4 {
    padding: 0.5rem !important;
  }

  body .main-content .game__block .game-items .item {
    -webkit-box-flex: 0;
    flex: 0 0 47%;
    max-width: 47%;
    margin: 4px;
  }

  body .main-content .game__block .game-items .item img {
    height: 150px;
  }

  body .main-content .quiz_container .game-controls {
    margin-bottom: 2rem;
  }

  body .main-content .quiz_container .game-controls .box {
    width: 60px;
    height: 60px;
  }

  body .main-content .great-job {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: auto;
  }

  body .main-content .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 2rem;
  }

  ul.social {
    text-align: center;
    margin-left: 0;
  }
}

@media only screen and (min-width: 321px) and (max-width: 767px) {
  .external .main-content {
    width: 100%;
  }

  .external .main-content h2.heading-style {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }

  .external .main-content h4 {
    font-size: 1.25rem !important;
  }

  .external .main-content p {
    font-size: 0.9rem !important;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  h2.heading-style {
    font-size: 2rem;
    margin: 0 0 0.75rem;
  }

  p {
    font-size: 0.9rem !important;
  }

  p.copyright {
    font-size: 0.9rem !important;
    margin: 0;
    padding: 1rem;
  }

  .custom-btn {
    font-size: 0.9rem !important;
  }

  .description {
    text-align: center;
    padding: 5rem 0 1rem;
  }

  .gold-bg {
    padding: 3rem 2rem 2rem;
    height: auto;
  }

  .image-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto -5rem;
  }

  .image-container img {
    height: 230px;
    width: 100%;
  }

  .image-container .image-double {
    width: 80%;
    position: relative;
    height: 6rem;
    z-index: 3;
    margin-top: 10rem;
  }

  form {
    width: 100%;
  }

  form button {
    margin-top: 0.5rem;
  }

  .container-fix {
    max-width: 100%;
    display: block;
  }

  .border-gold {
    height: auto;
  }

  body {
    height: auto;
    min-height: 100vh;
  }

  body .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  body .main-content > div {
    width: 90%;
    padding: 1rem 0;
    margin: auto;
  }

  body .main-content .first-screen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: auto;
  }

  body .main-content .game__block .border-gold.p-4 {
    padding: 0.5rem !important;
  }

  body .main-content .game__block .game-items .item {
    -webkit-box-flex: 0;
    flex: 0 0 47%;
    max-width: 47%;
    margin: 4px;
  }

  body .main-content .game__block .game-items .item img {
    height: 150px;
  }

  body .main-content .quiz_container .game-controls {
    margin-bottom: 2rem;
  }

  body .main-content .quiz_container .game-controls .box {
    width: 60px;
    height: 60px;
  }

  body .main-content .great-job {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: auto;
  }

  body .main-content .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 2rem;
  }

  ul.social {
    text-align: center;
    margin-left: 0;
  }
}

@media only screen and (max-width: 320px) {
  .external .main-content {
    width: 100%;
  }

  .external .main-content h2.heading-style {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }

  .external .main-content h4 {
    font-size: 1.25rem !important;
  }

  .external .main-content p {
    font-size: 0.9rem !important;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  h2.heading-style {
    font-size: 2rem;
    margin: 0 0 0.75rem;
  }

  p {
    font-size: 0.9rem !important;
  }

  p.copyright {
    font-size: 0.9rem !important;
    margin: 0;
    padding: 1rem;
  }

  .custom-btn {
    font-size: 0.9rem !important;
  }

  .description {
    text-align: center;
    padding: 5rem 0 1rem;
  }

  .gold-bg {
    padding: 3rem 2rem 2rem;
    height: auto;
  }

  .image-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto -5rem;
  }

  .image-container img {
    height: 230px;
  }

  .image-container .image-double {
    width: 80%;
    position: relative;
    height: 6rem;
    z-index: 3;
    margin-top: 9rem;
  }

  form {
    width: 100%;
  }

  form button {
    margin-top: 0.5rem;
  }

  .container-fix {
    max-width: 100%;
    display: block;
  }

  .border-gold {
    height: auto;
  }

  .game-info {
    margin: 0 !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  body {
    height: auto;
    min-height: 100vh;
  }

  body .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  body .main-content > div {
    width: 90%;
    padding: 1rem 0;
    margin: auto;
  }

  body .main-content .first-screen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  body .main-content .game__block .border-gold.p-4 {
    padding: 0.5rem !important;
  }

  body .main-content .game__block .game-items .item {
    -webkit-box-flex: 0;
    flex: 0 0 47%;
    max-width: 47%;
    margin: 4px;
  }

  body .main-content .game__block .game-items .item img {
    height: 150px;
  }

  body .main-content .quiz_container .game-controls {
    margin-bottom: 2rem;
  }

  body .main-content .quiz_container .game-controls .box {
    width: 60px;
    height: 60px;
  }

  body .main-content .great-job {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: auto;
  }

  body .main-content .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 2rem;
  }

  ul.social {
    text-align: center;
    margin-left: 0;
  }
}

/* MEMORY GAME */

#page-container {
  width: 100%;
  text-align: center;
}

#page-container .container {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

#card-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 1rem 0;
}

.game-item {
  display: flex;
  justify-content: center;
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
  margin: 10px;
}

.game-item img {
  -webkit-user-drag: none;
}

.memory-card {
  font-size: 0;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  width: 12rem;
  height: 12rem;
  box-shadow: 0 8px 5px rgb(0 0 0 / 26%);
}

.header-game {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}

.header-game .time {
  opacity: 0.9;
  border-radius: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: 2rem;
}

.header-game .time-element {
  margin-bottom: 0;
}

.game-icon {
  height: 24px;
  width: 24px;
  margin: 0 10px;
}

.header-game .time span {
  display: block;
  margin-left: 0.5rem;
}

.header-game #timer {
  color: #c69c6d;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .game-item {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }

  .memory-card {
    width: 7rem;
    height: 7rem;
  }

  body #main-content .game .game-content .game__block a.btn {
    margin-bottom: 1rem;
    padding: 0.75rem 2rem;
  }
}

@media only screen and (min-width: 361px) and (max-width: 767px) {
  .header-game {
    margin-top: 1rem;
  }

  .header-game .time {
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 14px;
  }

  .game-item {
    -ms-flex-preferred-size: 36%;
    flex-basis: 36%;
  }

  .memory-card {
    width: 30vw;
    height: 30vw;
  }

  body #main-content .game .game-content .game__block a.btn {
    margin-bottom: 1rem;
    padding: 0.75rem 2rem;
  }
}

@media only screen and (max-width: 360px) {
  .header-game {
    margin-top: 1rem;
  }

  .header-game .time {
    padding: 0 1.5rem;
    font-size: 1.25rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 14px;
  }

  .game-item {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }

  .memory-card {
    width: 30vw;
    height: 30vw;
  }

  body #main-content .game .game-content .game__block a.btn {
    margin-bottom: 1rem;
    padding: 0.75rem 2rem;
  }
}

/* QUIZ */

.quiz_container .container-fix {
  flex-direction: column;
}

.quiz-background {
  top: 0;
  left: 0;
  position: absolute;
  width: 50%;
  height: 100%;
}

.question {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.question h3 {
  margin-bottom: 0;
}

#question {
  margin: 0 0.5rem;
}

.arrow {
  font-size: 30px;
  margin: 0 4px;
}

.mirror {
  transform: scaleX(-1);
}

.answer {
  padding: 0.6rem 2.5rem;
  margin: 4px 0;
  width: 100%;
  max-width: 28rem;
  word-break: break-word;
  white-space: normal;
  display: block;
  text-align: left;
  text-transform: none;
}

.answerSwipe {
  display: flex !important;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.images {
  width: 100%;
  max-width: 500px;
  height: 20rem;
  margin: 1.5rem 0 1.5rem auto;
}

.items {
  position: relative;
  width: 100%;
  height: 100%;
}

img.game {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 10px solid;
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
  object-fit: cover;
}

@media only screen and (min-width: 1024px) and (max-width: 1650px) {
  .answers {
    padding-left: 2rem;
  }
}

@media only screen and (max-width: 1024px) {
  button {
    align-self: center;
  }

  .images {
    margin-right: auto;
  }

  .arrows {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
    flex-direction: column;
  }

  .answers {
    padding-left: 15px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .answer {
    margin: 4px;
    text-align: center;
  }

  .click-question-text {
    text-align: center;
  }

  .click-answers {
    align-items: center;
  }
}

@media only screen and (max-width: 991px) {
  .quiz-background {
    width: 100%;
    height: 30vh;
  }
}

@media only screen and (max-width: 520px) {
  body .main-content .game__block .answer {
    padding: 1rem !important;
    font-size: 3vw !important;
  }

  .images {
    height: 32vh;
  }
}

#privacy_checbox_1 {
  text-align: left !important;
  display: inline-block;
}

#privacy_checbox_2 {
  text-align: left !important;
  display: inline-block;
}

#privacy_checbox_3 {
  text-align: left !important;
  display: inline-block;
}

select {
  appearance: none;
  background: #020100 !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* cta buttons */
.cta-buttons {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 10px auto;
}

.cta {
  display: none;
  min-width: 150px;
  min-height: 45px;
  padding: 5px 10px;
  margin: 10px;
}

button {
  width: fit-content;
}

/* ---------------------------------------------------------------------------- */

/* ============================= SPIN THE WHEEL =============================== */

/* ---------------------------------------------------------------------------- */
.po-none {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.spin-the-wheel {
  width: 100%;
  height: auto;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-section,
.wheel-section {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
}

.wheel-section {
  margin-top: 30px;
}

#stw-bg {
  width: 100%;
  height: 150px;
}

.legend {
  width: fit-content;
  display: flex;
  flex-direction: column;
  max-width: 90%;
  margin: 0 auto 20px;
}

.legend-element {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 20px;
}

.legend-element span {
  line-height: 1.4;
  min-height: 1rem;
  margin: 0 20px;
}

.sector {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  flex-shrink: 0;
}

.sector > img {
  max-width: 100%;
  width: 50px;
  height: 50px;
}

.spin-the-wheel .button-container {
  margin: 20px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.spin-the-wheel button {
  padding: 10px 20px;
  max-width: 300px;
}

.ticker-layer,
.center-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.wheel-ticker {
  width: 44px;
  height: 43px;
  object-fit: contain;
  margin: auto -5px auto auto;
}

.wheel-center {
  width: 50px;
  height: 50px;
  margin: auto;
  border-radius: 50%;
}

.canvas-container {
  width: 240px;
  height: 240px;
  border: 10px solid #c69c6d;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  width: 210px;
  height: 210px;
  transform: rotate(90deg);
  border-radius: 50%;
  cursor: pointer;
}

@media screen and (min-width: 360px) {
  .canvas-container {
    width: 300px;
    height: 300px;
  }

  canvas {
    width: 270px;
    height: 270px;
  }

  #stw-bg {
    height: 180px;
  }
}

@media screen and (min-width: 410px) {
  .canvas-container {
    width: 350px;
    height: 350px;
  }

  canvas {
    width: 320px;
    height: 320px;
  }

  #stw-bg {
    height: 205px;
  }

  .spin-the-wheel .button-container {
    margin: 30px 0;
  }
}

@media screen and (min-width: 600px) {
  .legend {
    flex-flow: row wrap;
  }

  .legend-element {
    flex: 0 0 50%;
    justify-content: center;
  }
}

@media screen and (min-width: 1024px) {
  #stw-bg {
    height: 100%;
    width: 205px;
  }

  .spin-the-wheel {
    flex-flow: row wrap;
  }

  .text-section,
  .wheel-section {
    flex: 0 0 50%;
  }

  .wheel-section {
    order: 1;
  }

  .text-section {
    order: 2;
    align-items: flex-start;
  }

  .spin-the-wheel .button-container {
    order: 3;
    width: 35%;
    display: flex;
    justify-content: flex-end;
    margin: -5% 0 20px;
  }

  .legend {
    flex-direction: column;
    margin: 20px 0 40px 20%;
  }

  .legend-element {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1025px) {
  #stw-bg {
    width: 325px;
  }

  .spin-the-wheel .button-container {
    width: 32%;
    margin: -10% 0 0;
  }

  .legend {
    margin-bottom: 80px;
  }

  .canvas-container {
    width: 400px;
    height: 400px;
  }

  canvas {
    width: 370px;
    height: 370px;
  }
}

@media screen and (min-width: 1350px) {
  #stw-bg {
    width: 540px;
  }

  .wheel-section {
    align-items: flex-end;
  }

  .spin-the-wheel .button-container {
    width: 49.5%;
  }

  .legend {
    margin-left: 40%;
    margin-bottom: 100px;
  }

  #scratch-card .legend {
    margin-left: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1651px) {
  #stw-bg {
    width: 670px;
  }

  .spin-the-wheel .button-container {
    width: 48%;
  }
}

/* ------------------------------------ SURVEY --------------------------------- */

#survey {
  display: flex;
  flex-direction: column;
}

#survey .items {
  display: flex;
  align-items: flex-start;
  height: auto;
}

.survey__image {
  border: 10px solid;
  max-height: 380px;
  height: auto;
}

.survey__question-text {
  text-align: center;
}

/* ----- kill outline on focus ------ */

textarea:focus-visible {
  outline: none;
}

.single-answer ::before,
.multiple-answer ::before {
  outline: none;
  box-shadow: none !important;
}

/* ----- Question counter ------ */

h3 > span,
h3 > span > span {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
}

/* ----- NAVIGATION ------ */

.survey__navigation {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  margin-left: -10px;
}

.survey__navigation #previous-btn {
  order: 5;
}

@media screen and (min-width: 600px) {
  .survey__navigation {
    flex-direction: row;
  }

  .survey__navigation #previous-btn {
    order: -1;
  }
}

.survey__navigation > button {
  padding: 10px 20px;
  min-width: 120px;
  width: fit-content;
  cursor: pointer;
  margin: 10px;
}

/* --- ANSWERS --- */
span[data-answer-text] {
  font-size: 18px;
}

/* ---- DISABLE BOOTSTRAP GREY TEXT WHEN ANSWER IS DISABLED ---- */

.survey__text-section .custom-control-input:disabled ~ .custom-control-label {
  color: unset;
}

.single-answer .custom-checkbox .custom-control-label::before,
.single-answer .custom-checkbox .custom-control-label::after {
  border-radius: 50% !important;
}

.survey__answers-container {
  display: flex;
  flex-direction: column;
  width: fit-content;
  text-align: left;
}

.survey__answers-container > div {
  margin: 5px 0;
}

.single-answer,
.multiple-answer {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: auto auto auto 0;
}

/* free text */

.text-answer {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid white;
}

textarea {
  width: 100%;
  min-height: 300px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  outline-color: transparent !important;
  outline-style: none !important;
}

/* ==================== SCALE ELEMENT ===================== */

.scale-container {
  width: 100%;
}

.scale {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: fit-content;
  margin: auto;
}

.scale__line {
  height: calc(100% - 2rem);
  margin: auto 0;
  background: #000;
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
}

.scale__sector {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  z-index: 1;
  margin: 10px;
}

.scale__sector__button {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #000;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.scale__sector__text {
  line-height: 1.2;
  cursor: pointer;
  margin: 0 0 0 10px;
  text-align: start;
}

.scale__marker::after {
  content: "";
  border: solid 3px;
  background-color: transparent;
  transition: all 0.1s ease-out;
  border-radius: 50%;
  position: absolute;
  width: 31px;
  height: 31px;
  top: -6px;
  left: -6px;
}

@media screen and (min-width: 1120px) {
  .scale-container {
    width: 100%;
    margin: 30px auto;
    min-width: 500px;
    max-width: 1000px;
  }

  .scale {
    width: 100%;
    min-height: auto;
    flex-direction: row;
    margin-top: 15px;
  }

  .scale__line {
    top: 0;
    width: 84%;
    height: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .scale__sector {
    height: auto;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .scale__sector__button {
    margin: -8px 0 0;
  }

  .scale__sector__text {
    width: 100%;
    text-overflow: ellipsis;
    word-wrap: break-word;
    margin: 10px 0;
    padding: 0 5px;
    text-align: center;
    line-height: 1em;
  }

  .survey__navigation {
    justify-content: center;
    margin-left: 0;
  }

  .single-answer,
  .multiple-answer {
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
  }

  .survey__answers-container:last-child > div {
    padding-left: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .survey__navigation > button {
    width: 220px;
  }
}

@media screen and (max-width: 991px) {
  span[data-scale-line] {
    width: 5px !important;
  }

  .scale-container > .scale > .scale__sector {
    width: 100% !important;
  }

  .survey__text-section {
    width: 100% !important;
    text-align: center;
  }

  #survey .border-gold {
    min-height: auto;
  }
}

@media screen and (max-width: 1119px) {
  span[data-scale-line] {
    width: 5px !important;
  }

  .scale-container > .scale > .scale__sector {
    width: 100% !important;
  }

  .scale {
    min-height: 170px;
  }

  .scale_last_visible {
    align-items: flex-end;
  }

  .survey__navigation {
    justify-content: center;
    margin-left: 0;
  }

  .single-answer,
  .multiple-answer {
    margin: auto;
  }
}

/* ================================== SCRATCH CARD ============================= */
.quiz__background__mob {
  display: none;
}

.quiz_container.scratch {
  margin-bottom: 5%;
}

#scratch-card h1 {
  text-align: center;
  margin-bottom: 20px;
  font-family: Montserrat-Regular, sans-serif;
}

.scratch__card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.scratch__card__content .text__wrap {
  flex: 0 0 50%;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* -------------- LEGEND -------------- */
#scratch-card .legend {
  width: fit-content;
  max-width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  justify-items: start;
  position: relative;
}

#scratch-card .legend-element {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 50px;
}

#scratch-card .legend-element > span {
  display: flex;
  align-items: center;
}

#scratch-card .sector {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

#scratch-card .sector > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------- CARD CONTAINER -------------- */
.scratch-card__container {
  width: 90%;
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-template-rows: repeat(3, 120px);
  justify-content: center;
  gap: 10px;
  padding: 30px;
  margin: 0 auto;
}

.scratch-card__container > .card {
  padding: 0 !important;
  overflow: visible;
  position: relative;
  cursor: pointer;
  user-select: none;
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 0;
  border: 3px solid;
}

.card-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  aspect-ratio: 1 / 1;
  z-index: 10;
  border-radius: inherit;
  transform: rotate(0deg) !important;
}

.prize-cover {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 9;
  border-radius: inherit;
}

#scratch-card .prize {
  position: relative;
  z-index: 8;
}

.scratch-card__container img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: inherit;
  aspect-ratio: 1 / 1;
}

/* -------------- ANIMATIONS -------------- */
.card-outline {
  box-shadow: 0 0 4px 5px rgb(0 0 0 / 40%);
}

.card-match {
  box-shadow: 0 0 8px 8px rgb(0 0 0 / 50%);
  animation: blink 0.5s infinite;
}

@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgb(0 0 0 / 40%);
  }

  100% {
    box-shadow: 0 0 8px 8px rgb(0 0 0 / 40%);
  }
}

@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgb(0 0 0 / 40%);
  }

  100% {
    box-shadow: 0 0 8px 8px rgb(0 0 0 / 40%);
  }
}

@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgb(0 0 0 / 40%);
  }

  100% {
    box-shadow: 0 0 8px 8px rgb(0 0 0 / 40%);
  }
}

@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgb(0 0 0 / 40%);
  }

  100% {
    box-shadow: 0 0 8px 8px rgb(0 0 0 / 40%);
  }
}

/* --------------- RETRY MODAL --------------- */
.retry-modal {
  width: 90%;
  max-width: 400px;
  height: fit-content;
  min-height: 300px;
  position: absolute;
  inset: 200px 0 0;
  margin: 0 auto;
  z-index: 10;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 30%);
}

.retry-modal__body {
  width: 100%;
  min-height: 300px;
  padding: 70px 10px 40px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.retry-modal__body > h1 {
  margin-bottom: 40px;
}

.retry-modal__body > button {
  min-width: 200px;
  padding: 10px 20px;
  margin: 0;
}

/* ====================== MEDIA QUERY ================== */
@media screen and (max-width: 1300px) {
  .scratch__card__content .text__wrap {
    flex: 0 0 45%;
  }

  #scratch-card .quiz-background {
    width: 55%;
  }
}

@media screen and (max-width: 1023px) {
  #scratch-card .quiz-background {
    display: none;
  }

  .scratch-card__container {
    position: relative;
    max-width: 100%;
    width: 100%;
  }

  .quiz__background__mob {
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .scratch__card__content {
    flex-direction: column;
  }

  .text-container h1 {
    text-align: center;
  }

  .scratch__card__content .text__wrap {
    flex: initial;
  }

  .spin-the-wheel .button-container {
    width: 100% !important;
  }

  .spin-the-wheel button {
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 571px) {
  .scratch-card__container img {
    aspect-ratio: initial;
    padding: 0;
  }

  .scratch-card__container {
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  #scratch-card .text__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card-canvas {
    padding: 0;
  }

  #scratch-card .legend {
    margin: 20px;
  }

  #scratch-card .quiz-background {
    height: 53vh;
  }

  .scratch-card__container > .card {
    width: 130px;
    box-sizing: border-box !important;
    padding: 0 !important;
  }
}

@media screen and (max-width: 491px) {
  .scratch-card__container > .card {
    width: 100px;
  }
}

@media screen and (max-width: 391px) {
  .scratch-card__container > .card {
    width: 80px;
  }
}

@media screen and (max-width: 315px) {
  .scratch-card__container > .card {
    width: 60px;
  }

  #scratch-card .legend-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  #scratch-card .sector {
    margin-right: 0;
  }
}

/*  ===== LIMIT REACHED PAGE ===== */
#limit-reached {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#limit-reached .description {
  padding: 0;
}

#limit-reached > div {
  flex: 0 0 100%;
}

.limit-container {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: auto;
  padding: 20px 10px;
  text-align: center;
}

.limit-container h2 {
  margin: 0;
}

@media screen and (min-width: 410px) {
  .limit-container {
    padding: 30px 20px;
  }
}

/* mozzila image fix */

@supports (-moz-appearance: button) and (contain: paint) {
  .card-canvas {
    object-fit: cover;
  }
}

@media screen and (min-width: 520px) and (max-width: 1024px) {
  .scratch-card__container > .card {
    width: 120px;
    height: 120px;
  }

  .scratch-card__container {
    max-width: 100%;
  }
}

/* GTP fix */
.gtp-tile-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
}

/* ================================ RTL SUPPORT ================================ */
[dir="rtl"] .custom-control.custom-checkbox {
    text-align: right;
    padding: 0 2.5rem 0 0 !important;
}

[dir="rtl"] .custom-control-label {
    text-align: right;
}

[dir="rtl"] .custom-control-label::before,
[dir="rtl"] .custom-control-label::after {
    right: -1.5rem;
}

[dir="rtl"] [input-group] label {
  width: 100%;
  text-align: right;
  direction: rtl;
}

[dir="rtl"] #submit-button {
  margin-left: 15px;
  margin-right: 15px;
}

[dir="rtl"] #terms,
[dir="rtl"] #privacy,
[dir="rtl"] .legend {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .border-gold,
[dir="rtl"] .scratch__card__content {
  direction: ltr;
}

[dir="rtl"] .description,
[dir="rtl"] .survey__answers,
[dir="rtl"] button,
[dir="rtl"] button>span {
  direction: rtl;
}

[dir="rtl"] #next-btn,
[dir="rtl"] #submit-btn {
  order: -2;
}

@media only screen and (max-width: 1119px) {
  [dir="rtl"] .scale__line {
    left: unset;
    right: 17px;
  }

  [dir="rtl"] .scale__sector__text {
    margin-left: unset;
    margin-right: 10px;
    text-align: right;
    direction: rtl;
  }
}

@media screen and (min-width: 1025px) {
  [dir="rtl"] .border-gold {
      text-align: right;
  }

  [dir="rtl"] .click-answers {
    align-items: flex-end;
  }

  [dir="rtl"] .click-answers>a {
    text-align: right;
  }
}

@media screen and (min-width: 1120px) {
  [dir="rtl"] .scale__line {
    width: 79%;
  }
}