/* GLOBAL STYLES */
*,
*::before,
*::after {
  overflow-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  --black: #000;
  --white: #fff;
  --text-primary: rgb(129 107 98 / 100%);
  --text-secondary: rgb(173 0 81 / 100%);
  --logo-bg-radius: 0 0 24px 24px;
}

.swipe-container > a {
  flex: 0 0 48%;
  padding: 20px 15px;
}

a,
a:hover,
#social a,
#social a:hover {
  text-decoration: none;
}

h1,
h2,
h3 {
  margin-bottom: 25px;
}

.heading-style {
  margin-bottom: 60px;
  text-align: center;
}

button > span {
  line-height: 1;
  font-size: inherit;
}

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

/* ------ CTA BUTTONS ------ */
.cta-buttons {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  width: 100%;
  justify-content: center;
  padding: 20px 0;
}

.cta {
  width: 100%;
  max-width: 312px;
  padding: 20px 25px;
  display: none;
  cursor: pointer;
}

/* 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: 10px auto;
  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;
}

/* =================== GENERAL LAYOOUT =================== */
.page-wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  width: 100%;
  margin: 0 0 50px;
  display: flex;
  justify-content: center;
}

.logo-bg {
  width: 80%;
  height: auto;
  max-width: 600px;
  border-radius: var(--logo-bg-radius);
  display: flex;
  justify-content: center;
}

.logo {
  width: 150px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  margin: 15px auto 25px;
}

.image-container {
  width: 100%;
  height: auto;
  margin-top: auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.image-border {
  width: 90%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 6px solid var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.image-border > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
  aspect-ratio: 1 / 1;
}

.triangle {
  width: 100%;
  height: 50%;
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: -0.4px;
  right: 0;
  left: 0;
}

.content {
  width: 100%;
  height: auto;
  padding: 40px 15px 0;
}

.content-wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.button-container {
  width: 100%;
  height: auto;
  margin: 15px 0;
  display: flex;
  justify-content: center;
}

.button-container > button {
  width: 80%;
  max-width: 300px;
  padding: 20px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  width: 100%;
  height: auto;
  margin: auto 0 10px;
  text-align: center;
}

.footer {
  margin: 30px auto 0;
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1024px) {
  .image-border {
    max-width: 300px;
  }

  .game-image {
    max-width: 550px;
  }

  .content {
    padding: 30px 30px 0;
  }

  .logo-bg {
    max-width: 500px;
  }
}

@media screen and (min-width: 1440px) {
  .image-border {
    max-width: 350px;
  }
}

/* ================= REGISTER ================= */
.form-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.form-control {
  min-width: 95%;
}

div[input-group] > input,
div[input-group] > select,
.span-select {
  width: 100%;
  height: 59px;
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 15px 20px;
  text-align: center;
  background-color: var(--white);
  min-width: 94%;
}

#register input::placeholder {
  text-align: center;
}

#div-select {
  position: relative;
}

.span-select {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  pointer-events: none;
  background-color: transparent !important;
}

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

.custom-checkbox .custom-control-label::before {
  border: 1px solid var(--black);
  border-radius: 0;
}

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

#register input:focus-visible,
#register select:focus-visible,
.custom-control-input:focus ~ .custom-control-label::before {
  outline: none !important;
  box-shadow: none !important;
}

/* ---- radio buttons for single choice answers ---- */
.single-answer .custom-checkbox .custom-control-label::before,
.single-answer .custom-checkbox .custom-control-label::after {
  border-radius: 50% !important;
}

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

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none !important;
  transform: scale(0.6);
}

.multiple-answer .custom-checkbox .custom-control-input ~ .custom-control-label::before {
  border-radius: 0;
}

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

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

  .form-wrap > div {
    flex: 0 0 calc(50% - 8px);
    width: 367px;
  }
}

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

#survey .content-wrap {
  gap: 0;
  max-width: 1500px;
}

.survey__text-section {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.survey__answers-container > div {
  min-width: 250px;
}

.survey__question-text > p,
#quiz p {
  margin-bottom: 25px;
}

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

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

