@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;
  }
}

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

.logo-container {
  background-color: #ff7e21;
  text-align: center;
  padding: 0.7rem 0;
  margin-bottom: 2rem;
  min-height: 3.5rem;
}

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

.logo-container img {
  max-width: 150px;
  max-height: 50px;
  object-fit: contain;
}

.pink {
  color: #ff7e21;
  font-weight: 700;
}

.privacy-policy {
  text-align: left;
  color: #fff;
}

#main-copyright-text {
  display: inline-block;
}

body {
  position: relative;
}

.custom-btn {
  padding: 0.7rem 2.5rem;
  font-weight: bold;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  border: 1px solid;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

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

.register-container {
  margin-top: 2rem;
}

.submit-container > div {
  margin-top: 1.5rem;
}

a {
  color: #ff7e21;
  font-weight: bold;
}

.heading-style {
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 2rem;
  padding: 5px 1rem;
}

.time h3 {
  margin: 0;
}

#register .heading-style {
  margin-bottom: 1rem;
}

p.copyright {
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.introduceParagraph {
  margin-top: 2rem;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.introduceParagraph2 {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.copyright {
  background-color: #ff7e21;
  padding: 1rem;
  margin-top: 2rem;
}

p.copyright a {
  color: #ff7e21;
}

img.logo {
  margin-top: 1rem;
}

/* social icons */

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

[data-social] {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 0;
  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;
}


form {
  width: 95%;
  margin: 0 auto;
}

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

form .form-group label {
  font-weight: 400;
  color: #fff;
}

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

select {
  appearance: none;
}

.question-text {
  margin: 2rem auto;
}

.answer {
  text-transform: inherit;
  padding: 0.7rem 2.5rem;
  margin: 0.5rem 0;
  font-weight: bold;
}

body .main-content {
  min-height: 100vh;
  padding: 0;
  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;
  text-align: center;
  position: relative;
  box-shadow: 0 0 6px lightslategrey;
}

body .main-content .page {
  margin: 0 auto;
  width: 70%;
  max-width: 1200px;
}

body .main-content img.spotlight-left {
  position: absolute;
  top: 0;
  left: 0;
}

body .main-content img.spotlight-right {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotateY(180deg);
}

body .main-content .image {
  margin: 2rem 0;
  position: relative;
}

body .main-content .image::before {
  content: "";
  position: absolute;
  height: 220px;
  width: 450px;
  background: transparent;
  border: 5px solid #ff7e21;
  transform: skew(-10deg);
  padding: 1.5rem;
  margin: 0 auto;
  bottom: 30px;
  left: 23%;
}

body .main-content .image img.border-img {
  width: 80%;
  margin-top: 50px;
}

.game {
  max-width: 100%;
  max-height: 22rem;
  margin: auto;
  object-fit: contain;
  border: 6px solid #fff;
  box-shadow: 0 0 10px 5px rgb(0 0 0 / 26%);
}

body .main-content > div {
  position: relative;
}

body .main-content .first-screen,
body .main-content .game__block,
body .main-content .great-job,
body .main-content .thank-you {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

body .main-content .first-screen .custom-btn {
  margin-top: 2rem;
}

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

body .main-content .game__block .border-polygon {
  background: transparent;
  margin: 0 auto;
}

body .main-content .game__block .border-polygon .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%;
  width: 95%;
  margin: 0 auto;
  transform: skew(10deg);
}

.game-block {
  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;
  flex-wrap: wrap;
}

body .main-content .game__block .border-polygon .game-items .game-item {
  -webkit-box-flex: 0;
  flex: 0 0 22%;
  max-width: 22%;
  margin: 0.5rem;
}

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

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

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 {
  color: #fff;
}

body .main-content .game__survey .custom-checkbox .custom-control-label::before {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
}

body .main-content .game__survey .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  width: 10px;
  height: 10px;
  background: #ff7e21 none;
  left: -20.5px;
  top: 7px;
}

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

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

body .main-content .game__survey__radio .custom-radio .custom-control-label {
  color: #fff;
}

body .main-content .game__survey__radio .custom-radio .custom-control-label::before {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
}

body .main-content .game__survey__radio .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  width: 10px;
  height: 10px;
  background: #ff7e21 none;
  left: -20.5px;
  top: 7px;
  border-radius: 50%;
}

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

body .main-content .game__survey__text textarea {
  background: transparent;
  border-radius: 0;
  border-color: #ff7e21;
  margin-left: 1.5rem;
  width: 90%;
  color: #fff;
  padding: 8px 14px;
}

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

body .main-content .game__swipe .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 .game__swipe .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: #ff7e21;
  border-radius: 50%;
}

