:root {
  --primary-color: #b4ff00;
  --secondary-color: #002340;
  --tertiary-color: #c4dfe9;
}

/* Reset and normalize styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography styles */
/* Font declarations */
/* Montserrat Font Family */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* Yettel Font Family */
@font-face {
  font-family: "Yettel";
  src: url("../fonts/Yettel-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Yettel";
  src: url("../fonts/Yettel-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Yettel";
  src: url("../fonts/Yettel-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
body {
  font-family: "Yettel", Arial, sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  font-size: 75%;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

p {
  margin-bottom: 1rem;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--tertiary-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
body.modal-open {
  padding-right: 0 !important;
}
body #js-scroll-container {
  display: flex;
  flex-direction: column;
}

.body_home {
  background-image: url("../images/home-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.body_home .page_content {
  background-image: url("../images/home-kids-desktop.png");
  background-size: 90%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
.body_home .page_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/parenting/assets/images/background_home.svg");
  background-size: 100% auto;
  background-position: top;
  background-repeat: repeat-y;
  z-index: -1;
}
@media (min-width: 2643px) {
  .body_home .page_content {
    background-size: 60vw;
  }
}
@media (max-width: 1600px) {
  .body_home .page_content {
    background-size: 110%;
    background-image: url("../images/home-kids-desktop.png");
  }
}
@media (max-width: 767px) {
  .body_home .page_content {
    background-image: url("../images/home-kids-mobile-03.png");
    padding-bottom: 0;
    background-size: 100%;
  }
  .body_home .page_content::before {
    background-image: url("/parenting/assets/images/background_mobile-01.svg");
  }
}
@media (max-width: 767px) {
  .body_home .game_container {
    min-height: unset;
  }
}

.page_content:has(.game_container .game_content)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/parenting/assets/images/background_home.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 991px) {
  .page_content:has(.game_container .game_content)::before {
    background-image: url("/parenting/assets/images/background_mobile-01.svg");
  }
}
.page_content:has(.game_container .riddle)::before {
  background-position: center;
  background-image: url("/parenting/assets/images/background_riddles.svg");
}
@media (max-width: 991px) {
  .page_content:has(.game_container .riddle)::before {
    background-image: url("/parenting/assets/images/background_mobile-02.svg");
  }
}

.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border-width: 0;
}

.page_content {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 2rem 0 2rem 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  .page_content {
    padding-top: 1rem;
  }
}
@media (max-width: 991px) {
  .page_content {
    padding-top: 0.7rem;
  }
}

.error_page {
  padding-top: 6rem;
}


.error_page .page-title {
  width: -moz-max-content;
  width: max-content;
  height: auto;
  aspect-ratio: 1/1;
  background: #b4ff00;
  border-radius: 50%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Yettel", sans-serif;
  font-weight: 600;
  font-size: calc(4em + 3vw);
  text-align: center;
}

@media (max-width: 1200px) { 
  .error_page .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .error_page .page-title {
    font-size: calc(3em + 3vw);
  }
}
.error_page h2 {
  font-family: "Yettel", sans-serif;
  font-size: calc(1.5em + 1vw);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .error_page h2 {
    font-size: calc(1.3em + 0.7vw);
  }
}
.error_page p {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767px) {
  .error_page p {
    font-size: 1.25em;
  }
}
.error_page .btn_play a {
  background-color: #b4ff00;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.1;
  max-width: 350px;
  width: 20.5rem;
  padding: 0.5em 1em;
  text-align: center;
}
.error_page .btn_play a:hover {
  color: #002340;
  background-color: #90cc00;
}
@media (max-width: 767px) {
  .error_page .btn_play a {
    font-size: clamp(1.5em, 2vw, 2.5em);
    max-width: 150px;
  }
}



/* Button styles */
button, .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  /* Reset Game Button */
}
button:focus, button:hover, .btn:focus, .btn:hover {
  text-decoration: none;
  outline: 0;
}
button:disabled, button.disabled, .btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}
button.btn-white, .btn.btn-white {
  color: var(--secondary-color);
  background-color: #fff;
}
button.btn-white:hover, button.btn-white:focus, .btn.btn-white:hover, .btn.btn-white:focus {
  background-color: #e6e6e6;
}
button.btn-primary, .btn.btn-primary {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
button.btn-primary:hover, button.btn-primary:focus, .btn.btn-primary:hover, .btn.btn-primary:focus {
  background-color: #00070d;
  border-color: #000203;
  box-shadow: none;
}
button.btn-secondary, .btn.btn-secondary {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
button.btn-secondary:hover, button.btn-secondary:focus, .btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background-color: #90cc00;
  border-color: #89c200;
}
button.btn_start, button.btn_next, button.btn_continue, .btn.btn_start, .btn.btn_next, .btn.btn_continue {
  padding: 0.5rem 2rem;
  font-weight: bold;
  margin: 1rem 0;
}
button.btn-lg, .btn.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25em;
  line-height: 1.5;
  border-radius: 0.3rem;
}
button.reset-button, .btn.reset-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #dc3545; /* Bootstrap danger color */
  color: white;
  border-color: #dc3545;
  padding: 0.5rem 1rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
button.reset-button:hover, button.reset-button:focus, .btn.reset-button:hover, .btn.reset-button:focus {
  background-color: #bd2130;
  border-color: #b51f2e;
}

.btn-close, .btn-close-fake {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  opacity: 1;
}
.btn-close:focus, .btn-close-fake:focus {
  box-shadow: none;
}
@media (max-width: 500px) {
  .btn-close, .btn-close-fake {
    top: 0.75rem;
    right: 0.75rem;
  }
}

.btn-close-fake {
  padding: 1rem;
}

.modal-content {
  background-color: #b4ff00;
  padding: 1.5rem;
  padding-top: 3.5rem;
  border-radius: 20px;
  box-shadow: 4px 14px 20px 7px rgba(51, 71, 79, 0.7411764706);
}
@media (max-width: 500px) {
  .modal-content {
    padding: 0.75rem;
    padding-top: 2rem;
  }
}

.modal-backdrop {
  background-color: rgb(92, 138, 155);
}

.modal-header {
  background-color: #002340;
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 0;
  padding-bottom: 0;
  justify-content: center;
}

.modal-body {
  background-color: #002340;
  color: #C4DFE9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.1;
  padding: 2rem;
  padding-top: 2rem;
  border-radius: 10px;
  max-height: 80vh;
}
.modal-body .modal-title {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}
.modal-body .modal-title img {
  width: 4rem;
  height: 4rem;
}
.modal-body ul {
  list-style: disc;
}
.modal-body a {
  color: #009DDF;
  text-decoration: underline;
}
.modal-body::-webkit-scrollbar {
  width: 12px;
  background: #C4DFE9;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.modal-body::-webkit-scrollbar-thumb {
  background-color: #002340;
}
@media (max-width: 500px) {
  .modal-body {
    padding: 0.5rem 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.modal:not(#completionModal) .modal-footer {
  display: none;
}

#completionModal .modal-footer {
  display: none;
}

#successModal .modal-body {
  display: flex;
  flex-direction: column;
}
#successModal .modal-body .modal-title {
  display: block;
  width: auto;
}
#successModal .modal-body .modal-title img {
  margin-right: 1.5rem;
}
#successModal .modal-body .modal-text {
  width: auto;
  flex: 1;
}
#successModal .modal-body .modal-text a {
  text-decoration: underline;
}
#successModal .modal-body .modal-form {
  width: 100%;
  margin-top: 1.5rem;
}
#successModal .modal-body .modal-form form {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#successModal .modal-body .modal-form .form-control:focus {
  box-shadow: none;
}
#successModal .modal-body .modal-form .form-group {
  width: 70%;
}
#successModal .modal-body .modal-form .form-group label {
  width: 100%;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.25rem;
}
#successModal .modal-body .modal-form .form-group input {
  background-color: #C4DFE9;
  margin: 0;
}
#successModal .modal-body .modal-form .btn-submit {
  color: #002340;
  background-color: #C4DFE9;
  text-transform: uppercase;
  height: -moz-max-content;
  height: max-content;
  border-radius: 5px;
}
#successModal .modal-body .modal-form .btn-submit::hover {
  background-color: #002340;
  color: #C4DFE9;
}
#successModal .modal-body .modal-form .btn-submit:focus {
  box-shadow: none;
}
#successModal .alert-success p {
  margin-bottom: 0;
  color: #002340;
}
@media (max-width: 991px) {
  #successModal .modal-body .row {
    flex-direction: column;
  }
  #successModal .modal-body .row .modal-title {
    margin: 0 auto;
  }
  #successModal .modal-body .row .modal-title img {
    margin-right: 0;
  }
  #successModal .modal-body .modal-form form {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  #successModal .modal-body .modal-form form .form-group {
    width: 90%;
  }
}

/* Form styles */
form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
form input, form select, form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1em;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
form input:focus, form select:focus, form textarea:focus {
  border-color: var(--secondary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 35, 64, 0.25);
}
form input.error, form select.error, form textarea.error {
  border-color: #dc3545;
}
form input.error:focus, form select.error:focus, form textarea.error:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
form input.is-valid, form select.is-valid, form textarea.is-valid {
  border-color: #28a745;
}
form input.is-valid:focus, form select.is-valid:focus, form textarea.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Checkbox styling */
.checkboxes {
  margin-bottom: 1rem;
}
.checkboxes .check_container {
  position: relative;
  margin-right: 0.5rem;
}
.checkboxes .form-check-input {
  position: absolute;
  opacity: 0;
}
.checkboxes .form-check-input:checked + .jqTransformCheckbox {
  background-position: -17px 0;
}
.checkboxes .form-check-label {
  margin-left: 2rem;
  cursor: pointer;
}
.checkboxes .form-check-label a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.checkboxes .form-check-label a:hover {
  text-decoration: none;
}
.checkboxes .jqTransformCheckbox {
  display: block;
  width: 17px;
  height: 17px;
  background: transparent url("/parenting/assets/images/checkbox.png") no-repeat 0 0;
  cursor: pointer;
}
.checkboxes .jqTransformCheckbox.error {
  background-position: -34px 0;
}