/* ---- DISABLE BOOTSTRAP GREY TEXT WHEN ANSWER IS DISABLED ---- */
.survey__text-section .custom-control-input:disabled ~ .custom-control-label {
  color: unset;
}

@media screen and (max-width: 1023px) {
  .scale-container > .scale > .scale__sector {
    width: 100% !important;
  }
}

/* ----- single and multiple answers ------ */
.single-answer,
.multiple-answer {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#survey .custom-checkbox .custom-control-input ~ .custom-control-label::before {
  background-color: transparent !important;
  border: 1px solid var(--black);
}

#survey
.custom-checkbox
.custom-control-input:checked
~ .custom-control-label::after {
  background-image: none !important;
  transform: scale(0.6);
}

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

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

  .first > div {
    width: calc(100% - 50px);
  }

  .second > div {
    margin-left: 50px;
  }
}

.text-answer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.text-answer textarea {
  width: 100%;
  max-width: 700px;
  height: 400px;
  padding: 10px 20px;
  border: 1px solid var(--black);
  border-radius: 34px;
}

@media screen and (min-width: 1024px) {
  .text-answer textarea {
    max-width: 550px;
    height: 180px;
  }
}

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

.survey__navigation > button {
  margin: 0;
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  padding: 20px 25px;
}

.survey__navigation > #previous-btn {
  order: 4;
}

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

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

  .survey__navigation > #next-btn,
  .survey__navigation > #skip-btn,
  .survey__navigation > #submit-btn {
    order: 2;
  }
}

/* ======================== 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;
  background: var(--black);
  position: absolute;
  left: 22px;
  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: 2px solid var(--black);
  border-radius: 50%;
  background-color: var(--white);
  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__marker::after {
  content: "";
  transition: all 0.1s ease-out;
  border-radius: 50%;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -2px;
  left: -2px;
  transform: scale(0.6);
}

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

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

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

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

@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: 2px;
    width: 88%;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

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

  .scale__sector__button {
    margin: -10px 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__picture-section {
  width: 90% !important;
}

/* ============================ GUESS THE PICTURE ============================ */
.game-info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}

.gtp-tile-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
  border-radius: 50%;
}

.answers-container {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 15px;
  margin: auto;
}

.answer {
  flex: 0 0 100%;
  padding: 20px 25px;
}

@media screen and (min-width: 1024px) {
  .answers-container {
    max-width: 1000px;
  }

  .answer {
    flex: 0 0 48%;
  }
}

/* ====================== QUIZ AND PERSONALITY TEST ====================== */

.arrow-container {
  width: 100%;
  max-width: 650px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  place-content: center space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid;
}

.arrow-bg {
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: inherit;
}

.arrow-bg > svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.answers-container.swipe-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 20px auto 30px;
}

.wrapper {
  width: 100%;
  height: auto;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .swipe-container > a {
    padding: 20px 25px;
  }

  .arrow {
    width: 70px;
    height: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .arrow-container {
    max-width: 750px;
  }
}

/* =============== MEMORY-GAME =============== */
#memory-game .triangle {
  clip-path: polygon(45% 0, 55% 0, 100% 50%, 100% 100%, 0 100%, 0 50%);
  height: 30%;
}

#memory-game .content {
  padding-top: 5px;
}

#card-container {
  width: 90%;
  max-width: 280px;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

#card-container > .game-item {
  flex: 0 0 calc(50% - 5px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.game-item > img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border: 4px solid #fff;
  object-fit: cover;
  border-radius: inherit;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

@media screen and (min-width: 768px) {
  #card-container {
    max-width: 360px;
  }
}

@media screen and (min-width: 1024px) {
  #memory-game .triangle {
    height: 60%;
  }

  #card-container {
    max-width: 900px;
  }

  #card-container > .game-item {
    flex: 0 0 calc(25% - 8px);
  }
}

@media screen and (min-width: 1600px) {
  #card-container {
    max-width: 1100px;
  }
}

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

.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;
  position: relative;
  z-index: 2;
}

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