body .main-content .game__swipe .game-controls .arrow img {
  max-width: 75px;
}

body .main-content .game__swipe .game-controls .arrow.arrow-left {
  transform: rotate(180deg);
}

body .main-content .game__swipe {
  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;
  color: #fff;
  font-weight: 600;
  margin-top: 1.5rem;
  font-size: 2rem;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

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

body .main-content .great-job {
  display: none;
}

.registerHeadingParagraph {
  margin-bottom: 2rem;
}

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

.custom-checkbox {
  color: white;
  margin: 0;
  font-size: 15px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: transparent !important;
}

.outcome-text-container {
  margin-top: 2rem;
}

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

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

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

.privacy-policy .container {
  max-width: 100% !important;
}

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

.privacy-policy .heading-style-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  min-height: 70px;
  margin-bottom: 2rem;
}

.privacy-policy .heading-style-container .heading-style {
  text-align: center;
  margin: 0;
}

.checkbox-padding {
  margin-top: 0.5rem;
}

/*
  *   Responsive
  */

@media only screen and (min-width: 1280px) and (max-width: 1650px) {
  h2.heading-style {
    font-size: 2rem;
  }

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

  img.camera {
    width: 100%;
  }

  .container {
    width: 100%;
  }

  body .main-content .page {
    width: 70%;
  }

  body .main-content .image::before {
    left: 21%;
  }

  body .main-content .image img.border-img {
    margin-top: 25px;
  }

  body .main-content .game__block .col-md-6.offset-3 {
    margin-left: 0 !important;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  body .main-content .game__block .col-md-6.offset-3 button {
    -webkit-box-flex: 0;
    flex: 0 0 47%;
    max-width: 47%;
  }

  body .main-content .thank-you .mt-5 {
    margin-top: 1.5rem !important;
  }
}

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

  .offset-3 {
    margin-left: 0 !important;
  }

  h2.heading-style {
    font-size: 3rem;
  }

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

  p.copyright {
    font-size: 1rem !important;
    margin-top: 1.5rem;
  }

  ul.social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  form {
    width: 75%;
    margin: 1rem auto;
  }

  form .form-group {
    width: 100%;
    margin: 0.5rem 0;
  }

  form button {
    margin-top: 1.5rem;
  }

  body .main-content .page {
    width: 80%;
  }

  body .main-content .spotlight-left {
    width: 40%;
  }

  body .main-content .spotlight-right {
    width: 40%;
  }

  body .main-content .image::before {
    left: 17%;
  }

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

  body .main-content .first-screen p.w-75 {
    width: 90% !important;
  }

  body .main-content .first-screen p.w-75 br {
    display: none;
  }

  body .main-content .game__block {
    text-align: center;
  }

  body .game__block .border-polygon .game-items .game-item img {
    object-fit: cover;
    height: 100px !important;
    width: 100%;
  }

  body .main-content .game__block .border-polygon .game-items .game-item {
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
    margin: 0.5rem;
  }

  body .main-content .game__block button {
    width: 75%;
    margin: 0.5rem auto;
  }

  body .main-content .game__quiz .custom-btn {
    width: 75% !important;
  }

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

  body .main-content .great-job .description {
    padding: 1rem;
    -webkit-box-flex: 2;
    flex: 2;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
  }

  body .main-content .great-job .description form .row .col-md-6 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  body .main-content .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 321px) and (max-width: 767px) {
  .offset-3 {
    margin-left: 0 !important;
  }

  h2.heading-style {
    font-size: 1.75rem;
  }

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

  p.copyright {
    font-size: 0.9rem !important;
    margin-top: 1.5rem;
  }

  .container {
    width: 100%;
  }

  form {
    width: 100%;
  }

  form .form-group {
    width: 100%;
  }

  form button {
    margin-top: 1rem;
  }

  body .main-content .page {
    width: 90%;
  }

  body .main-content .spotlight-left {
    width: 50%;
  }

  body .main-content .spotlight-right {
    width: 50%;
  }

  body .main-content .image::before {
    height: 120px;
    width: 80%;
    bottom: 20%;
    left: 10%;
  }

  body .main-content .image img.border-img {
    width: 100%;
  }

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

  body .main-content .first-screen h2 {
    margin-top: 3rem;
  }

  body .main-content .first-screen p.w-75 br {
    display: none;
  }

  body .main-content .game__block {
    text-align: center;
  }

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

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

  body .main-content .game__quiz {
    margin-top: 3rem;
  }

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

  body .main-content .great-job form .row .col-md-6 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  body .main-content .game__swipe .w-75 {
    width: 90% !important;
  }

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

  body .main-content .game__swipe .game-controls .box img {
    width: 20px;
    height: 20px;
  }

  body .main-content .game__swipe .game-controls .arrow {
    width: 50px;
    height: 50px;
  }

  body .main-content .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
  }

  .padding-game-row {
    padding: 1rem !important;
  }

  body .main-content .game__block .border-polygon .game-items .game-item {
    -webkit-box-flex: 0;
    flex: 0 0 38%;
    max-width: 38%;
    margin: 0.5rem;
  }

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

  ul.social li a i {
    width: 2rem;
    height: 2rem;
    font-size: 22px;
  }

  #outcome-text,
  #outcome-text2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media only screen and (max-width: 320px) {
  .offset-3 {
    margin-left: 0 !important;
  }

  img.logo {
    width: 80%;
  }

  h2.heading-style {
    font-size: 1.5rem;
  }

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

  p.copyright {
    font-size: 0.9rem !important;
    margin-top: 1.5rem;
  }

  ul.social li a i {
    width: 2rem;
    height: 2rem;
    font-size: 22px;
  }

  .container {
    width: 100%;
  }

  form {
    width: 100%;
  }

  form .form-group {
    width: 100%;
  }

  form button {
    margin-top: 0.5rem;
  }

  body .main-content .page {
    width: 90%;
  }

  body .main-content .spotlight-left {
    width: 50%;
  }

  body .main-content .spotlight-right {
    width: 50%;
  }

  body .main-content .image::before {
    height: 120px;
    width: 80%;
    bottom: 15px;
    left: 10%;
  }

  body .main-content .image img.border-img {
    width: 100%;
  }

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

  body .main-content .first-screen h2 {
    margin-top: 3rem;
  }

  body .main-content .first-screen p.w-75 {
    width: 90% !important;
  }

  body .main-content .first-screen p.w-75 br {
    display: none;
  }

  body .main-content .game__block {
    text-align: center;
  }

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

  body .main-content .game__block .border-polygon .game-items .game-item {
    -webkit-box-flex: 0;
    flex: 0 0 40%;
    max-width: 40%;
    margin: 0.5rem;
  }

  .padding-game-row {
    padding: 1rem !important;
  }

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

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

  body .main-content .game__quiz {
    margin-top: 3rem;
  }

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

  body .main-content .great-job form .row .col-md-6 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  body .main-content .game__swipe .w-75 {
    width: 90% !important;
  }

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

  body .main-content .game__swipe .game-controls .box img {
    width: 20px;
    height: 20px;
  }

  body .main-content .game__swipe .game-controls .arrow {
    width: 50px;
    height: 50px;
  }

  body .main-content .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
  }

  #outcome-text,
  #outcome-text2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* MEMORY GAME */