header {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 2em 0;
  text-align: center;
}

header.dp-header {
  padding: 0;
  text-align: initial;
}

.quiz-play-page header.dp-header .dp-header__logos > svg {
  flex-shrink: 0;
  max-width: none;
}
header .header_logo {
  display: flex;
  align-items: center;
  padding-left: calc(5% + 2vw);
}
header .header_logo svg {
  height: calc(1rem + 2vw);
  width: auto;
}
header .header_logo svg:first-of-type {
  padding: calc(0.3rem + 0.1vw);
}
header .header_logo svg .cls-1 {
  fill: #b4ff00;
}
header .header_logo svg:nth-of-type(3) .cls-1 {
  fill: #BCFF33;
}
@media (max-width: 991px) {
  header .header_logo {
    padding-left: 0;
  }
  header .header_logo svg:first-of-type {
    padding: 0.25rem;
  }
}
@media (max-width: 767px) {
  header .header_logo .header_divider {
    margin: 0 calc(0.5em + 1vw);
  }
  header .header_logo svg {
    height: calc(1.25rem + 2vw);
  }
}
header .header_divider {
  display: inline-block;
  width: 2px;
  height: calc(2.5em + 1.5vw);
  background-color: var(--primary-color);
  margin: 0 calc(1em + 1vw);
}
header .burger-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1000;
}
header .burger-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 3px 0;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .burger-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  header {
    padding: 0.5rem;
  }
}

.header_row {
  align-items: center;
}

@media (max-width: 991px) {
  .wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
.header_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: calc(2em + 1.5vw);
       column-gap: calc(2em + 1.5vw);
  margin-left: calc(2em + 3vw);
}
.header_menu a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: calc(1.2em + 0.5vw);
}
@media (max-width: 1200px) {
  .header_menu {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .header_menu {
    display: none !important;
  }
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--secondary-color);
  z-index: 2000;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  visibility: hidden;
}
.offcanvas-menu.active {
  right: 0;
  visibility: visible;
}
.offcanvas-menu .offcanvas-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
}
.offcanvas-menu .offcanvas-header .offcanvas-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.offcanvas-menu .offcanvas-header .offcanvas-close:focus {
  outline: none;
}
.offcanvas-menu .offcanvas-body {
  padding: 1rem 0;
}
.offcanvas-menu .offcanvas-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-menu .offcanvas-menu-items li {
  margin: 0;
}
.offcanvas-menu .offcanvas-menu-items li a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offcanvas-menu .offcanvas-menu-items li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.offcanvas-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.offcanvas-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.logo {
  height: calc(3em + 1.5vw);
  width: auto;
  padding: calc(0.3em + 0.1vw);
}

footer:not(.dp-footer) {
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
  z-index: 10;
  background-color: #002340;
}
footer.home {
  padding-top: 1.5rem;
}
footer.home p:not(:last-child) {
  margin-bottom: 1.5rem;
}
footer:not(.dp-footer) p {
  margin: 0;
  font-weight: 300;
  color: #C4DFE9;
  font-size: 1.5em;
  line-height: 1.3;
}
footer:not(.dp-footer) p strong {
  font-weight: 600;
}
footer:not(.dp-footer) p a {
  font-weight: 500;
  font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.3125rem);
}
footer:not(.dp-footer) p a.link {
  color: #b4ff00;
  text-decoration: underline;
}
@media (max-width: 767px) {
  footer:not(.dp-footer) p {
    font-size: 1.25em;
  }
  footer:not(.dp-footer) p a {
    font-size: 1rem;
  }
}