#spin-the-wheel .legend {
  width: fit-content;
  display: flex;
  flex-direction: column;
}

#spin-the-wheel .legend-element {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

#spin-the-wheel .legend-element span {
  line-height: 1.4;
  min-height: 1rem;
  margin: auto 0 auto 20px;
}

#spin-the-wheel .sector {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 50%;
  flex-shrink: 0;
}

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

#spin-the-wheel .sector > img {
  max-width: 100%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

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

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

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

.wheel-ticker {
  width: 44px;
  height: 44px;
  margin: auto -25px auto auto;
}

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

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

#spin-the-wheel canvas {
  cursor: pointer;
  width: 270px;
  height: 270px;
  transform: rotate(90deg);
  border-radius: 50%;
}

@media screen and (min-width: 410px) {
  #spin-the-wheel .canvas-container {
    width: 380px;
    height: 380px;
  }

  #spin-the-wheel canvas {
    width: 350px;
    height: 350px;
  }

  .wheel-ticker {
    width: 59px;
    height: 59px;
  }

  .wheel-center {
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 768px) {
  #spin-the-wheel .canvas-container {
    width: 480px;
    height: 480px;
  }

  #spin-the-wheel canvas {
    width: 450px;
    height: 450px;
  }
}

@media screen and (min-width: 1024px) {
  #spin-the-wheel .legend {
    max-width: 700px;
    flex-flow: row wrap;
    justify-content: center;
    gap: 40px;
  }

  #spin-the-wheel .legend-element {
    width: 45%;
  }
}

/* ============================ SCRATCH CARD ============================ */
#scratch-card .triangle {
  height: 20%;
}

/* -------------- 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: 290px;
  height: 290px;
  max-width: 455px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.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 var(--text-secondary);
  border-radius: 50%;
  padding: 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 2px 2px rgb(255 255 255 / 100%);
}

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

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

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

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

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

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

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

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

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

/* -------------- 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;
  text-align: start;
}

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

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

@media screen and (min-width: 768px) {
  #scratch-card .legend {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

/* --------------- 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: 6px solid;
  border-radius: 24px;
  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: 250px;
  padding: 20px 25px;
  margin: 0;
}

/* ================================ RTL SUPPORT ================================ */
[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 {
  direction: rtl;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
}

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

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

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

[dir="rtl"] #spin-the-wheel .legend-element span {
  margin: auto 20px auto 0;
}

@media screen and (min-width: 768px) {
  [dir="rtl"] .second>div {
    margin-left: unset;
    margin-right: 50px;
  }
}

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

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

.scratch-card__container .card {
  width: 90px;
  height: 90px;
  margin: auto;
}

@media screen and (min-width: 360px) {
  .scratch-card__container {
    width: 335px;
    height: 335px;
  }

  .scratch-card__container .card {
    width: 105px;
    height: 105px;
  }
}

@media screen and (min-width: 410px) {
  .scratch-card__container {
    width: 380px;
    height: 380px;
  }

  .scratch-card__container .card {
    width: 120px;
    height: 120px;
  }
}

@media screen and (min-width: 600px) {
  .scratch-card__container {
    width: 455px;
    height: 455px;
  }

  .scratch-card__container .card {
    width: 145px;
    height: 145px;
  }
}

/* limit reached */
.limit-container {
  margin: 50px auto auto;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  z-index: 2;
  text-align: center;
}

input, select, textarea {
  text-align: center !important;
  min-height: 48px !important; 
  box-sizing: border-box; 
  line-height: 48px !important; 
  -webkit-appearance: none !important; 
  appearance: none !important;
}

input[type="date"] {
  text-align: center; 
  padding: 0 10px !important; 
  min-height: 58px !important; 
  line-height: 58px !important; 
}

@supports (-webkit-appearance: none) and (appearance: none) {
  input[type="date"] {
      -webkit-appearance: menulist;
      appearance: menulist;
  }
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #00aaff; 
}

@supports (-webkit-touch-callout: none) {
  input[type="date"] {
      text-align: center; 
      height: auto; 
      line-height: normal; 
  }
}