#page-container {
  text-align: center;
}

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

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

#timer {
  font-weight: bold;
}

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

.memory-card {
  font-size: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  width: 12rem;
  height: 12rem;
  box-shadow: 0 0 10px grey;
}

.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%;
}

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

#game-time,
#question {
  padding-right: 0.5rem;
}

.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;
  margin-bottom: 2rem;
  font-weight: 900;
  font-size: 2rem;
}

.header-game .time img {
  width: 30px;
  height: 30px;
}

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

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

@media only screen and (min-width: 992px) and (max-width: 1278px) {
  .game-item {
    flex-basis: 20%;
  }

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

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

  .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 {
    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: 28vw;
    height: 28vw;
  }

  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 {
    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;
  }
}

/* register  */

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

.custom-control-label::before {
  border: 1px solid #48535e;
}

input[type="checkbox"] {
  border: 1px solid;
}

.form-control {
  background-color: transparent;
}

/* quiz  */

.content {
  width: 100%;
  margin: auto;
  padding: 0 1rem;
  flex-direction: column;
}

.questionHeading {
  font-weight: 800;
}

@media only screen and (min-width: 450px) and (max-width: 766px) {
  .content {
    width: 80%;
  }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .content {
    width: 60%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content {
    width: 60%;
  }
}

@media only screen and (min-width: 1200px) {
  .content {
    width: 40%;
  }
}

/* SWIPE  */

.introduction-img {
  position: relative;
  height: 330px;
  width: 330px;
}

.introduction-img img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swipe-container {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 0 0.5rem;
}

.game-container-swipe {
  width: 60%;
  margin: 0 auto;
  padding: 0 1rem;
  border-radius: 1.5rem;
}

.images {
  position: relative;
  margin: auto;
}

.mobileArrow {
  position: absolute;
  top: calc(50% - 30px);
  left: -7rem;
}

/* quiz same button content height */

.game-controls-container {
  display: flex;
  flex: 1;
}

.game-controls {
  display: flex;
  flex: 1;
}

body #game-view .answerSwipe {
  white-space: normal;
  word-wrap: break-word;
  margin: 0.5rem auto;
  padding: 0.7rem;
  font-weight: bold;
  display: flex !important;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.arrowsSmallDeviceContainer {
  display: none;
}

.mobileArrow2 {
  position: absolute;
  top: calc(50% - 30px);
  right: -7rem;
}

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

.arrowSwipe {
  font-size: 60px;
}

@media only screen and (max-width: 520px) {
  .mobileArrowSmallDevice,
  .mobileArrowSmallDevice2 {
    font-size: 40px;
  }

  .arrowsSmallDeviceContainer {
    display: flex;
  }

  .mobileArrow,
  .mobileArrow2 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .answersSwipeContainer > div {
    padding-left: 0;
    padding-right: 0;
  }

  .images {
    max-width: 100%;
  }

  .game {
    max-width: 100%;
  }

  .game-container-swipe {
    width: 100%;
  }

  body #game-view .answerSwipe {
    width: 90%;
  }

  .arrowSwipe {
    font-size: 50px;
  }

  .mobileArrow,
  .mobileArrow2 {
    top: calc(50% - 25px);
  }

  .mobileArrow {
    left: -5rem;
  }

  .mobileArrow2 {
    right: -5rem;
  }

  .introduction-img {
    height: 240px;
    width: 240px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .game-container-swipe {
    width: 80%;
    padding: 1rem;
  }

  .introduction-img {
    height: 290px;
    width: 290px;
  }

  .survey__navigation > button {
    width: 100% !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .game-container-swipe {
    width: 80%;
    padding: 1rem;
  }
}

#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;
}

/* 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;
}

/* gtp animation fix */

#gtp .game {
  padding: 1px;
}

