@font-face {
  font-family: Roboto-Black;
  src: url("../assets/fonts/Roboto-Black.otf");
}

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

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

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

body {
  position: relative;
}

#main-content > div {
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
}

a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

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

.intro-img-container {
  padding: 10px;
  max-width: 96%;
  margin: 0 auto;
}

button img {
  width: 6.5vw;
  position: relative;
  left: 7px;
}

li img {
  width: 12vw;
}

.intro-img-container img {
  max-height: 25rem;
  object-fit: contain;
  width: 100%;
  /*aspect-ratio: 3 / 2;*/
}

.button-container {
  width: 12rem;
  max-width: 100%;
  margin: 2rem 0;
  margin-bottom: 0;
}

button {
  cursor: pointer;
  font-weight: bold;
  width: fit-content;
}

#game-view,
#quiz,
#swipe,
#survey {
  display: flex;
  flex-direction: column;
  width: 85%;
  margin: auto;
  align-items: center;
  border: 9px solid;
}

.content {
  border: 5px solid;
  width: 80%;
  margin: auto;
  padding: 0 1rem;

  /* position: relative; */
}

.ShapeOneBefore {
  height: 2rem;
  content: "";
  background-color: white;
  clip-path: polygon(91% 100%, 9% 100%, 91% 0%);
  transform: scaleX(-1);
}

.ShapeTwoBefore {
  height: 2rem;
  content: "";
  background-color: white;
  clip-path: polygon(91% 100%, 9% 100%, 91% 0%);
  transform: scaleY(-1);
}

.content-background {
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-control:focus {
  background-color: transparent !important;
}

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

#game-view {
  border: none;
  width: 100%;
}

#swipe,
#quiz,
#survey {
  margin-top: 5%;
}

.copyright {
  text-shadow: 1px 1px black;
  text-align: center;
  margin: 2rem 0;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: #662d91;
}

h2 {
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.text-1 {
  margin-top: 5%;
}

.photos {
  padding: 4px;
  width: 72vw;
  border: 2px solid #662d91;
  margin-top: 10%;
  margin-bottom: 15%;
}

button:hover {
  color: #662d91;
  background: #fff;
}

.btn-border1 {
  border: 2px solid #662d91;
  padding: 2px;
  width: 65%;
  height: auto;
  margin-bottom: 15%;
}

.container-checkbox {
  width: 100%;
  margin-bottom: 20%;
  margin-top: 4%;
}

.wrapper-checkbox {
  position: relative;
  display: flex;
  padding: 4px;
}

label {
  text-align: left;
  margin-bottom: 0;
}

input[type="text"],
input[type="email"],
select[type="text"],
input[type="date"] {
  border-radius: 0;
  background-color: transparent;
}

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

select {
  appearance: none;
}

option {
  background: black;
}

input[type="checkbox"],
[type="radio"] {
  appearance: none;
  width: 6vw;
  height: 6vw;
  background-color: transparent;
  border: 1px solid #662d91;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: auto;
  outline: none;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"]::after,
input[type="radio"]::after {
  content: "\2610";
  color: #fff;
  display: none;
  position: relative;
  background-color: #fff;
  font-size: 3vw;
  height: auto;
  width: 4vw;
}

input[type="radio"]::after {
  border-radius: 50%;
}

input[type="checkbox"]:checked::after,
input[type="radio"]:checked::after {
  display: block;
}

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

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

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

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

.custom-checkbox .custom-control-input ~ .custom-control-label::after {
  transform: scale(0.85);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  position: absolute;
  content: "";
  display: block;
  left: -19px;
  width: 6px;
  height: 12px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: none !important;
}

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

.time-size {
  font-size: 5.5vw;
}

.time {
  width: 3vw;
}

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

.survey__picture-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.stw .sector img {
  width: 45px;
  height: 45px;
}

#quiz img {
  margin-bottom: 8%;
}

#answers {
  width: 88%;
  margin-bottom: 2%;
}

.survey__navigation > button {
  padding: 10px 20px;
  margin: 10px 5px;
  width: 100%;
  max-width: 240px;
  min-width: 200px;
}

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

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

#answers button {
  width: 100%;
  margin-bottom: 3%;
}

#swiper {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 10%;
}