.game_container {
  width: 100%;
  position: relative;
  max-width: 100%;
  min-height: 580px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-play-page .game_container.container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.game_content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.game_content:not(.riddle) {
  padding-left: 208px;
  padding-right: 48px;
  box-sizing: border-box;
}

.game_content__layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.game_content_col--text {
  flex: 0 0 520px;
  width: 520px;
  max-width: 520px;
  box-sizing: border-box;
}

.game_content_col--game.filler_col {
  flex: 0 0 1390px;
  width: 1390px;
  max-width: 1390px;
  min-width: 0;
  margin-left: 5%;
  box-sizing: border-box;
}

@media (max-width: 1600px) {
  .game_content:not(.riddle) {
    padding-left: 120px;
    padding-right: 32px;
  }

  .game_content.game_chat:not(.riddle) {
    padding-left: 24px;
    padding-right: 16px;
  }

  .game_content_col--text {
    flex: 0 0 440px;
    width: 440px;
    max-width: 440px;
  }

  .game_content_col--game.filler_col {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
  }
}

@media (max-width: 1360px) {
  .game_content:not(.riddle) {
    padding-left: 80px;
    padding-right: 24px;
  }

  .game_content__layout {
    gap: 40px;
  }

  .game_content_col--text {
    flex: 0 0 380px;
    width: 380px;
    max-width: 380px;
  }
}

.game_content.cards_game .next {
  display: none;
}
@media (max-width: 575px) {
  .game_content .game_content_col .step_text_content {
    padding: 0 1em;
  }
}
.game_content .game_content_col .step_text_content .level_title {
  font-size: calc(1.9em + 1vw);
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .game_content .game_content_col .step_text_content .level_title {
    font-size: calc(1.8em + 0.5vw);
  }
}
.game_content .game_content_col .step_text_content .game_title {
  font-size: calc(1.8em + 1vw);
  font-weight: 600;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .game_content .game_content_col .step_text_content .game_title {
    font-size: calc(1.8em + 0.5vw);
    margin-bottom: calc(1.5rem + 1vw);
  }
}
.game_content .game_content_col .step_text_content p {
  font-size: calc(1.4em + 0.2vw);
  line-height: 1.2;
  max-width: 517px;
}
@media (max-width: 991px) {
  .game_content .game_content_col .step_text_content p {
    max-width: 100%;
    font-size: 15px;
  }
}
.game_content .game_content_col.filler_col {
  position: relative;
  z-index: 2;
}
.game_content.game_image .game_content_col--text .step_text_content {
  pointer-events: none;
}

.game_content.riddle {
  margin-top: 10em;
}
.game_content.riddle .game_content_col .step_text_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game_content.riddle .game_content_col .step_text_content .question_image {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .game_content.riddle .game_content_col .step_text_content .question_image {
    width: 3rem;
    height: 3rem;
  }
}
.game_content.riddle .game_content_col .step_text_content p {
  font-size: calc(1em + 0.9vw);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 1vw;
}
@media (min-width: 2643px) {
  .game_content.riddle .game_content_col .step_text_content p {
    font-size: 41px;
  }
}
@media (max-width: 480px) {
  .game_content.riddle .game_content_col .step_text_content p {
    font-size: calc(0.9em + 0.5vw);
    margin-bottom: 1vw;
  }
}
.game_content.riddle .game_content_col .step_content .riddle_buttons {
  gap: 3.5rem;
  margin: 5em 0;
}
@media (max-width: 767px) {
  .game_content.riddle .game_content_col .step_content .riddle_buttons {
    gap: 2rem;
    margin: 1rem 0;
  }
}
@media (max-width: 480px) {
  .game_content.riddle .game_content_col .step_content .riddle_buttons {
    gap: 1rem;
  }
}
.game_content.riddle .game_content_col .step_content .riddle_buttons button {
  text-transform: uppercase;
  font-size: calc(1.4em + 0.6vw);
  font-weight: 500;
  width: calc(120px + 6vw);
  border-radius: 8px;
  padding: 0.2em 1em;
}
@media (max-width: 480px) {
  .game_content.riddle .game_content_col .step_content .riddle_buttons button {
    font-size: calc(1.3em + 0.3vw);
    margin-bottom: 1rem;
  }
}
.game_content.riddle .game_content_col .step_content .riddle_buttons button.btn_answer {
  color: #C4DFE9;
}
@media (max-width: 991px) {
  .game_content.riddle {
    margin-top: 5em;
  }
}
.game_content.welcome .next, .game_content.welcome .reset {
  display: none;
}
.game_content.register .game_content__layout {
  align-items: flex-start;
}

.game_content.register .game_content_col--game.filler_col {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.game_content.register .step_content {
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.game_content.register .register-panel {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.game_content.register .register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  padding: 2rem 2.25rem;
  background-color: #fff;
  border: 2px solid #002340;
  border-radius: 0.5rem;
  box-shadow: 8px 8px 0 rgba(0, 35, 64, 0.12);
}

.game_content.register .register-form__title {
  margin: 0;
  font-size: calc(1.6em + 0.5vw);
  font-weight: 700;
  color: #002340;
  text-align: center;
  text-transform: uppercase;
}

.game_content.register .register-form__label {
  font-size: calc(0.95em + 0.2vw);
  font-weight: 600;
  color: #002340;
  margin-bottom: -0.5rem;
}

.game_content.register .register-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: calc(1em + 0.15vw);
  color: #002340;
  background-color: #d9ecf3;
  border: 2px solid #002340;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.game_content.register .register-form__input:focus {
  border-color: #b4ff00;
  box-shadow: 0 0 0 2px rgba(180, 255, 0, 0.35);
}

.game_content.register .register-form__input.error {
  border-color: #c0392b;
}

.game_content.register .register-form .checkboxes {
  margin: 0;
}

.game_content.register .register-form .checkboxes .form-check-label {
  font-size: calc(0.85em + 0.15vw);
  line-height: 1.35;
  color: #002340;
  margin-left: 0.5rem;
}

.game_content.register .register-form .checkboxes .form-check-label a {
  color: #002340;
  font-weight: 600;
  text-decoration: underline;
}

.game_content.register .register-form__error {
  min-height: 1.25rem;
  margin: 0;
  font-size: calc(0.9em + 0.1vw);
  color: #c0392b;
  text-align: center;
}

.game_content.register .register-form__success {
  color: #002340;
  font-weight: 600;
}

.game_content.register .register-form__submit {
  position: relative;
  align-self: center;
  margin-top: 0.5rem;
  min-width: 280px;
  border: solid 2px #002340;
  background-color: #b4ff00;
  border-radius: 0.5rem;
  color: #002340;
  text-transform: uppercase;
  padding: 0.85rem 3.5rem 0.85rem 1.5rem;
  font-size: calc(0.85em + 0.35vw);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.game_content.register .register-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.game_content.register .register-form__submit:not(:disabled):hover {
  background-color: #c8ff33;
}

.game_content.register .register-form__submit::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.25rem solid #002340;
}

@media (max-width: 991px) {
  .game_content.register .game_content__layout {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .game_content.register .game_content_col--game.filler_col {
    width: 100%;
    max-width: 100%;
  }

  .game_content.register .step_content,
  .game_content.register .register-panel {
    max-width: 100%;
  }

  .game_content.register .register-form {
    padding: 1.5rem 1.25rem;
  }

  .game_content.register .register-form__submit {
    min-width: 100%;
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .game_content {
    margin-top: 3rem;
  }
}
@media (max-width: 991px) {
  .game_content {
    margin-top: 0;
  }
}

.step_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.step_content .numbers_nav {
  margin: 0;
  font-size: 2em;
}
@media (max-width: 767px) {
  .step_content {
    flex-wrap: nowrap;
  }
}

.progress_buttons {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

.quiz-play-page .game_content_col--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quiz-play-page .game_content_col--text .progress_buttons {
  justify-content: flex-start;
  width: auto;
  max-width: 383px;
  margin-top: 32px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.quiz-play-page .game_content_col--text .progress_buttons .next {
  pointer-events: auto;
}
.progress_buttons .next {
  position: relative;
  border: solid 2px #002340;
  background-color: transparent;
  border-radius: 0.5rem;
  color: #002340;
  text-transform: uppercase;
  padding-right: 4rem;
  font-size: calc(0.8em + 0.4vw);
  font-weight: 600;
  padding-right: calc(2em + 1vw);
}
@media (max-width: 991px) {
  .progress_buttons .next {
    padding-right: calc(3em + 1vw);
  }
}
@media (max-width: 480px) {
  .progress_buttons .next {
    font-size: calc(1.2em + 0.2vw);
    padding-right: calc(2.8rem + 0.5vw);
  }
}
.progress_buttons .next::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.25rem solid #002340;
  transition: all 0.3s ease;
}
@media (max-width: 1360px) {
  .progress_buttons .next::after {
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 1rem solid #002340;
    right: 1.25rem;
  }
}
.progress_buttons .next:hover {
  background-color: #002340;
  color: #fff;
}
.progress_buttons .next:hover::after {
  border-left-color: #fff;
}

.welcome .progress_buttons {
  display: none;
}

.reset {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
}

.steps_progress {
  position: absolute;
  right: 3em;
  top: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}
.steps_progress .step {
  width: 30px;
  height: 30px;
  position: relative;
}
.steps_progress .step::before {
  content: "";
  font-size: 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/parenting/assets/images/star_blank.svg);
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.steps_progress .step.active::before {
  background-image: url(/parenting/assets/images/star_filled.svg);
}
@media (max-width: 991px) {
  .steps_progress {
    right: 1rem;
    gap: 6px;
  }
  .steps_progress .step {
    width: 1rem;
    height: 1rem;
  }
  .steps_progress .step::before {
    width: 1rem;
    height: 1rem;
  }
}

.game_image .image_selectable_section {
  position: relative;
  width: 800px;
  height: 500px;
  margin-bottom: 4em;
  z-index: 1;
}
.game_image .image_selectable_section .image_selectable {
  margin-left:-12vw;
  width: 48vw;
  height: 50vh;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  z-index: 1;
}
.game_image .image_selectable_section .image_selectable_1 {
  background-image: url("/parenting/assets/images/game1-1.jpg");
  background-size: cover;
  background-position: center top;
}
.game_image .image_selectable_section .image_selectable_2 {
  background-image: url("/parenting/assets/images/game1-3.jpg");
  background-size: cover;
  background-position: center top;
}
.game_image .image_selectable_section .image_selectable_3 {
  background-image: url("/parenting/assets/images/game1-2.jpg");
  background-size: cover;
  background-position: center top;
}
.game_content.choose_one_truth .game_content_col.filler_col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.game_content.choose_one_truth .choose_one_section {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.choose_one_truth .truth_round {
  width: 100%;
}

.choose_one_truth .truth_round__headline {
  margin: 0 0 1.5rem;
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.25;
  color: #002340;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.choose_one_truth .truth_images {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.choose_one_truth .truth_pick {
  flex: 0 0 365px;
  width: 365px;
  max-width: 365px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.choose_one_truth .truth_pick__image {
  width: 28vw;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: inset 0 0 0 3px #d7d9d9;
}

.choose_one_truth .truth_pick__image img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.choose_one_truth .choose_one_answer {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choose_one_truth .truth_pick label {
  display: block;
  width: 100%;
  max-width: 293px;
  cursor: pointer;
  margin: 0;
}

.choose_one_truth .truth_pick__btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #002340;
  border: none;
  border-radius: 8px;
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.choose_one_truth .truth_pick label:hover .truth_pick__btn {
  background: #003a6b;
}

.choose_one_truth .choose_one_answer:checked + label .truth_pick__btn {
  background: #b4ff00;
  color: #002340;
  box-shadow: 4px 4px 0 #002340;
}

.level-completion__badge-icon {
  display: block;
  width: 179px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}

.game_content.game_fortress .game_content_col.filler_col {
  display: flex;
  justify-content: center;
}

.fortress_game {
  height: 50vh;
  width: 52vw;
  max-width: 100%;
}

.fortress_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.fortress_brick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  padding: 0.75rem 0.65rem;
  border: none;
  border-radius: 6px;
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.35vw, 0.95rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: transform 0.12s ease, opacity 0.12s ease, box-shadow 0.12s ease;
}

.fortress_brick:active {
  cursor: grabbing;
}

.fortress_brick.dragging {
  opacity: 0.45;
  cursor: grabbing;
}

.fortress_brick__line {
  display: block;
}

.fortress_brick--tone-green {
  background: #b4ff00;
  color: #002340;
}

.fortress_brick--tone-dark {
  background: #002340;
  color: #fff;
}

.fortress_brick:hover:not(.is-placed) {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(0, 35, 64, 0.25);
}

.fortress_brick.is-placed {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.fortress_wall {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fortress_wall__row {
  display: grid;
  grid-template-columns: 0.72fr 1.34fr 1.34fr 0.88fr;
  gap: 0.55rem;
  align-items: stretch;
}

.fortress_wall__row:last-child {
  grid-template-columns: 0.88fr 1.34fr 1.34fr 0.72fr;
}

.fortress_wall__piece,
.fortress_wall__slot {
  min-height: 4.75rem;
  border-radius: 6px;
}

.fortress_wall__piece--deco {
  background: #5f6f7c;
}

.fortress_wall__piece--narrow {
  min-height: 4.75rem;
}

.fortress_wall__piece--medium {
  min-height: 4.75rem;
}

.fortress_wall__piece--wide {
  min-height: 4.75rem;
}

.fortress_wall__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.65rem;
  background: #b8c9d6;
  text-align: center;
  transition: box-shadow 0.12s ease, outline 0.12s ease;
}

.fortress_wall__slot.draggable-hover {
  outline: 3px solid #002340;
  outline-offset: 2px;
  box-shadow: 0 4px 0 rgba(0, 35, 64, 0.2);
}

.fortress_wall__slot.is-filled {
  background: #9eb5c4;
}

.fortress_wall__placeholder {
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.fortress_wall__label {
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.6rem, 1.1vw, 0.8rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #002340;
}

@media (max-width: 767px) {
  .fortress_grid {
    grid-template-columns: 1fr;
  }

  .fortress_wall__row,
  .fortress_wall__row:last-child {
    grid-template-columns: 0.65fr 1fr 1fr 0.75fr;
    gap: 0.4rem;
  }

  .fortress_brick {
    min-height: 5.5rem;
  }

  .fortress_wall__piece,
  .fortress_wall__slot {
    min-height: 3.75rem;
  }
}

.game_content.choose_one_profile .game_content_col.filler_col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.game_content.choose_one_profile .choose_one_section {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.choose_one_profile .profile_game__layout {
  display: flex;
  gap: 65px;
  align-items: flex-start;
  width: 1435px;
  max-width: 100%;
}

.choose_one_profile .profile_game__feed {
  flex: 0 1 44%;
  width: 44%;
  max-width: 44%;
  max-height: 663px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 35, 64, 0.1);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #9eb5c4 #f0f4f7;
  scrollbar-width: thin;
}

.choose_one_profile .profile_game__feed::-webkit-scrollbar {
  width: 8px;
}

.choose_one_profile .profile_game__feed::-webkit-scrollbar-thumb {
  background: #9eb5c4;
  border-radius: 4px;
}

.choose_one_profile .profile_feed img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
}

.choose_one_profile .profile_game__answers {
  flex: 0 0 622px;
  width: 622px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.choose_one_profile .profile_question {
  height: 19vh;
  margin: 0;
  padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(0.85rem, 1.6vw, 1.15rem) clamp(0.95rem, 1.6vw, 1.2rem);
  background: #002340;
  border-radius: 6px;
  color: #fff;
}

.choose_one_profile .profile_question__title {
  margin: 0 0 0.75rem;
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  line-height: 1.35;
  color: #fff;
}

.choose_one_profile .profile_question input.profile_answer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.choose_one_profile .profile_question label {
  height: 4.4vh;
  display: block;
  margin: 0 0 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 4px;
  background: #c4dfe9;
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  line-height: 1.3;
  text-align: center;
  color: #002340;
  cursor: pointer;
  transition: background 0.12s ease, box-shadow 0.12s ease;
}

.choose_one_profile .profile_question label:last-of-type {
  margin-bottom: 0;
}

.choose_one_profile .profile_question input.profile_answer:checked + label {
  background: #b4ff00;
  color: #002340;
  box-shadow: 2px 2px 0 #002340;
}

.choose_one_profile .profile_question label:hover {
  background: #d4ebf3;
}

.choose_one_profile .profile_question input.profile_answer:checked + label:hover {
  background: #b4ff00;
}

.game_content.game_chat .game_content_col.filler_col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1 1 0;
  width: auto;
  max-width: none;
  min-width: 0;
  overflow: hidden;
}

.game_content.game_chat .choose_one_section {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.game_content.game_chat:not(.riddle) {
  padding-left: 48px;
  padding-right: 32px;
}

.game_content.game_chat .game_content__layout {
  min-width: 0;
}

.chat_game {
  --chat-scale: 1.444;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.chat_round {
  width: 100%;
  min-width: 0;
}

.chat_game__layout {
  display: flex;
  gap: calc(48px * var(--chat-scale));
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.chat_game__scene {
  flex: 0 0 636px;
  width: 636px;
  min-width: 0;
  max-width: 636px;
}

.chat_game__choices {
  flex: 0 1 42%;
  width: auto;
  min-width: calc(300px * var(--chat-scale));
  max-width: calc(622px * var(--chat-scale));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(20px * var(--chat-scale));
  margin-top: calc(4.5rem * var(--chat-scale));
  align-self: flex-start;
  box-sizing: border-box;
}

.chat_round__headline {
  margin: 0 0 calc(1rem * var(--chat-scale));
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(1.5rem * var(--chat-scale));
  line-height: 1.2;
  color: #002340;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.chat_round__headline-line {
  display: block;
}

.chat_panel {
  width: 28vw;
  height: 600px;
  min-height: 600px;
  padding: calc(1.25rem * var(--chat-scale)) calc(1.5rem * var(--chat-scale)) calc(1.35rem * var(--chat-scale));
  background: #d9ecf3;
  border: calc(2px * var(--chat-scale)) solid #002340;
  border-radius: calc(8px * var(--chat-scale));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat_panel__intro {
  flex: 0 0 auto;
  margin: 0 0 calc(0.65rem * var(--chat-scale));
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(1rem * var(--chat-scale));
  line-height: 1.35;
  color: #002340;
}

.chat_bubble--image {
  flex: 0 1 auto;
  min-height: 0;
  padding: 0;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.chat_bubble--image img {
  display: block;
  width: 100%;
  max-height: calc(150px * var(--chat-scale));
  object-fit: cover;
  border-radius: calc(6px * var(--chat-scale));
  border: calc(2px * var(--chat-scale)) solid #002340;
}

.chat_bubble {
  flex: 0 0 auto;
  margin: 0 0 calc(0.5rem * var(--chat-scale));
  padding: calc(0.75rem * var(--chat-scale)) calc(1rem * var(--chat-scale));
  max-width: 100%;
  background: #fff;
  border: 1px solid #a8c5d4;
  border-radius: calc(12px * var(--chat-scale));
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: calc(0.95rem * var(--chat-scale));
  line-height: 1.4;
  color: #002340;
  box-shadow: none;
  box-sizing: border-box;
}

/* Stacked chat bubbles — flat inner-left corners between messages */
.chat_panel .chat_bubble[id$="_1"]:not(.chat_bubble--image) {
  border-bottom-left-radius: 0;
}

.chat_panel .chat_bubble[id$="_2"] {
  border-top-left-radius: 0;
}

.chat_panel .chat_bubble--image[id$="_1"] img {
  border-bottom-left-radius: 0;
}

.chat_bubble.chat_bubble--image {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.chat_panel__question {
  flex: 0 0 auto;
  margin: calc(0.65rem * var(--chat-scale)) 0 calc(0.5rem * var(--chat-scale));
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(1rem * var(--chat-scale));
  line-height: 1.35;
  color: #002340;
}

.chat_drop_zone {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.65rem * var(--chat-scale)) calc(1rem * var(--chat-scale));
  background: #c5dce6;
  border-radius: calc(6px * var(--chat-scale));
  text-align: center;
  transition: box-shadow 0.12s ease, outline 0.12s ease, background 0.12s ease;
  box-sizing: border-box;
}

.chat_drop_zone.draggable-hover {
  outline: calc(2px * var(--chat-scale)) solid #002340;
  outline-offset: calc(2px * var(--chat-scale));
  box-shadow: 0 calc(3px * var(--chat-scale)) 0 rgba(0, 35, 64, 0.15);
  background: #e8f4fa;
}

.chat_drop_zone.is-filled {
  background: #dcecf4;
  align-items: center;
}

/* Round 3: image + intro — compact content so drop zone matches answer buttons */
.chat_round_3 .chat_panel__intro {
  font-size: calc(0.86rem * var(--chat-scale));
  line-height: 1.25;
  margin-bottom: calc(0.4rem * var(--chat-scale));
}

.chat_round_3 .chat_bubble.chat_bubble--image {
  flex: 1 1 auto;
  align-self: center;
  width: 94%;
  max-width: 94%;
  min-height: 0;
  margin: 0 auto calc(0.35rem * var(--chat-scale));
  padding: 0;
  background: transparent;
  border: none;
}

.chat_round_3 .chat_bubble.chat_bubble--image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(145px * var(--chat-scale));
  object-fit: cover;
  border-radius: calc(6px * var(--chat-scale));
  border: calc(2px * var(--chat-scale)) solid #002340;
}

.chat_round_3 .chat_bubble:not(.chat_bubble--image) {
  font-size: calc(0.84rem * var(--chat-scale));
  padding: calc(0.45rem * var(--chat-scale)) calc(0.7rem * var(--chat-scale));
  margin-bottom: calc(0.35rem * var(--chat-scale));
}

.chat_round_3 .chat_panel__question {
  font-size: calc(0.9rem * var(--chat-scale));
  margin: calc(0.35rem * var(--chat-scale)) 0 calc(0.35rem * var(--chat-scale));
}

.chat_round_3 .chat_drop_zone {
  flex: 0 0 auto;
  min-height: calc(4.85rem * var(--chat-scale));
  max-height: calc(4.85rem * var(--chat-scale));
}

.chat_round_3 .chat_drop_zone__placeholder {
  font-size: clamp(calc(2.15rem * var(--chat-scale)), 6vw, calc(3.65rem * var(--chat-scale)));
}

.chat_drop_zone__placeholder {
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(calc(3.25rem * var(--chat-scale)), 9vw, calc(5.5rem * var(--chat-scale)));
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  pointer-events: none;
  user-select: none;
}

.chat_drop_zone__answer {
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(calc(0.68rem * var(--chat-scale)), 1.15vw, calc(0.82rem * var(--chat-scale)));
  line-height: 1.3;
  text-transform: uppercase;
  color: #002340;
}

.chat_drop_zone__answer .chat_choice__line {
  display: block;
}

.chat_choice {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(6.5rem * var(--chat-scale));
  padding: calc(1rem * var(--chat-scale)) calc(1.1rem * var(--chat-scale));
  background: #002340;
  border: none;
  border-radius: calc(4px * var(--chat-scale));
  font-family: "Yettel", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(0.8125rem * var(--chat-scale));
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: opacity 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
  box-sizing: border-box;
  word-break: break-word;
}

.chat_choice:hover:not(.is-placed) {
  box-shadow: 0 calc(4px * var(--chat-scale)) 0 rgba(0, 35, 64, 0.25);
}

.chat_choice:active {
  cursor: grabbing;
}

.chat_choice.dragging {
  opacity: 0.45;
}

.chat_choice.is-placed {
  opacity: 0.35;
  cursor: default;
}

.chat_choice.is-selected {
  outline: calc(3px * var(--chat-scale)) solid #b4ff00;
  outline-offset: calc(2px * var(--chat-scale));
  box-shadow: calc(4px * var(--chat-scale)) calc(4px * var(--chat-scale)) 0 #002340;
}

.chat_choice__line {
  display: block;
}

@media (max-width: 991px) {
  .chat_game {
    --chat-scale: 1;
  }

  .chat_game__layout {
    flex-direction: column;
    gap: 24px;
  }

  .chat_game__scene {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .chat_panel {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .chat_drop_zone {
    flex: 0 0 auto;
    min-height: 8.5rem;
  }

  .chat_game__choices {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 1600px) {
  .game_image .image_selectable_section {
    width: 600px;
    height: 375px;
  }
}
@media (max-width: 767px) {
  .game_image .image_selectable_section {
    width: 400px;
    height: 250px;
  }
  .game_image .image_selectable_section .img_part.selected_right::before, .game_image .image_selectable_section .img_part.selected_wrong::before {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: -2.5px;
    left: -2.5px;
    border: solid 6px #b4ff00;
  }
}
@media (max-width: 430px) {
  .game_image .image_selectable_section {
    width: 300px;
    height: 187.5px;
  }
  .game_image .image_selectable_section .img_part.selected_right::before, .game_image .image_selectable_section .img_part.selected_wrong::before {
    width: calc(100% + 7px);
    height: calc(100% + 7px);
  }
}

.img_part {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  cursor: pointer;
  z-index: 2;
  box-sizing: border-box;
}
.img_part:nth-child(1), .img_part:nth-child(2) {
  border-bottom: solid 4px #cdc6c6;
  border-right: solid 4px #cdc6c6;
}
.img_part:nth-child(3) {
  border-bottom: solid 4px #cdc6c6;
}
.img_part:nth-child(4), .img_part:nth-child(5) {
  border-right: solid 4px #cdc6c6;
}
@media (max-width: 767px) {
  .img_part {
    border-width: 2px !important;
  }
}
.img_part.selected_right::before, .img_part.selected_wrong::before {
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  top: -5px;
  left: -5px;
  border: solid 10px #b4ff00;
  z-index: 1;
}

.password_parts .parts-list .Draggable-item.disabled {
  text-transform: lowercase;
}

.image_with_fakepopup {
  position: relative;
}
@media (max-width: 767px) {
  .image_with_fakepopup > img {
    max-width: none !important;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.image_with_fakepopup .fakepopup {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 66%;
  height: auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  border-radius: 2rem;
  padding: 2rem;
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .image_with_fakepopup .fakepopup {
    width: 75%;
    border-radius: 1.5rem;
    padding: 1.5rem;
    gap: 0.8rem;
  }
}
@media (max-width: 767px) {
  .image_with_fakepopup .fakepopup {
    width: 70%;
    top: -5%;
    border-radius: 1.2rem;
    padding: 1.2rem;
    gap: 0.6rem;
  }
}
@media (max-width: 480px) {
  .image_with_fakepopup .fakepopup {
    width: 65%;
    top: -3%;
    border-radius: 1rem;
    padding: 1rem;
    gap: 0.4rem;
  }
}
.image_with_fakepopup .fakepopup img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .image_with_fakepopup .fakepopup img {
    max-width: 90%;
    width: 100px;
  }
}
@media (max-width: 767px) {
  .image_with_fakepopup .fakepopup img {
    max-width: none;
    width: 140%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .image_with_fakepopup .fakepopup img {
    max-width: 70%;
  }
}
.image_with_fakepopup .fakepopup .warning_text {
  color: red;
  font-size: 2.6em;
  margin: 0;
}
@media (max-width: 1200px) {
  .image_with_fakepopup .fakepopup .warning_text {
    font-size: 2em;
  }
}
@media (max-width: 767px) {
  .image_with_fakepopup .fakepopup .warning_text {
    font-size: 1.6em;
  }
}
@media (max-width: 480px) {
  .image_with_fakepopup .fakepopup .warning_text {
    font-size: 1.2em;
  }
}
.image_with_fakepopup .fakepopup p {
  text-align: center;
  font-size: 1.6em;
  line-height: 1.2;
  color: #656565;
  margin: 0;
}
@media (max-width: 1200px) {
  .image_with_fakepopup .fakepopup p {
    font-size: 1.3em;
  }
}
@media (max-width: 767px) {
  .image_with_fakepopup .fakepopup p {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .image_with_fakepopup .fakepopup p {
    font-size: 0.8em;
  }
}
.image_with_fakepopup .fakepopup .btn_fake {
  background-color: #009DDF;
  font-weight: 300;
  font-size: 1.8em;
  padding: 1.8rem 3rem;
  line-height: 1;
  border-radius: 40px;
  border: none;
}
@media (max-width: 1200px) {
  .image_with_fakepopup .fakepopup .btn_fake {
    font-size: 1.4em;
    padding: 1.4rem 2.4rem;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .image_with_fakepopup .fakepopup .btn_fake {
    font-size: 1.1em;
    padding: 1rem 1.8rem;
    border-radius: 25px;
  }
}
@media (max-width: 480px) {
  .image_with_fakepopup .fakepopup .btn_fake {
    font-size: 0.9em;
    padding: 0.8rem 1.4rem;
    border-radius: 20px;
  }
}
.image_with_fakepopup .fakepopup_img {
  position: absolute;
  top: -10%;
  right: 50%;
  transform: translateX(50%);
  width: 60%;
  height: 60%;
}
@media (max-width: 767px) {
  .image_with_fakepopup .fakepopup_img {
    width: 60vw;
    min-width: 248px;
  }
}
@media (max-width: 991px) {
  .image_with_fakepopup {
    margin-top: 2.5rem;
  }
}

.clickbait_section .video_title {
  font-size: 2.5em;
  line-height: 1;
  color: #fff;
}
.clickbait_section .image_section {
  position: relative;
}
.clickbait_section .image_section .play_btn_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 30%;
}
.clickbait_section .image_section #clickbait_video {
  position: absolute;
  top: 9.5%;
  height: 64%;
  left: 19.5%;
  aspect-ratio: 103/76;
  -o-object-fit: cover;
     object-fit: cover;
}
.clickbait_section .clickbait_buttons {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin: 2em 0;
}
.clickbait_section .clickbait_buttons button {
  font-size: 2em;
  font-weight: 500;
  width: 300px;
  border-radius: 8px;
}
@media (max-width: 500px) {
  .clickbait_section .clickbait_buttons button {
    font-size: 1.5em;
    width: 212px;
  }
}
@media (max-width: 991px) {
  .clickbait_section .clickbait_buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Choose One Game Styles */
.choose_one_section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.choose_one_section .image_section:not(.image_with_fakepopup) {
  overflow: hidden;
  border-radius: 4%;
  box-shadow: inset 0px 0px 0px 3px #d7d9d9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.image_section {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .image_section {
    margin-bottom: 0 !important;
  }
}
.image_section img {
  max-width: 100%;
  position: relative;
  z-index: -1;
}

.answers_section {
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .answers_section .answer_col {
    max-width: calc(80% - 1.9rem) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .answers_section {
    position: relative !important;
    height: auto !important;
    row-gap: 0;
    margin-right: 50% !important;
    transform: translateX(50%);
  }
  .answers_section .answer_col {
    max-width: 100% !important;
  }
}
@media (max-width: 500px) {
  .answers_section {
    max-width: 100% !important;
  }
  .answers_section .answer_col label {
    font-size: 1rem !important;
  }
}

/* Custom Radio Buttons that look like Checkboxes */
.choose_one_answer {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.choose_one_1 .choose_one_section {
  position: relative;
  overflow: visible;
}
.choose_one_1 .choose_one_section .image_section {
  margin-bottom: 320px;
}
.choose_one_1 .choose_one_section .answers_section {
  position: absolute;
  width: 180%;
  height: 300px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
.choose_one_1 .choose_one_section .answers_section .answer_col {
  max-width: calc(33.3333333333% - 2.4rem);
}
.choose_one_1 .choose_one_section .answers_section label {
  display: flex;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 0.6rem 1rem 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
  line-height: 1.3;
}
.choose_one_1 .choose_one_section .answers_section label .profile_icon {
  position: absolute;
  top: -0.5rem;
  left: -4rem;
  width: 5rem;
  height: 5rem;
}
@media (max-width: 1200px) {
  .choose_one_1 .choose_one_section .answers_section {
    width: 100%;
    left: 55%;
    flex-direction: column;
    align-content: center;
    gap: 0.5rem;
  }
}
@media (max-width: 575px) {
  .choose_one_1 .choose_one_section .answers_section {
    left: 60%;
    width: 95%;
  }
  .choose_one_1 .choose_one_section .answers_section .label {
    padding-left: 2rem;
  }
}
.choose_one_1 .choose_one_section input[type=radio]:checked + label {
  border: solid 8px #b4ff00;
  padding: calc(0.6rem - 8px) calc(1rem - 8px) calc(0.8rem - 8px) calc(1rem - 8px);
}
.choose_one_1 .choose_one_section input[type=radio]:checked + label .profile_icon {
  left: calc(-4rem - 8px);
  top: calc(-0.5rem - 8px);
}

.choose_one_2 .choose_one_section {
  max-width: 900px;
}
.choose_one_2 .choose_one_section .step_content {
  margin-top: 11rem;
  margin-bottom: 2rem;
}
.choose_one_2 .choose_one_section .answers_section label {
  padding-left: 4rem;
  font-size: 2em;
  text-wrap: nowrap;
}
.choose_one_2 .choose_one_section .answers_section label::before {
  border: none;
  border-bottom: 0;
  height: 3rem;
  width: 3rem;
  background-color: #fff;
}
.choose_one_2 .choose_one_section .answers_section label:after {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 1.25rem;
  height: 2rem;
  border: solid #002340;
  border-width: 0 5px 5px 0;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 991px) {
  .choose_one_2 .choose_one_section .answers_section .col-6 {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .choose_one_2 .choose_one_section .answers_section label {
    padding-left: 4rem !important;
  }
}
@media (max-width: 500px) {
  .choose_one_2 .choose_one_section .answers_section {
    margin-top: 0;
  }
  .choose_one_2 .choose_one_section .answers_section label {
    margin-right: 0 !important;
    transform: unset;
    font-size: 1rem !important;
    padding-left: 2.5rem !important;
  }
  .choose_one_2 .choose_one_section .answers_section label::before {
    height: 2rem !important;
    width: 2rem !important;
  }
  .choose_one_2 .choose_one_section .answers_section label:after {
    left: 0.5rem !important;
    width: 1rem !important;
    height: 1.5rem !important;
  }
}

.col-6 {
  position: relative;
  padding: 10px;
}
.col-6 label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.col-6 label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 4px;
}
.col-6 label:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.col-6:hover label:before {
  background-color: #cce5ff;
}

.choose_one_answer:checked ~ label:before {
  background-color: #2196f3;
}
.choose_one_answer:checked ~ label:after {
  display: block;
}

.game_notification {
  background-color: #fff3cd;
  color: #856404;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  border-left: 4px solid #ffc107;
}

/* Riddle Game Styles */
@media (min-width: 768px) {
  .riddle .game_content_col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.riddle .riddle-container {
  margin-bottom: 20px;
}
.riddle .riddle-container .riddle-words {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.riddle .riddle-container .riddle-words .riddle-word {
  display: flex;
  margin-right: 15px;
  margin-bottom: 10px;
}
.riddle .riddle-container .riddle-words .riddle-word .letter-input {
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
.riddle .riddle-container .riddle-words .riddle-word .letter-input:last-child {
  margin-right: 0;
}
.riddle .riddle-container .riddle-words .riddle-word .letter-input:disabled {
  background-color: #e9ecef;
  color: #495057;
}
.riddle .riddle-container .riddle-buttons {
  display: flex;
  gap: 10px;
}
.riddle_answer_section {
  margin-top: 20px;
}
.riddle_buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}
.riddle_success {
  margin-top: 15px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
.riddle_error {
  margin-top: 15px;
  padding: 10px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}

.riddle-inputs {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4em;
       column-gap: 4em;
  row-gap: 2em;
  justify-content: center;
  margin-bottom: 20px;
}

.word-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .word-container {
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .word-container {
    gap: 0.4rem;
  }
}

.letter-input {
  width: 1em;
  height: 3.5rem;
  border-bottom: 4px solid var(--secondary-color);
  border-radius: 0;
  text-align: center;
  font-size: 3em;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .letter-input {
    width: 2.5rem;
    height: 3rem;
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  .letter-input {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.5em;
    border-width: 3px;
  }
}
.letter-input.correct {
  background-color: transparent;
  border-color: #28a745;
}
.letter-input.incorrect {
  background-color: transparent;
  border-color: #dc3545;
}
.letter-input:disabled {
  opacity: 1;
  color: var(--secondary-color);
}

.btn_hint, .btn_answer {
  min-width: 120px;
}

/* Cards Component Styles */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.card {
  position: relative;
  width: 150px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.card__image {
  width: 100%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  padding: 0.75rem;
}
.card__title {
  font-family: "Yettel", sans-serif;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 0.25rem;
}
.card__description {
  font-size: 0.85em;
  color: #666;
}

/* Draggable card styles */
.draggable-card {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.draggable-card.dragging {
  opacity: 0.8;
  cursor: grabbing;
}

/* Card drop zones */
.card-drop-zone {
  min-height: 200px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}
.card-drop-zone.active {
  border-color: #4CAF50;
  background-color: rgba(76, 175, 80, 0.1);
}
.card-drop-zone.correct {
  border-color: #4CAF50;
  border-style: solid;
  background-color: rgba(76, 175, 80, 0.05);
}

/* Grid system */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100vw;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(1 / 12 * 100%);
  max-width: calc(1 / 12 * 100%);
}

.col-2 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(2 / 12 * 100%);
  max-width: calc(2 / 12 * 100%);
}

.col-3 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(3 / 12 * 100%);
  max-width: calc(3 / 12 * 100%);
}

.col-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(4 / 12 * 100%);
  max-width: calc(4 / 12 * 100%);
}

.col-5 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(5 / 12 * 100%);
  max-width: calc(5 / 12 * 100%);
}

.col-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(6 / 12 * 100%);
  max-width: calc(6 / 12 * 100%);
}

.col-7 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(7 / 12 * 100%);
  max-width: calc(7 / 12 * 100%);
}

.col-8 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(8 / 12 * 100%);
  max-width: calc(8 / 12 * 100%);
}

.col-9 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(9 / 12 * 100%);
  max-width: calc(9 / 12 * 100%);
}

.col-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(10 / 12 * 100%);
  max-width: calc(10 / 12 * 100%);
}

.col-11 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(11 / 12 * 100%);
  max-width: calc(11 / 12 * 100%);
}

.col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 calc(12 / 12 * 100%);
  max-width: calc(12 / 12 * 100%);
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 calc(1 / 12 * 100%);
    max-width: calc(1 / 12 * 100%);
  }
  .col-sm-2 {
    flex: 0 0 calc(2 / 12 * 100%);
    max-width: calc(2 / 12 * 100%);
  }
  .col-sm-3 {
    flex: 0 0 calc(3 / 12 * 100%);
    max-width: calc(3 / 12 * 100%);
  }
  .col-sm-4 {
    flex: 0 0 calc(4 / 12 * 100%);
    max-width: calc(4 / 12 * 100%);
  }
  .col-sm-5 {
    flex: 0 0 calc(5 / 12 * 100%);
    max-width: calc(5 / 12 * 100%);
  }
  .col-sm-6 {
    flex: 0 0 calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
  .col-sm-7 {
    flex: 0 0 calc(7 / 12 * 100%);
    max-width: calc(7 / 12 * 100%);
  }
  .col-sm-8 {
    flex: 0 0 calc(8 / 12 * 100%);
    max-width: calc(8 / 12 * 100%);
  }
  .col-sm-9 {
    flex: 0 0 calc(9 / 12 * 100%);
    max-width: calc(9 / 12 * 100%);
  }
  .col-sm-10 {
    flex: 0 0 calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }
  .col-sm-11 {
    flex: 0 0 calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
  }
  .col-sm-12 {
    flex: 0 0 calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 calc(1 / 12 * 100%);
    max-width: calc(1 / 12 * 100%);
  }
  .col-md-2 {
    flex: 0 0 calc(2 / 12 * 100%);
    max-width: calc(2 / 12 * 100%);
  }
  .col-md-3 {
    flex: 0 0 calc(3 / 12 * 100%);
    max-width: calc(3 / 12 * 100%);
  }
  .col-md-4 {
    flex: 0 0 calc(4 / 12 * 100%);
    max-width: calc(4 / 12 * 100%);
  }
  .col-md-5 {
    flex: 0 0 calc(5 / 12 * 100%);
    max-width: calc(5 / 12 * 100%);
  }
  .col-md-6 {
    flex: 0 0 calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
  .col-md-7 {
    flex: 0 0 calc(7 / 12 * 100%);
    max-width: calc(7 / 12 * 100%);
  }
  .col-md-8 {
    flex: 0 0 calc(8 / 12 * 100%);
    max-width: calc(8 / 12 * 100%);
  }
  .col-md-9 {
    flex: 0 0 calc(9 / 12 * 100%);
    max-width: calc(9 / 12 * 100%);
  }
  .col-md-10 {
    flex: 0 0 calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }
  .col-md-11 {
    flex: 0 0 calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
  }
  .col-md-12 {
    flex: 0 0 calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 calc(1 / 12 * 100%);
    max-width: calc(1 / 12 * 100%);
  }
  .col-lg-2 {
    flex: 0 0 calc(2 / 12 * 100%);
    max-width: calc(2 / 12 * 100%);
  }
  .col-lg-3 {
    flex: 0 0 calc(3 / 12 * 100%);
    max-width: calc(3 / 12 * 100%);
  }
  .col-lg-4 {
    flex: 0 0 calc(4 / 12 * 100%);
    max-width: calc(4 / 12 * 100%);
  }
  .col-lg-5 {
    flex: 0 0 calc(5 / 12 * 100%);
    max-width: calc(5 / 12 * 100%);
  }
  .col-lg-6 {
    flex: 0 0 calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
  .col-lg-7 {
    flex: 0 0 calc(7 / 12 * 100%);
    max-width: calc(7 / 12 * 100%);
  }
  .col-lg-8 {
    flex: 0 0 calc(8 / 12 * 100%);
    max-width: calc(8 / 12 * 100%);
  }
  .col-lg-9 {
    flex: 0 0 calc(9 / 12 * 100%);
    max-width: calc(9 / 12 * 100%);
  }
  .col-lg-10 {
    flex: 0 0 calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }
  .col-lg-11 {
    flex: 0 0 calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
  }
  .col-lg-12 {
    flex: 0 0 calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 calc(1 / 12 * 100%);
    max-width: calc(1 / 12 * 100%);
  }
  .col-xl-2 {
    flex: 0 0 calc(2 / 12 * 100%);
    max-width: calc(2 / 12 * 100%);
  }
  .col-xl-3 {
    flex: 0 0 calc(3 / 12 * 100%);
    max-width: calc(3 / 12 * 100%);
  }
  .col-xl-4 {
    flex: 0 0 calc(4 / 12 * 100%);
    max-width: calc(4 / 12 * 100%);
  }
  .col-xl-5 {
    flex: 0 0 calc(5 / 12 * 100%);
    max-width: calc(5 / 12 * 100%);
  }
  .col-xl-6 {
    flex: 0 0 calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
  .col-xl-7 {
    flex: 0 0 calc(7 / 12 * 100%);
    max-width: calc(7 / 12 * 100%);
  }
  .col-xl-8 {
    flex: 0 0 calc(8 / 12 * 100%);
    max-width: calc(8 / 12 * 100%);
  }
  .col-xl-9 {
    flex: 0 0 calc(9 / 12 * 100%);
    max-width: calc(9 / 12 * 100%);
  }
  .col-xl-10 {
    flex: 0 0 calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }
  .col-xl-11 {
    flex: 0 0 calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
  }
  .col-xl-12 {
    flex: 0 0 calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
/* Home page specific styles */
.home_content {
  position: relative;
  padding-top: 100px;
  /* Media Queries */
}
.home_content .text_top {
  position: absolute;
  top: -2rem;
  right: 15%;
  font-size: clamp(0.9em, 1.2vw, 0.8em + 0.6vw);
  line-height: 1.3;
  font-weight: 500;
  background-image: url("/parenting/assets/images/circle.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  text-align: center;
  padding: 2rem 4.5% 12rem 4.5%;
  max-width: 700px;
  width: 33vw;
}
.home_content .home_title {
  font-family: "Yettel", sans-serif;
  font-weight: 600;
  font-size: calc(5em + 3vw);
  margin-bottom: calc(0.3rem + 0.2vw);
  text-align: center;
}
.home_content .home_text {
  font-family: "Yettel", sans-serif;
  font-size: calc(0.25em + 1vw);
  text-align: center;
  max-width: calc(300px + 15vw);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto calc(0.25rem + 1vw);
}
.home_content .home_text:last-child {
  margin-bottom: calc(2.5rem + 1vw);
}
@media (max-width: 991px) {
  .home_content .home_text:last-child {
    margin-bottom: calc(2rem + 1vw);
  }
}
.home_content .header_divider {
  display: inline-block;
  width: 2px;
  height: calc(2.5em + 1.5vw);
  background-color: var(--secondary-color);
  margin: 0 calc(1em + 1vw);
}
.home_content .logos {
  position: absolute;
  top: 0;
  left: calc(2% + 1vw);
  display: flex;
  align-items: center;
}
.home_content .logos svg {
  height: calc(1rem + 2vw);
  width: auto;
}
.home_content .logos svg:first-of-type {
  padding: calc(0.3rem + 0.1vw);
}
.home_content .logos svg .cls-1 {
  fill: #002340;
}
.home_content .logos svg:nth-of-type(3) .cls-1 {
  fill: #224CFF;
}
.home_content .home_page_link {
  position: absolute;
  top: 0;
  right: calc(2% + 1vw);
  width: auto;
}
.home_content .home_page_link .btn {
  font-size: 1.2rem;
}
.home_content .home_page_link .btn:hover {
  color: #002340;
  background-color: #fff;
}
.home_content .games_links {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.home_content .games_links .game_rules {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: calc(2.5rem + 1vw);
}
.home_content .games_links .game_rules input {
  margin-top: -0.3rem;
  margin-right: 0.5rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.home_content .games_links .game_rules label {
  font-weight: 500;
  text-decoration: underline;
  font-size: 1.4em;
  line-height: 1.3;
}
.home_content .games_links .game_col {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-bottom: 2em;
}
.home_content .games_links .game_col .start_game {
  font-size: clamp(1.3125rem, 1.0982rem + 0.3348vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 225px;
  width: -moz-min-content;
  width: min-content;
  min-width: calc(50px + 10vw);
  padding: 0.3em 0.75em;
  text-align: center;
  margin-bottom: 0.5em;
}
.home_content .games_links .game_col .game_description {
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.2;
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 1.7rem;
}
@media (min-width: 1921px) {
  .home_content .games_links .game_col .start_game {
    min-width: 225px;
  }
}
@media (max-width: 1440px) {
  .home_content .games_links .game_col .start_game {
    min-width: calc(75px + 9vw);
  }
}
@media (max-width: 1360px) {
  .home_content .text_top {
    padding-top: 1.6rem;
    margin-bottom: 18%;
  }
}
@media (max-width: 991px) {
  .home_content {
    padding-top: 15vw;
  }
  .home_content .text_top {
    position: relative;
    text-align: center;
    margin: 0 auto;
    right: unset;
    top: unset;
    width: 66%;
    aspect-ratio: unset;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 15px;
    padding: 10%;
    padding-top: 5%;
    margin-bottom: 15%;
  }
  .home_content .home_page_link .btn {
    font-size: 0.875rem;
  }
  .home_content .games_links {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .home_content .home_title {
    margin-top: -15%;
    position: relative;
  }
  .home_content .text_top {
    width: 80%;
    font-size: 14px;
    padding-bottom: 15%;
  }
  .home_content .home_title {
    margin-top: -10%;
  }
  .home_content .home_text {
    font-size: calc(1em + 0.7vw);
    max-width: calc(280px + 10vw);
  }
  .home_content .game_rules {
    font-size: 0.75em;
  }
  .home_content .game_rules input {
    width: 1.25rem;
  }
  .home_content .games_links .game_col .start_game {
    font-size: clamp(1.5em, 2vw, 2.5em);
    max-width: 200px;
    min-width: 16vw;
    padding: 0.5rem 0.75rem;
  }
  .home_content .games_links .game_col .game_description {
    font-size: 1.25em;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .home_content {
    padding-top: 17vw;
    padding-bottom: 5vw;
  }
  .home_content .games_links {
    flex-direction: column;
  }
  .home_content .games_links .game_col:nth-child(2) .game_description {
    margin-bottom: 2rem;
  }
  .home_content .games_links .game_rules input {
    margin-top: -0.05rem;
    width: 1.25rem;
    height: 1.25rem;
  }
  .home_content .games_links .game_col:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .home_content {
    padding-top: 30vw;
  }
  .home_content .home_title {
    margin-top: -17%;
    font-size: calc(3em + 3vw);
  }
  .home_content .text_top {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    font-size: 14px;
    padding-top: 5%;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 23%;
    margin-bottom: 15%;
  }
}
@media (max-width: 381px) {
  .home_content {
    padding-top: 35vw;
  }
  .home_content .home_title {
    margin-top: -10%;
  }
  .home_content .text_top {
    font-size: 12px;
  }
  .home_content .home_page_link {
    position: absolute;
    top: calc(5% + 5vw);
    right: 50%;
    transform: translateX(50%);
  }
  .home_content .home_text {
    font-size: 15px;
    max-width: 90%;
  }
  .home_content .logos {
    width: 100%;
    justify-content: center;
    left: calc(-5% + 1vw);
  }
  .home_content .games_links .game_col {
    margin-bottom: 1em;
  }
  .home_content .games_links .game_col .start_game {
    font-size: 1em;
    max-width: 125px;
  }
  .home_content .games_links .game_col .game_description {
    font-size: 1em;
  }
}
@media (min-width: 2643px) {
  .home_content .text_top {
    padding: 2rem 4.5% 24rem 4.5%;
    max-width: 1024px;
  }
}

.prizes_page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/parenting/assets/images/background_home.svg");
  background-size: 100% auto;
  background-position: top;
  background-repeat: repeat-y;
  z-index: -1;
}

.page-title {
  font-size: calc(1.2em + 0.8vw);
  font-weight: 600;
  text-align: center;
  max-width: 700px;
  width: 31vw;
  margin: 0 auto;
  margin-bottom: 0.85em;
}
@media (max-width: 991px) {
  .page-title {
    width: 70vw;
  }
}

.prizes-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.prizes-content .prizes_group_title {
  width: auto;
  margin: 0 auto;
  text-align: center;
  font-size: calc(1.5em + 0.4vw);
  padding-left: 1em;
  padding-right: 1em;
  background-color: #002340;
  color: #b4ff00;
  border-radius: 4px;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.prizes-content .prizes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
}
@media (max-width: 500px) {
  .prizes-content .prizes {
    width: 95%;
  }
}
.prizes-content .prizes .prizes_row {
  margin-bottom: 1em;
  justify-content: center;
}
.prizes-content .prizes .prizes_row .prize {
  padding: 0;
}
.prizes-content .prizes.small_prizes {
  margin-bottom: 2.5em;
}
.prizes-content .prizes.small_prizes .prize {
  display: flex;
}
.prizes-content .prizes.small_prizes .prize img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .prizes-content .prizes.small_prizes {
    margin-bottom: 10vw;
  }
}
.prizes-content .prizes.big_prizes {
  margin-bottom: 3.5em;
}
.prizes-content .prizes.big_prizes .prize {
  max-width: 563px;
}
.prizes-content .prizes .prizes_desc {
  font-size: calc(1.1em + 0.3vw);
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .prizes-content .prizes .prizes_row {
    row-gap: 1rem;
  }
}
@media (max-width: 767px) {
  .prizes-content .prizes .prizes_group_title {
    margin-bottom: 1rem;
  }
}
.prizes-content .how_to_participate {
  width: 80%;
  margin-bottom: 3.5em;
}
@media (max-width: 500px) {
  .prizes-content .how_to_participate {
    width: 95%;
  }
}
.prizes-content .how_to_participate .prizes_group_title {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  max-width: 90%;
}
.prizes-content .how_to_participate .smpl_list {
  margin-bottom: 2.5em;
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
}
.prizes-content .how_to_participate .smpl_list .smpl_list_item {
  font-size: calc(1.4em + 0.3vw);
  line-height: 1.3;
}
.prizes-content .how_to_participate .smpl_list .smpl_list_item .num {
  position: relative;
  padding-left: 0.25em;
  padding-right: 0.25em;
  margin-right: 1rem;
}
.prizes-content .how_to_participate .smpl_list .smpl_list_item .num::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1.25);
  left: 0;
  height: 100%;
  width: 100%;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid #b4ff00;
  z-index: -1;
}
.prizes-content .how_to_participate .wishes {
  font-size: calc(1.4em + 0.3vw);
  line-height: 1.3;
  font-weight: 700;
}
.prizes-content .btn_play {
  margin-bottom: 1em;
}
.prizes-content .btn_play a {
  width: auto;
  margin: 0 auto;
  font-size: calc(1.5em + 0.4vw);
  padding-left: 3em;
  padding-right: 3em;
  background-color: #b4ff00;
  color: #002340;
  border-radius: 4px;
  line-height: 1;
  padding-top: 0.35em;
  padding-bottom: 0.35em;
  text-transform: uppercase;
}
.prizes-content .btn_play a:hover {
  background-color: #002340;
  color: #b4ff00;
}

/* Quiz play: fit header + game + footer in one viewport (no page scroll) */
.quiz-play-page {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

.quiz-play-page header.dp-header {
  --dp-header-padding-y: clamp(0.65em, 1.2vh, 1.35em);
  overflow: hidden;
}

.quiz-play-page header.dp-header .dp-header__inner {
  padding-top: var(--dp-header-padding-y);
  padding-bottom: var(--dp-header-padding-y);
}

.quiz-play-page .page_content {
  flex: 1 1 auto;
  position: relative;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.quiz-play-page .page_content:has(.game_container .game_content)::before {
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
}

.quiz-play-page .game_container.container {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quiz-play-page .steps_progress {
  top: 0.25rem;
  right: clamp(1rem, 2vw, 3em);
}

.quiz-play-page .game_content {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: clamp(0.35rem, 1vh, 1.25rem);
  height: auto;
  max-height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.quiz-play-page .game_content:not(.riddle) {
  padding-left: clamp(80px, 10vw, 160px);
  padding-right: clamp(16px, 2vw, 40px);
}

.quiz-play-page .game_content.game_chat:not(.riddle) {
  padding-left: clamp(16px, 2vw, 32px);
  padding-right: clamp(12px, 1.5vw, 24px);
}

.quiz-play-page .game_content__layout {
  flex: 1 1 auto;
  min-height: 0;
  gap: clamp(20px, 2.5vw, 48px);
  align-items: stretch;
}

.quiz-play-page .game_content_col--text {
  flex: 0 1 min(420px, 36vw);
  width: min(420px, 36vw);
  max-width: min(420px, 36vw);
  min-height: 0;
}

.quiz-play-page .game_content_col--game.filler_col {
  flex: 1 1 0;
  width: auto;
  max-width: none;
  min-width: 0;
  margin-left: clamp(2%, 4vw, 5%);
}

.quiz-play-page .game_content .game_content_col .step_text_content .game_title {
  width: 20vw;
  margin-bottom: clamp(0.35rem, 0.8vh, 0.75rem);
}

.quiz-play-page .game_content .game_content_col .step_text_content p {
  line-height: 1.25;
  max-width: 100%;
}

.quiz-play-page .game_content_col--text .progress_buttons {
  margin-top: 7vh;
}

.quiz-play-page .progress_buttons .next {
  font-size: clamp(0.7rem, 1vh + 0.3rem, 0.9rem);
  padding-top: 0.45em;
  padding-bottom: 0.45em;
}

.quiz-play-page .game_image .image_selectable_section {
  width: min(720px, 100%);
  height: min(420px, 38vh);
  max-height: 38vh;
  margin-bottom: 0;
}

.quiz-play-page .choose_one_truth .truth_round__headline {
  text-align: start;
  margin-left: -9vw;
  margin-bottom: clamp(0.5rem, 1vh, 1rem);
  font-size: clamp(0.95rem, 1.6vh + 0.35rem, 1.35rem);
}

.quiz-play-page .choose_one_truth .truth_images {
  margin-left: -2vw;
  width: 100%;
  gap: 18vw;
}

.quiz-play-page .choose_one_truth .truth_pick {
  flex: 1 1 0;
  width: auto;
}

.quiz-play-page .choose_one_truth .truth_pick__image {
  margin-bottom: 0.5rem;
}

.quiz-play-page .choose_one_truth .truth_pick__image img {
  width: 100%;
  object-fit: cover;
}

.quiz-play-page .fortress_brick {
  font-size: clamp(0.6rem, 1vh + 0.2rem, 0.8rem);
}

.quiz-play-page .fortress_grid {
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.quiz-play-page .game_content.game_chat {
  --chat-scale: clamp(0.72, 0.55 + 0.35 * ((100vh - 520px) / 280), 1.05);
}

.quiz-play-page .chat_panel {
  height: 50vh;
  min-height: min(280px, 30vh);
}

.quiz-play-page .chat_game__scene {
  flex: 0 1 min(520px, 42vw);
  width: min(520px, 42vw);
  max-width: min(520px, 42vw);
}

.quiz-play-page .chat_game__choices {
  margin-left: 7vw;
  width: 50vw;
  margin-top: 3vh;
  height:50vh;
}

.quiz-play-page .choose_one_profile .profile_game__layout {
  width: 100%;
  gap: clamp(20px, 2.5vw, 48px);
}

.quiz-play-page .choose_one_profile .profile_game__feed {
  max-height: 60vh;
}

.quiz-play-page .choose_one_profile .profile_game__answers {
  flex: 1 1 0;
  width: auto;
  max-width: min(520px, 48%);
}

.quiz-play-page .dp-footer {
  flex-shrink: 0;
  padding: clamp(0.65rem, 1.2vh, 1.1rem) 0 clamp(0.45rem, 0.8vh, 0.75rem);
}

.quiz-play-page .dp-footer .dp-footer__inner {
  width: calc(100% - clamp(2rem, 5vw, 6.5rem));
}

.quiz-play-page .dp-footer .dp-footer__top {
  gap: clamp(1.5rem, 3vw, 4rem);
  margin-bottom: clamp(0.5rem, 1vh, 1rem);
}

.quiz-play-page .dp-footer .dp-footer__logo svg {
  height: clamp(2.25rem, 4vh, 2.75rem);
}

.quiz-play-page .dp-footer .dp-footer__nav a {
  font-size: clamp(0.8rem, 1.1vh + 0.25rem, 0.95rem);
}

.quiz-play-page .dp-footer .dp-footer__sub-nav a {
  font-size: clamp(0.7rem, 0.95vh + 0.2rem, 0.8rem);
}

.quiz-play-page .dp-footer .dp-footer__about-lead {
  font-size: clamp(10px, 1.25vh + 0.2rem, 12px);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.quiz-play-page .dp-footer .dp-footer__about-partner {
  font-size: clamp(9px, 1.1vh + 0.15rem, 11px);
  margin-bottom: 0.25rem;
}

.quiz-play-page .dp-footer .dp-footer__about-text {
  font-size: clamp(9px, 1.05vh + 0.15rem, 11px);
  line-height: 1.3;
  width: min(82%, 52rem);
}

.quiz-play-page .dp-footer .dp-footer__legal {
  padding-top: clamp(0.4rem, 0.7vh, 0.65rem);
}

.quiz-play-page .dp-footer .dp-footer__legal a {
  font-size: clamp(0.65rem, 0.9vh + 0.15rem, 0.75rem);
}

@media (max-height: 820px) {
  .quiz-play-page .game_image .image_selectable_section {
    height: min(320px, 34vh);
    max-height: 34vh;
  }

  .quiz-play-page .chat_panel {
    height: min(380px, 36vh);max-height: 36vh;
  }
}

@media (max-height: 700px) {
  .quiz-play-page header.dp-header .dp-header__nav {
    display: none;
  }
}

.modal-dialog.modal-dialog-centered.modal-dialog-scrollable.modal-lg.level-completion-dialog {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: calc(100% - 2rem);
}

.level-completion-modal.modal-content {
  width: 91%;
  height: 66%;
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 35, 64, 0.18);
  padding: 0;
  overflow: hidden;
}

.level-completion-modal .modal-header {
  background: transparent;
  border: 0;
  padding: 1.25rem 1.5rem 0;
  justify-content: flex-end;
  min-height: 0;
}

.level-completion-modal .modal-header .btn-close {
  position: static;
  filter: none;
  opacity: 1;
  width: 1.125rem;
  height: 1.125rem;
  padding: 0;
  margin: 0;
}

.level-completion-body {
  background: #fff;
  color: #002340;
  padding: 0 2.5rem 2.5rem;
  max-height: none;
}

.level-completion-body .modal-title {
  display: none;
}

.level-completion {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.level-completion__hero {
  flex: 0 0 38%;
  max-width: 443px;
  align-self: center;
}

.level-completion__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.level-completion__content {
  flex: 1;
  min-width: 0;
  font-family: "Yettel", "Montserrat", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.45;
}

.level-completion__intro {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.35;
  font-weight: 400;
}

.level-completion__intro strong {
  font-weight: 700;
}

.level-completion__badge {
  text-align: center;
  margin: 0;
}

.level-completion__shield {
  display: block;
  width: 179px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.level-completion__reward {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}

.level-completion__reward span {
  display: block;
}

.level-completion__lead {
  margin: 0;
  font-size: 1.0625rem;
}

.level-completion__tips {
  margin: 0 0 1.25rem;
}

.level-completion__tip {
  position: relative;
  margin: 0;
  padding-left: 1.125rem;
  font-size: 1.0625rem;
  line-height: 1.45;
}

.level-completion-modal .level-completion__content p {
  margin: 0;
}

.level-completion__tip::before {
  content: "∙";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.level-completion__tip-label {
  font-weight: 700;
}

.level-completion__footer {
  margin: 0;
  font-weight: 700;
  font-size: 1.0625rem;
}

@media (max-width: 991px) {
  .level-completion {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .level-completion__hero {
    flex-basis: auto;
    max-width: 280px;
    width: 100%;
  }

  .level-completion__content {
    width: 100%;
  }

  .level-completion__intro {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .level-completion-body {
    padding: 0 1.25rem 1.5rem;
  }
}