.gtp-tile-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* spin the wheel */

.wheel-section {
  display: flex;
  justify-content: center;
}

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

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

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

.wheel-section .wheel-ticker {
  width: 48px;
  height: 43px;
  object-fit: contain;
  margin: auto -20px auto auto;
}

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

.legend-section {
  justify-content: center;
  display: flex;
  width: 400px;
  margin: 0 auto;
}

.legend-section .legend {
  display: flex;
  flex-direction: column;
}

.legend-section .legend-element {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.legend-section .sector {
  width: 50px;
  height: 50px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
}

.legend-section .sector img {
  width: 40px;
  height: 40px;
}

.legend-section span {
  text-align: start;
}

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

.button-container-stw {
  width: 100%;
  text-align: center;
  margin-bottom: 3%;
}

.button-container-stw button {
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 15px;
  width: unset !important;
}

@media screen and (max-width: 550px) {
  .wheel-section .canvas-container {
    width: 310px;
    height: 310px;
  }

  .wheel-section canvas {
    width: 280px;
    height: 280px;
  }

  .legend-section {
    width: 310px;
  }

  .wheel-section .wheel-center {
    width: 40px;
  }

  .wheel-section .wheel-ticker {
    width: 40px;
    margin: auto -20px auto auto;
  }
}

@media screen and (max-width: 550px) {
  .wheel-section .canvas-container {
    width: 270px;
    height: 270px;
  }

  .wheel-section canvas {
    width: 240px;
    height: 240px;
  }

  .legend-section {
    width: 270px;
  }
}

/* end of spin the wheel */

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

/* ================================= SURVEY =================================== */

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

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

#surveyGame {
  width: 100%;
  height: auto;
  padding: 20px 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#surveyGame .button-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

#surveyGame .button-container button {
  max-width: 240px;
  padding: 10px 20px;
  width: 100%;
  min-width: 100px;
  margin: 10px 5px;
}