#swiper button {
  background: #662d91;
  width: 16vw;
  height: 16vw;
  padding: 0%;
  margin: auto;
}

#swiper button img {
  left: 0%;
  width: 6vw;
}

.true {
  width: 7vw !important;
}

.container-survey {
  width: 100%;
  margin-bottom: 10%;
}

.container-survey label {
  font-size: 5.5vw;
  padding: 10px;
  border: 1px solid #662d91;
  background-color: #662d91;
  width: 78%;
  text-align: center;
  cursor: pointer;
  margin: auto;
}

#survey .btn-border1 {
  width: 47%;
}

textarea {
  width: 65vw;
  margin: auto;
  background-color: #fff;
  color: #662d91;
  border: 0.7vw solid #662d91;
  margin-bottom: 10%;
  font-size: 4vw;
  outline: none;
  height: 28vw;
  padding: 1vw 2vw;
}

textarea::placeholder {
  color: #662d91;
}

#outcome-title,
.introduction_headline,
.register_headline {
  margin-top: 0;
  margin-bottom: 1rem;
}



.privacy-policy li {
  margin: 0;
  display: list-item;
  border-radius: unset;
}

/* social icons */

.social__wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 20px auto 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;
}

@media screen and (min-width: 768px) {
  .social__wrap {
    justify-content: flex-start;
    margin: 20px auto 0 -5px;
  }
}

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

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

.privacy-policy ul {
  list-style: disc;
  margin: 0;
  justify-content: left;
  width: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.privacy-policy .container {
  max-width: 1024px;
}

@media only screen and (min-width: 768px) {
  .logo {
    max-width: 200px;
    max-height: 120px;
  }

  #game-view,
  #quiz,
  #swipe,
  #survey {
    width: 75%;
    border: 1.8vw solid;
  }

  #card-container {
    margin: auto;
  }

  #game-view {
    border: none;
    width: 100%;
  }

  .copyright {
    font-size: 1.9vw;
    margin: 1rem auto;
    text-align: center;
    text-shadow: 1px 1px black;
  }

  .text-1 {
    margin-top: 2%;
  }

  .photos {
    width: 31vw;
    margin: 0%;
    position: absolute;
    margin-top: 5vw;
    left: 16%;
    border: 0.2vw solid #662d91;
    padding: 8px;
  }

  .btn-border1 {
    width: 20%;
    margin-bottom: 8%;
    margin-top: 2%;
    position: relative;
    left: 14%;
  }

  button {
    width: 100%;
    padding: 10px 20px;
  }

  .inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1%;
  }

  .row-input {
    display: flex;
    width: 91%;
    margin-left: auto;
  }

  .container-checkbox {
    width: 100%;
    margin: 0%;
  }

  .checkbox-styling {
    padding-left: 1rem;
    margin-top: 1rem;
  }

  input[type="checkbox"],
  [type="radio"] {
    appearance: none;
    width: 1.5vw;
    height: 1.5vw;
    margin-left: 8%;
    margin-right: 2%;
  }

  button img {
    width: 2vw;
  }

  input[type="checkbox"]::after,
  input[type="radio"]::after {
    height: 70%;
    font-size: 0;
    width: 70%;
  }

  ul {
    margin-top: 3%;
    margin-bottom: 5%;
    margin-left: 50%;
    width: 50%;
    justify-content: left;
  }

  li {
    margin-right: 0%;
    margin-left: 8%;
  }

  li img {
    width: 3vw;
  }

  .time-size {
    font-size: 2.5vw;
    margin-left: 32vw;
    margin-bottom: 2%;
  }

  .time {
    width: 1.5vw;
  }

  #answers {
    margin-top: 3%;
    margin-left: 50%;
    width: 50%;
    margin-bottom: 5%;
  }

  #answers button {
    width: 55%;
    margin-left: 8%;
    padding: 5px;
  }

  #quiz {
    margin-top: 0%;
  }

  .container-survey {
    margin-left: 50%;
    margin-top: 8%;
    width: 50%;
    margin-bottom: 5%;
  }

  .container-survey label {
    font-size: 2vw;
    width: 65%;
  }

  #survey .btn-border1 {
    width: 20%;
    left: 15%;
  }

  .survey-text {
    margin-left: 33%;
  }

  textarea {
    margin-left: 54%;
    margin-top: 8%;
    width: 35%;
    margin-bottom: 1%;
    font-size: 2vw;
    height: 13vw;
    border: 0.4vw solid;
  }

  .survey-text-2 {
    margin-left: 20%;
  }

  .quiz-margin {
    margin-left: 30vw;
  }

  .swipe-text {
    width: 52%;
    margin-left: 5%;
  }

  #swipe img[src$="jpg"] {
    left: 34%;
  }

  #swiper button {
    width: 6vw;
    height: 6vw;
    margin-top: 20%;
    margin-bottom: 7%;
  }

  #swiper button img {
    left: 0%;
    width: 3vw;
  }

  .true {
    width: 4vw !important;
  }
}