.survey__question__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.survey__image {
  border: 10px solid;
}

.survey__picture-section,
.survey__text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.survey__navigation,
.survey__question-text {
  display: flex;
  gap: 0;
  justify-content: center;
}

.survey__navigation {
  width: 100%;
  order: 2;
  margin: 30px auto;
  display: flex;
  flex-flow: row wrap-reverse;
  justify-content: center;
  gap: 20px;
}

.survey__question-text {
  margin: 0 auto 20px;
  text-align: center;
}

.survey__question-text p {
  margin: 0;
}

.survey__navigation > button {
  max-width: 240px;
  width: unset;
  margin: 0;
  min-width: 200px;
  padding: 10px 20px;
}

.survey__question-counter {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.survey__question-counter h3 {
  margin: 0;
}

.survey__answers {
  margin: 20px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.text-answer {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid black;
}

.text-answer > textarea {
  all: unset;
  width: 100%;
  min-height: 150px;
  padding: 5px;
  text-align: left;
}

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

.multiple-answer label,
.multiple-answer span,
.single-answer label,
.single-answer span {
  width: fit-content;
}

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

#surveyGame .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #00a99d !important;
}

.answers-container {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.answers-container > div {
  display: flex;
  flex-flow: row nowrap;
}

.single-answer,
.multiple-answer {
  flex-flow: row nowrap;
  justify-content: center;
  gap: 50px;
}

@media screen and (min-width: 1024px) {
  #surveyGame {
    gap: 50px;
  }

  .survey__picture-section,
  .survey__text-section {
    width: 100%;
  }

  .survey__navigation {
    order: 5;
  }
}

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

.scale-container {
  width: fit-content;
  margin: auto;
  max-width: 1500px;
}

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

.scale__line {
  width: 1px;
  height: 96%;
  margin: auto 0;
  background: black;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
}

.scale__sector {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: fit-content;
  max-width: 300px;
  position: relative;
  z-index: 1;
}

.scale__sector__button {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: white;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid black;
  position: relative;
}

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

.scale__marker {
  outline: solid 1px black;
  outline-offset: 3px;
  background-color: #00a99d;
  transition: all 0.1s ease-out;
}

@media screen and (min-width: 1024px) {
  .survey__text-section {
    width: 77% !important;
  }

  .scale-container {
    width: 100%;
    margin: auto;
  }

  .scale {
    min-height: auto;
    flex-direction: row;
    gap: 0;
    margin-top: 15px;
  }

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

  .scale__sector {
    width: 10%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

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

  .scale__sector__text {
    margin: 0 5px;
    padding-left: 0;
    padding-top: 10px;
    text-align: center;
  }
}

.survey__picture-section img {
  width: 344px;
  height: 344px;
  object-fit: cover;
}

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

.single-answer label,
.multiple-answer label {
  text-align: left;
}

/* ----- single and multiple answers ------ */

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

/* ----- navigation ------ */

@media screen and (max-width: 1024px) {
  .scale {
    display: grid;
    grid-auto-rows: 1fr;
  }

  .survey__navigation {
    order: 5;
    gap: 10px;
  }

  .scale__line {
    left: 10px;
    width: 1px !important;
  }

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

  #surveyGame .custom-checkbox {
    text-align: left;
  }

  .survey__text-section {
    width: 100%;
  }

  .single-answer,
  .multiple-answer {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 1119px) {
  .scale_last_visible {
    align-items: flex-end;
  }

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

  .single-answer,
  .multiple-answer {
    margin: auto;
    flex-wrap: wrap;
    gap: 10px !important;
  }
}

@media screen and (max-width: 550px) {
  .survey__picture-section img {
    width: 250px;
    height: 250px;
  }

  .survey__navigation {
    flex-direction: column-reverse;
    align-items: center;
  }

  .scale {
    display: flex !important;
  }
}

.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;
}

/* ----- kill outline on focus ------ */
textarea:focus-visible {
  outline: none;
}

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

button:focus,
button:focus-visible {
  outline: none !important;
}

/*  ================================= SCRATCH CARD  ================================= */
#scratch-card {
  width: 100%;
  height: auto;
  padding: 0 10px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 410px) {
  #scratch-card {
    padding: 0 20px 40px;
  }
}

@media screen and (min-width: 1024px) {
  #scratch-card {
    gap: 60px;
  }
}

/* -------------- CARD CONTAINER -------------- */
.scratch-card__container {
  width: 100%;
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  margin: auto;
}

.scratch-card__container > .card {
  position: relative;
  cursor: pointer;
  user-select: none;
  aspect-ratio: 1 / 1;
  background: transparent;
  box-shadow: 0 0 8px rgb(0 0 0 / 50%);
  border: 4px solid rgb(0 169 157 / 100%);
  border-radius: 0;
}

.card-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  aspect-ratio: 1 / 1;
  z-index: 10;
  border-radius: inherit;
}

.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(255 255 255 / 100%);
}

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

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

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

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

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

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

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

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

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

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

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

#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;
}

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

@media screen and (min-width: 1024px) {
  #scratch-card .legend {
    grid-template-columns: repeat(4, auto);
    grid-template-rows: auto;
    margin-bottom: 20px;
  }

  #scratch-card .legend-element {
    flex-direction: column;
    text-align: center;
  }

  #scratch-card .sector {
    margin: 0 auto 20px;
  }
}

/* --------------- 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: 0;
  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;
}

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

#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: 380px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

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

/* ================================ RTL SUPPORT ================================ */
[dir="rtl"] .center-box {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

[dir="rtl"] #picture-element,
[dir="rtl"] #time-wrap,
[dir="rtl"] #question-element,
[dir="rtl"] .question-element,
[dir="rtl"] .questionHeading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
}

[dir="rtl"] #status-txt,
[dir="rtl"] #status-txt-swipe {
  display: flex !important;
}

[dir="rtl"] .time-element {
  margin-left: 8px;
}

[dir="rtl"] .custom-control.custom-checkbox {
  text-align: right;
  padding: 0 1.5rem 0 0 !important;
}

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

[dir="rtl"] .answersSwipeContainer {
  direction: ltr;
}

[dir="rtl"] #status-txt-swipe,
[dir="rtl"] #status-txt-click {
  display: flex !important;
}

[dir="rtl"] .survey__question-counter>h3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
}

[dir="rtl"] textarea {
  direction: rtl;
  text-align: right;
}

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

[dir="rtl"] #privacy_checbox_1,
[dir="rtl"] #privacy_checbox_2,
[dir="rtl"] #privacy_checbox_3 {
  text-align: right !important;
}

[dir="rtl"] .arrowsSmallDeviceContainer {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1023px) {
  [dir="rtl"] .legend .sector {
    margin-right: 0;
    margin-left: 20px;
  }
}

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

  [dir="rtl"] .scale__sector__text {
    text-align: right;
    padding-left: 0;
    padding-right: 10px;
  }
}

/* mobile first update */
@media screen and (max-width: 1024px) {
  h1,
  h2 {
    line-height: 1 !important;
  }

  .heading-style {
    margin-bottom: 1rem;
  }

  .introduceParagraph {
    margin-top: 1.5rem;
  }

  .introduceParagraph2 {
    margin-top: 1rem;
  }

  body .main-content .first-screen .custom-btn {
    margin-top: 1.5rem;
  }

  #register .heading-style {
    margin-bottom: .5rem;
  }

  .register-container {
    margin-top: 1rem;
  }

  form .form-group {
    margin-bottom: .5rem;
  }

  .submit-container > div {
    margin-top: 1rem;
  }

  .wheel-section {
    margin-top: auto;
  }

  .legend-section {
    margin: 1rem auto;
  }

  .button-container-stw {
    margin-bottom: auto;
  }

  .wheel-section .canvas-container {
    width: 300px;
    height: 300px;
  }

  .wheel-section canvas {
    width: 270px;
    height: 270px;
  }

  .legend-section .sector {
    width: 42px;
    height: 42px;
  }

  .legend-section .sector img {
    width: 30px;
    height: 30px;
  }
  
  #outcome-title {
    margin-bottom: 1.5rem;
  }

  .outcome-text-container {
    margin-top: 1.5rem;
  }

  #scratch-card .sector {
    width: 42px;
    height: 42px;
  }

  #scratch-card .legend {
    gap: 14px;
  }
}

.main-img {
    width: 90%;
    height: auto;
    max-width: 640px;
    max-height: 440px;
    border: 6px solid #fff;
    box-shadow: 0 0 6px lightslategrey;
    margin: 0 auto;
}