@media only screen and (max-width: 767px) {
  .ShapeOneBefore {
    height: auto;
    clip-path: polygon(100% 91%, 50% 91%, 100% 9%);
    transform: none;
  }

  .ShapeTwoBefore {
    height: auto;
    clip-path: polygon(100% 91%, 50% 91%, 100% 9%);
    transform: scale(-1, -1);
  }

  .content-background {
    padding: 1.5rem;
  }

  #introduction {
    width: 90%;
  }

  #register {
    width: 90%;
  }

  .button-container {
    margin: 1.5rem auto;
  }

  .button-container button {
    width: 80%;
    max-width: 260px;
    padding: 0.5rem;
    align-self: center;
  }

  .game-description {
    text-align: center;
  }

  .checkbox-styling {
    padding-left: 0;
    margin-top: 1rem;
  }

  #outcome-title,
  .introduction_headline,
  .register_headline {
    margin-top: 1rem;
  }
}

/* CSS for GAME page */

.page-container {
  width: 100%;
  text-align: center;
  max-width: 1024px;
}

.page-container .container {
  display: flex;
  align-items: center;
  max-width: 100vw;
  border: 5px solid;
}

#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: 20%;
  flex-basis: 20%;
  margin: 10px;
}

.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-mobile {
  display: none;
}

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

.time,
.counter-element {
  width: unset;
  min-width: 300px;
}

.header-game .time {
  opacity: 0.9;
  border-radius: 20px;
  display: -webkit-box;
  display: flexbox;
  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: 1rem;
  font-weight: 900;
  font-size: 2rem;
  width: 300px;
}

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

.header-game .game-icon {
  background: url("https://storage.brame-gamification.com/campaign-data/e53b3ed0-19dc-11f0-99fc-db12c68b294b/assets/icons/stopwatch.svg") no-repeat center / contain;
  height: 24px;
  width: 24px;
}

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

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

.legend-element span {
  text-align: left;
}

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

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #submit-button {
    align-self: center;
  }

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

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

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

  .register_headline {
    margin-top: 2rem;
  }

  #register .button-container {
    margin: 3rem auto;
    margin-bottom: 0;
  }
}

@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: 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) {
  .intro-img-container {
    padding: 5px;
    max-width: 100%;
  }

  .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;
    width: 300px;
  }

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

  .content-background {
    padding: 1.5rem 0.5rem;
  }
}

/* QUIZ */

.quiz-heading {
  margin: 1.5rem 0;
}

.swipe-container {
  align-items: center;
  justify-content: space-evenly;
}

.items {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 300px;
  padding: 0;
}

.question-data {
  margin-left: 3rem;
}

.game {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 3 / 2;
}

.answers {
  margin-left: -4px;
}

.gtp-answers {
  align-items: flex-end;
}

.answer {
  padding: 7px;
  font-weight: bold;
  width: 100%;
  margin: 4px;
  word-break: break-word;
  white-space: normal;
}

.gtp-answers .answer {
  max-width: 360px;
}

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

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

.arrow {
  font-size: 64px;
}

.desktop {
  display: flex;
}

.mobile {
  display: none;
}

@media (max-width: 767px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: flex;
  }

  .items {
    height: 244px;
    margin: 0 auto;
    width: 80%;
  }

  .answers {
    margin-left: 0;
    align-items: center;
  }

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

  .arrow {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .answer {
    font-size: 3vw;
  }
}

@media (max-width: 856px) {
  .question-data {
    margin-left: 0;
  }
}

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

/* spin the wheel */

.spin-the-wheel {
  max-width: 1200px;
}

.stw {
  display: flex;
  justify-content: space-evenly;
}

.stw .canvas-container {
  width: 450px;
  height: 450px;
  border: 10px solid #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 25px;
}

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

.stw .wheel-ticker {
  width: 50px;
  height: 43px;
  object-fit: contain;
  margin: auto -24px auto auto;
}

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

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

.stw .legend-section {
  display: flex;
  flex-direction: column;
  margin-left: 25px;
  min-width: 35%;
  justify-content: center;
}

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

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

.stw .sector {
  width: 55px;
  height: 55px;
  min-width: 55px;
  margin: 10px;
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stw .button-container span {
  text-transform: uppercase;
}

#stw-button {
  padding: 10px 15px;
}

@media screen and (max-width: 1300px) {
  .stw .canvas-container {
    width: 400px;
    height: 400px;
  }

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

  .spin-the-wheel {
    max-width: 1050px;
  }
}

@media screen and (max-width: 1100px) {
  .stw .canvas-container {
    width: 380px;
    height: 380px;
  }

  .stw canvas {
    width: 350px;
    height: 350px;
  }

  .spin-the-wheel {
    max-width: 800px;
  }
}

@media screen and (max-width: 767px) {
  .stw {
    flex-direction: column;
    margin-bottom: 0;
  }

  .stw .legend-section {
    margin: 5% 10%;
  }

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

  .stw .button-container {
    width: 15rem;
  }

  .stw .canvas-container {
    margin-left: 0;
  }
}

@media screen and (max-width: 520px) {
  .stw .canvas-container {
    width: 290px;
    height: 290px;
  }

  .stw canvas {
    width: 260px;
    height: 260px;
  }

  .stw .wheel-ticker {
    width: 45px;
  }

  .stw .wheel-center {
    width: 30px;
  }
}

@media screen and (max-width: 380px) {
  .stw .canvas-container {
    width: 250px;
    height: 250px;
  }

  .stw canvas {
    width: 220px;
    height: 220px;
  }
}

/* end of spin the wheel */

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

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

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

#surveyGame .custom-checkbox {
  color: white;
}

#surveyGame .button-container {
  display: flex;
  justify-content: center;
  margin: 10px 5px;
  min-width: 100px;
  width: 100%;
  max-width: 240px;
}

#surveyGame .button-container button {
  width: 100%;
}

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

.survey__image {
  border: 8px solid #fff;
}

.survey__picture-section,
.survey__text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 100%;
}

.survey__picture-section {
  width: 100%;
  max-width: 600px;
  height: 400px;
}

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

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

.survey__question-text p {
  margin: 0;
}

.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: 2px solid white;
}

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

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

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

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

  .survey__picture-section {
    width: 100%;
  }

  .survey__navigation {
    order: 5;
  }
}

.survey__text__wrap {
  width: 100%;
}

.content.survey {
  display: flex;
  align-items: center;
}

.single-answer,
.multiple-answer {
  flex-flow: row nowrap;
  justify-content: center;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* // MEDIA QUERY // */

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

.custom-checkbox
.custom-control-input:checked
~ [data-color-primary-text-checkbox-checkmark]::after {
  border-color: rgb(242 242 242 / 100%) !important;
}

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

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

@media screen and (min-width: 768px) {
  .single-answer,
  .multiple-answer {
    flex-flow: row nowrap;
    gap: 50px;
  }
}

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

.survey__navigation {
  width: 100%;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

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

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

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

@media screen and (max-width: 1119px) {
  .survey__navigation {
    justify-content: center;
    margin-left: 0;
  }

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

@media screen and (max-width: 1024px) {
  .content.survey {
    flex-direction: column;
  }

  .survey__navigation {
    order: 5;
  }

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

  .survey__text-section {
    width: 100%;
  }

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

@media screen and (max-width: 768px) {
  .survey__picture-section {
    height: 400px;
  }
}

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

  .survey__picture-section,
  .survey__text-section {
    padding: 10px;
  }
}

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

#surveyGame
.custom-checkbox
.custom-control-input:checked
~ .custom-control-label::after {
  position: absolute;
  content: "";
  display: block;
  left: -19px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#surveyGame .single-answer label::after {
  border-radius: 0 !important;
}

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

#surveyGame .custom-control-input:disabled ~ .custom-control-label {
  color: inherit !important;
}

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

.single-answer ::before,
.multiple-answer ::before {
  outline: none;
  box-shadow: 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: 88%;
  margin: auto 0;
  position: absolute;
  left: 20px;
  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: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

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

.scale__sector__button.scale__marker {
  transform: scale(1.4);
}

.scale__marker::after {
  content: "";
  transition: all 0.1s ease-out;
  border-radius: 50%;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  transform: scale(0.7);
}

@media screen and (max-width: 1023px) {
  .scale {
    min-height: 210px;
  }

  span[data-scale-line] {
    width: 5px !important;
  }

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

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

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

@media screen and (min-width: 1024px) {
  .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: 3px;
    width: 88%;
    height: 4px;
    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;
  }
}

/* ================================== SCRATCH CARD ============================= */
.row.scratch {
  width: 80%;
}

.scratch__card h1 {
  text-align: center;
  margin-bottom: 30px;
}

.scratch__card__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.content.scratch {
  padding: 40px;
  width: 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;
}

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

[dir="rtl"] .stw .sector {
  margin: 10px;
  margin-right: 0;
}

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

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

.scratch-card__container {
  width: 90%;
  max-width: 450px;
  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-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;
}

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 1350px) {
  .row.scratch {
    width: 90%;
  }
}

@media screen and (max-width: 1023px) {
  .scratch__card__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

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

@media screen and (max-width: 767px) {
  .content.scratch {
    width: 83%;
    margin: 0;
    padding: 20px;
  }
}

/*  ===== 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-reached h2 {
  margin: 0;
}

#limit-reached .content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#limit-reached .content-background {
  padding: 20px 10px;
  min-height: 350px;
  width: 100%;
}

@media screen and (min-width: 410px) {
  #limit-reached .content-background {
    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;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* gtp fix */
#gtp .items {
  position: relative;
  width: 240px;
  max-width: 100%;
  height: auto;
  margin: auto;
}

#gtp .items .game {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gtp-tile-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
}

@media screen and (min-width: 360px) {
  #gtp .items {
    width: 270px;
    height: auto;
  }
}

@media screen and (min-width: 410px) {
  #gtp .items {
    width: 280px;
    height: auto;
  }
}

@media screen and (min-width: 500px) {
  #gtp .items {
    width: 360px;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  #gtp .items {
    width: 440px;
    height: auto;
  }
}

@media screen and (min-width: 992px) {
  #gtp .items {
    width: 370px;
    height: auto;
  }
}

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

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

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

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

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

[dir="rtl"] [data-mode-swipe] {
  direction: ltr;
}

[dir="rtl"] p[data-personality-test],
[dir="rtl"] p[data-quiz] {
  direction: rtl;
}

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

[dir="rtl"] #scratch-card .sector {
  margin-right: unset;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  [dir="rtl"] .ShapeOneBefore {
    order: 3;
  }

  [dir="rtl"] .content {
    order: 2;
  }

  [dir="rtl"] .ShapeTwoBefore {
    order: 1;
  }

  [dir="rtl"] .memory-game .ShapeTwoBefore {
    order: -1;
  }
}

@media screen and (min-width: 768px) {
  [dir="rtl"] .offset-md-1 {
    margin-left: unset;
    margin-right: 8.3333%;
  }

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

  [dir="rtl"] .text-md-left {
    text-align: right !important;
  }

  [dir="rtl"] .mr-md-3 {
    margin-right: unset !important;
    margin-left: 1rem !important;
  }

  [dir="rtl"] .pr-md-5 {
    padding-right: unset !important;
    padding-left: 3rem !important;
  }
}

@media screen and (min-width: 992px) {
  [dir="rtl"] .register-description {
    text-align: right !important;
  }
}

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

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

@media screen and (min-width: 1200px) {
  [dir="rtl"] .offset-xl-2 {
    margin-left: unset;
    margin-right: 16.6667%;
  }
}

/* ------- Access Codes */

#access-code {
  margin: auto !important;
}