@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/open-sans/open-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Crete Round";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/crete-round/crete-round-latin.woff2") format("woff2");
}
.plain-txt, #welcome .welcome-content .search-win .content .txt {
  color: #000;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

button:not(.product-hotspot) {
  display: block;
  position: relative;
  padding: 8px 24px;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  border-radius: 22px;
  border: none;
  background: #244b8a;
  overflow: hidden;
}
button:not(.product-hotspot) span {
  position: relative;
  z-index: 1;
}
button:not(.product-hotspot):before {
  content: "";
  width: calc(100% + 10px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -120%;
  background: linear-gradient(90deg, rgba(91, 166, 44, 0.8) 0%, rgba(167, 226, 76, 0.8) 87.13%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
  transition: 0.3s;
}
button:not(.product-hotspot):hover:before {
  left: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #000;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: none;
}

.products-game {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #244b8a;
}

#bg-products {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/*
Sections
*/
#welcome {
  width: 100%;
  height: 100svh;
  opacity: 1;
  transition: opacity 220ms ease;
}
#welcome .welcome-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: "Crete Round", serif;
  color: #4e850c;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  transition: 0.6s;
  overflow: visible;
}
#welcome .welcome-content:after {
  content: "";
  position: fixed;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  min-width: 798px;
  min-height: 374px;
  background: url("../img/hero-card.svg") no-repeat;
  background-size: contain;
}
#welcome .welcome-content .game-title {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 572px;
  height: 262px;
}
#welcome .welcome-content .intro {
  width: 500px;
  text-align: center;
}
#welcome .welcome-content .search-win {
  width: 286px;
  margin-top: 80px;
  border-radius: 20px;
  border: 3px solid #FFF;
  padding: 6px;
}
#welcome .welcome-content .search-win .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px;
  border-radius: 13px;
  background-color: white;
}
#welcome .welcome-content .search-win .content h2 {
  margin: 0;
  color: #5BA62C;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 133.333% */
}
#welcome .green-wall,
#welcome .blue-wall {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(91, 166, 44, 0.8) 0%, rgba(167, 226, 76, 0.8) 87.13%);
  clip-path: polygon(0 0, calc(50% + 80px) 0, calc(50% - 80px) 100%, 0% 100%);
  pointer-events: none;
  transition: 2s;
}
#welcome .blue-wall {
  clip-path: polygon(calc(50% + 80px) 0, 100% 0%, 100% 100%, calc(50% - 80px) 100%);
  background: rgba(36, 75, 138, 0.9);
}
#welcome .prizes {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 521px;
  height: 331px;
  background-image: url("../img/prizes.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  transition: 0.6s;
}
#welcome.closed .green-wall {
  left: -100%;
}
#welcome.closed .blue-wall {
  left: 100%;
}
#welcome.closed .welcome-content,
#welcome.closed .prizes {
  opacity: 0;
}

.products-stage.is-game-active #welcome {
  pointer-events: none;
}

#interface-guide {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(36, 75, 138, 0.58);
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.products-stage.is-showing-interface-guide #interface-guide {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.interface-guide__content {
  position: relative;
  display: block;
  width: min(100%, 390px);
  min-height: 640px;
  border: 3px solid #fff;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  overflow: hidden;
  transform: translateY(100vh);
  transition: opacity 280ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.22, 1);
  backdrop-filter: blur(6px);
}
.interface-guide__content p {
  position: absolute;
  left: 50%;
  width: min(100%, 281px);
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  transform: translateX(-50%);
}
.interface-guide__content p:nth-of-type(1) {
  top: 26.4%;
}
.interface-guide__content p:nth-of-type(2) {
  top: 49.5%;
}
.interface-guide__content p:nth-of-type(3) {
  top: 74%;
}
.interface-guide__content button {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: 199px;
  transform: translateX(-50%);
}

.interface-guide__content--mobile {
  display: none;
}

.interface-guide__content--desktop {
  display: block;
}

.products-stage.is-showing-interface-guide .interface-guide__content {
  opacity: 1;
  transform: translateY(0);
}

.interface-guide__icon {
  position: absolute;
  left: 50%;
  top: 13%;
  width: 58px;
  height: auto;
  transform: translateX(-50%);
}
.interface-guide__icon:nth-of-type(2) {
  top: 36%;
  width: 77px;
  height: 72px;
}
.interface-guide__icon:nth-of-type(3) {
  top: 61%;
  width: 77.224px;
  height: 71.452px;
}

#game-interface {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}
#game-interface .mobile-result-actions {
  display: none;
}
#game-interface .mobile-result-item-list {
  display: none;
}
#game-interface .footer {
  position: fixed;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: linear-gradient(90deg, #5BA62C 0%, #A7E24C 100%);
  transform: translateY(100%);
  transition: transform 0.6s;
  transition-delay: 0.4s;
}
#game-interface .footer .desc {
  flex: 0 0 minmax(250px, 350px);
  color: #FFF;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
#game-interface .footer .selected-items {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  column-gap: 18px;
  row-gap: 10px;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 24px;
}
#game-interface .footer .selected-items__summary {
  display: none;
}
#game-interface .footer .selected-items__panel-title {
  display: none;
}
#game-interface .footer .selected-items__divider,
#game-interface .footer .selected-item--available {
  display: none;
}
#game-interface .footer .selected-items__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 18px;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#game-interface .footer .result-info__badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 45px;
  padding: 0 0 0 22px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
#game-interface .footer .result-info__icon {
  width: 47px;
  height: 47px;
  margin: -1px -1px -1px 14px;
}
#game-interface .footer .result-info__text {
  padding-right: 60px;
  margin: 0;
  width: 100%;
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}
#game-interface .footer .result-info__hint {
  width: 100%;
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
#game-interface .footer .selected-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 8px 20px 8px 14px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
#game-interface .footer .selected-item--available {
  display: none;
  border: 0;
}
#game-interface .footer .selected-item--available:before {
  display: none;
}
#game-interface .footer .selected-item__remove {
  position: absolute;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 12px;
  text-transform: lowercase;
}
#game-interface .footer .selected-item__remove:before {
  display: none;
}
#game-interface .footer .footer-actions {
  position: relative;
  min-width: 204px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
#game-interface .footer .footer-actions [hidden] {
  display: none;
}
#game-interface .footer .footer-actions .view-answers {
  display: none;
  top: -100svh;
  transition: 0.5s;
  transition-delay: 0.4s;
}
#game-interface .footer .footer-actions .results-form {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: -1200px;
  width: 286px;
  border-radius: 20px;
  border: 3px solid #FFF;
  padding: 6px;
  transition: 0.6s ease-in-out;
}
#game-interface .footer .footer-actions .results-form.open {
  bottom: -10px;
}
#game-interface .footer .footer-actions .results-form.is-toggling-collapse {
  transition: none;
}
#game-interface .footer .footer-actions .results-form .results-form__collapse {
  position: absolute;
  left: -18px;
  top: -18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}
#game-interface .footer .footer-actions .results-form .results-form__expand {
  display: none;
  min-width: 200px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
}
#game-interface .footer .footer-actions .results-form .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 13px;
  background-color: white;
}
#game-interface .footer .footer-actions .results-form .content .score {
  position: absolute;
  top: -76px;
  left: 10px;
  width: 276px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  text-shadow: 3px 3px 2px #4e850c;
  background-image: url("../img/score.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
#game-interface .footer .footer-actions .results-form .content .score div {
  transform: rotate(-6deg);
  margin-top: 14px;
}
#game-interface .footer .footer-actions .results-form .content h3 {
  color: #5ba62c;
}
#game-interface .footer .footer-actions .results-form .content p {
  margin-top: 0;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
#game-interface .footer .footer-actions .results-form .content p a {
  color: black;
  transition: 0.2s;
}
#game-interface .footer .footer-actions .results-form .content p a:hover {
  color: #5ba62c;
}
#game-interface .footer .footer-actions .results-form .content form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
#game-interface .footer .footer-actions .results-form .content form input {
  width: 100%;
  height: 45px;
  padding: 8px 18px;
  border: 2px solid #244b8a;
  border-radius: 999px;
  color: #000;
  background: #fff;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  outline: none;
}
#game-interface .footer .footer-actions .results-form .content form input::placeholder {
  color: #7e7e7e;
  opacity: 1;
}
#game-interface .footer .footer-actions .results-form .content form input:focus-visible {
  border-color: #5ba62c;
  box-shadow: 0 0 0 3px rgba(91, 166, 44, 0.2);
}
#game-interface .footer .footer-actions .results-form .content form.has-validation-error input:invalid {
  padding-right: 40px;
  border-color: #FF120D;
  background-color: #FFE1E1;
  background-image: url("../img/input-error.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 47px 41px;
  box-shadow: none;
}
#game-interface .footer .footer-actions .results-form .content form button {
  width: 100%;
  margin-top: 10px;
  padding-right: 16px;
  padding-left: 16px;
}
#game-interface .footer .footer-actions .results-form .content form button:disabled {
  cursor: default;
  opacity: 0.68;
}
#game-interface .footer .footer-actions .results-form .content form .form-status {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  z-index: -1;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 8px 16px 16px 16px;
  border-radius: 12px 12px 0 0;
  color: #fff;
  background: #FF120D;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  transform: translateY(-100%);
}
#game-interface .footer .footer-actions .results-form .content form .form-status[data-status=success] {
  display: flex;
  background: #5ba62c;
}
#game-interface .footer .footer-actions .results-form .content form .form-status[data-status=error] {
  display: flex;
}
#game-interface .footer .footer-actions .results-form .content:has(form.has-validation-error) .score {
  display: none;
}
#game-interface .footer .footer-actions .results-form .content .submission-complete {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 15px 10px 0;
}
#game-interface .footer .footer-actions .results-form .content .submission-complete h3 {
  margin: 0 0 4px;
  color: #5ba62c;
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
}
#game-interface .footer .footer-actions .results-form .content .submission-complete p {
  max-width: 200px;
  margin: 0 0 20px;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
#game-interface .footer .footer-actions .results-form .content .submission-complete button {
  width: 100%;
  max-width: 200px;
}
#game-interface .footer .footer-actions .results-form.is-collapsed {
  width: auto;
  border: 0;
  padding: 0;
  transition: none;
}
#game-interface .footer .footer-actions .results-form.is-collapsed .results-form__collapse,
#game-interface .footer .footer-actions .results-form.is-collapsed .content {
  display: none;
}
#game-interface .footer .footer-actions .results-form.is-collapsed .results-form__expand {
  display: flex;
}
#game-interface .footer .footer-actions .results-form.is-submitted .score,
#game-interface .footer .footer-actions .results-form.is-submitted .content > h3,
#game-interface .footer .footer-actions .results-form.is-submitted .content > p,
#game-interface .footer .footer-actions .results-form.is-submitted form {
  display: none;
}
#game-interface .footer .footer-actions .results-form.is-submitted .submission-complete {
  display: flex;
}

.products-stage {
  --stage-scale: 1;
  --stage-x: 0px;
  --stage-y: 0px;
  --game-footer-height: 0px;
  --mobile-result-actions-offset: 0px;
  --stage-visible-height: calc(100vh - var(--game-footer-height));
  overflow: hidden;
  touch-action: auto;
  cursor: default;
  user-select: none;
}
.products-stage.is-game-active {
  touch-action: none;
  cursor: grab;
}
.products-stage.is-game-active #game-interface {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.products-stage.is-game-active #game-interface .footer {
  transform: translateY(0);
}
.products-stage.is-game-active.is-dragging {
  cursor: grabbing;
}
.products-stage.is-mobile-reviewing-answers .products-stage__canvas {
  top: calc(var(--stage-visible-height) / 2);
  width: max(100vw, var(--stage-visible-height) * 1.4992679356);
}

.products-stage__canvas {
  position: absolute;
  left: 50%;
  top: calc(var(--stage-visible-height) / 2);
  width: max(100vw, var(--stage-visible-height) * 1.4992679356);
  aspect-ratio: 4096/2732;
  transform: translate(calc(-50% + var(--stage-x)), calc(-50% + var(--stage-y))) scale(var(--stage-scale));
  transform-origin: center;
  will-change: transform;
  overflow: hidden;
}

.products-stage.is-starting-game .products-stage__canvas {
  transition: top 0.6s ease, width 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

@supports (height: 100svh) {
  .products-stage {
    --stage-visible-height: calc(100svh - var(--game-footer-height));
  }
}
.products-stage__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

.product-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  border: 4px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}
.product-hotspot:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--result-r, 0deg)) scale(0.35);
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  transition: opacity 240ms ease var(--result-delay, 0ms), transform 315ms cubic-bezier(0.2, 1.45, 0.35, 1) var(--result-delay, 0ms), filter 220ms ease;
  pointer-events: none;
}
.product-hotspot .resize-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #5ba62c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 140ms ease;
}
.product-hotspot .rotate-handle {
  position: absolute;
  left: 50%;
  top: -34px;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #244b8a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  cursor: grab;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 140ms ease;
}
.product-hotspot .rotate-handle:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 16px;
  background: #fff;
  transform: translateX(-50%);
}
.product-hotspot .resize-handle--nw {
  left: -9px;
  top: -9px;
  cursor: nwse-resize;
}
.product-hotspot .resize-handle--ne {
  right: -9px;
  top: -9px;
  cursor: nesw-resize;
}
.product-hotspot .resize-handle--se {
  right: -9px;
  bottom: -9px;
  cursor: nwse-resize;
}
.product-hotspot .resize-handle--sw {
  left: -9px;
  bottom: -9px;
  cursor: nesw-resize;
}
.product-hotspot:hover, .product-hotspot:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(36, 75, 138, 0.18);
  box-shadow: 0 0 0 4px rgba(36, 75, 138, 0.22);
  opacity: 1;
}
.product-hotspot.is-selected {
  border: 4px solid white;
  box-shadow: 0 0 0 -3px rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.products-stage.is-game-active .product-hotspot {
  pointer-events: auto;
}
.products-stage.is-game-active.is-editing-hotspots .product-hotspot .resize-handle,
.products-stage.is-game-active.is-editing-hotspots .product-hotspot .rotate-handle {
  opacity: 0.95;
}
.products-stage.is-game-active.is-editing-hotspots .product-hotspot:hover .resize-handle,
.products-stage.is-game-active.is-editing-hotspots .product-hotspot:hover .rotate-handle, .products-stage.is-game-active.is-editing-hotspots .product-hotspot:focus-visible .resize-handle,
.products-stage.is-game-active.is-editing-hotspots .product-hotspot:focus-visible .rotate-handle {
  opacity: 0.95;
}
.products-stage.is-answer-submitted .give-answer {
  display: none;
}
.products-stage.is-answer-submitted .product-hotspot {
  cursor: pointer;
  pointer-events: auto;
}
.products-stage.is-answer-submitted .product-hotspot:hover, .products-stage.is-answer-submitted .product-hotspot:focus-visible {
  border-color: transparent;
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}
.products-stage.is-answer-submitted .product-hotspot.is-selected, .products-stage.is-answer-submitted .product-hotspot.is-selected:hover, .products-stage.is-answer-submitted .product-hotspot.is-selected:focus-visible {
  border-color: #fff;
}
.products-stage.is-answer-submitted .product-hotspot.n2k:before {
  background-image: url("../img/pmd.svg");
}
.products-stage.is-answer-submitted .product-hotspot.q7m:before {
  background-image: url("../img/niet_pmd.svg");
}
.products-stage.is-answer-submitted .product-hotspot#tuinslang:before {
  top: 0;
  right: 0;
}
.products-stage.is-answer-submitted .product-hotspot#zwembad:before {
  left: 25%;
}
.products-stage.is-answer-submitted .product-hotspot:before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--result-r, 0deg)) scale(1);
}
.products-stage.is-answer-submitted .product-hotspot:hover:before, .products-stage.is-answer-submitted .product-hotspot:focus-visible:before {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28));
  transform: translate(-50%, -50%) rotate(var(--result-r, 0deg)) scale(1.18);
}
.products-stage.has-submitted-answer #game-interface .footer .desc {
  flex-basis: auto;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list {
  position: fixed;
  left: 50%;
  top: 88px;
  bottom: calc(var(--game-footer-height) + 24px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(560px, 100vw - 64px);
  padding: 24px;
  border-radius: 20px;
  color: #fff;
  background: #244b8a;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-items__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0 0 10px;
  overflow: auto;
  border-radius: 0;
  background: transparent;
  row-gap: 10px;
  scrollbar-color: rgba(255, 255, 255, 0.85) rgba(255, 255, 255, 0.18);
  scrollbar-width: thin;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-items__list::-webkit-scrollbar {
  width: 8px;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-items__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-items__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-item {
  min-height: 45px;
  max-width: 100%;
  flex: 0 0 auto;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-item--result {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px 0 0;
  border: 0;
  background: transparent;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-item--result:before {
  display: none;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-item--result .selected-item__label {
  min-height: 45px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  white-space: nowrap;
}
.products-stage.is-result-item-list-open #game-interface .mobile-result-item-list .selected-item__result-icon {
  width: 45px;
  height: 45px;
  margin-left: 0;
  flex: 0 0 auto;
}
.products-stage.is-results-ready .product-hotspot:before {
  transition-delay: 0ms;
}
.products-stage.is-editing-hotspots .product-hotspot {
  cursor: move;
}
.products-stage.is-moving-hotspot .product-hotspot {
  cursor: grabbing;
}
.products-stage.is-rotating-hotspot .product-hotspot .rotate-handle {
  cursor: grabbing;
  opacity: 0.95;
}
.products-stage.is-resizing-hotspot .product-hotspot .resize-handle {
  opacity: 0.95;
}

@media (max-width: 1400px) {
  .products-stage.has-submitted-answer #game-interface .footer {
    justify-content: flex-end;
    flex-direction: column;
    padding-right: 290px;
  }
  .products-stage.has-submitted-answer #game-interface .footer .desc {
    margin-top: -40px;
  }
  .products-stage.has-submitted-answer #game-interface .footer .desc .result-info__desc-hint {
    margin-top: 64px;
    padding-right: 40px;
  }
  .products-stage.has-submitted-answer #game-interface .footer .results-form.open {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
  .products-stage.has-submitted-answer #game-interface .footer .give-answer {
    display: none;
  }
}
@media (min-width: 901px) {
  .products-stage.has-submitted-answer #game-interface .footer {
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  .products-stage.has-submitted-answer #game-interface .footer .view-answers {
    position: fixed !important;
    left: 50% !important;
    top: 24px !important;
    bottom: auto !important;
    z-index: 7;
    display: flex !important;
    min-width: 200px;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #A7E24C 0%, #5BA62C 100%);
    transform: translateX(-50%) !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}
@media (max-width: 1340px) {
  #welcome .prizes {
    width: 30%;
    aspect-ratio: 521/331;
  }
}
@media (max-width: 900px) {
  .products-stage.is-mobile-result-form:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(36, 75, 138, 0.72);
    pointer-events: auto;
  }
  .products-stage.is-mobile-result-form.is-result-form-collapsed:before {
    display: none;
  }
  #interface-guide {
    align-items: stretch;
    padding: 0;
    background: rgba(36, 75, 138, 0.9);
  }
  .interface-guide__content {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: unset;
  }
  .interface-guide__content .interface-guide__confirm {
    background: linear-gradient(90deg, #A7E24C 0%, #5BA62C 100%);
    color: #fff;
  }
  .interface-guide__content--desktop {
    display: none;
  }
  .interface-guide__content--mobile {
    display: block;
  }
  #game-interface .mobile-result-actions-bg:after {
    content: "";
    position: fixed;
    z-index: 1;
    left: 0;
    top: -200px;
    width: 100%;
    height: 160px;
    background: rgba(36, 75, 138, 0.7);
    transition: 0.6s;
  }
  #game-interface .mobile-result-actions {
    position: fixed;
    z-index: 6;
    left: 50%;
    transform: translateX(-50%);
    top: -200px;
    display: flex;
    gap: 10px;
    border-radius: 0 0 20px 20px;
    border: 3px solid #FFF;
    border-top: 0;
    padding: 0 6px 6px;
    transition: 0.6s;
  }
  #game-interface .mobile-result-actions .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: 0 0 13px 13px;
    background-color: white;
  }
  #game-interface .mobile-result-actions button {
    flex: 1 1 0;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
    min-height: 40px;
    min-width: 200px;
  }
  #game-interface .mobile-result-actions .show-item-list {
    background: linear-gradient(90deg, #A7E24C 0%, #5BA62C 100%);
    color: #fff;
  }
  #game-interface .mobile-result-actions-bg.is-submission-complete .show-answer-form {
    display: none;
  }
  #game-interface .mobile-result-actions-bg.is-submission-complete:after {
    height: 100px;
  }
  #game-interface .mobile-result-item-list {
    display: none;
  }
  #game-interface .footer {
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    padding: 92px 24px 48px;
  }
  #game-interface .footer .desc {
    display: none;
    flex: 0 0 auto;
    width: min(100%, 520px);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
  }
  #game-interface .footer .desc .result-info__desc-hint {
    display: none;
  }
  #game-interface .footer .results-form.open {
    right: unset;
    left: 50%;
    bottom: 40px;
    z-index: 6;
    transform: translateX(-50%);
  }
  #game-interface .footer .view-answers {
    display: block;
    position: fixed;
    left: 50%;
    bottom: unset;
    z-index: 7;
    min-width: 200px;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #A7E24C 0%, #5BA62C 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    transform: translateX(-50%);
  }
  #game-interface .footer .selected-items {
    position: absolute;
    left: 50%;
    top: -40px;
    z-index: 2;
    display: block;
    padding: 0;
    transform: translateX(-50%);
  }
  #game-interface .footer .selected-items.is-open .selected-items__list {
    display: flex;
  }
  #game-interface .footer .selected-items__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border-radius: 40px;
    color: #000;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
  }
  #game-interface .footer .selected-items__summary:before {
    display: none;
  }
  #game-interface .footer .selected-items__list {
    display: none;
    max-height: 160px;
    margin-top: 12px;
    padding: 12px;
    overflow: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    justify-content: flex-start;
  }
  #game-interface .footer .footer-actions {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .products-stage.is-mobile-result-form #game-interface .footer .view-answers {
    display: flex;
  }
  .products-stage.is-mobile-reviewing-answers #game-interface .mobile-result-actions-bg:after,
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-actions-bg:after {
    top: 0;
  }
  .products-stage.is-mobile-reviewing-answers #game-interface .mobile-result-actions,
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-actions {
    top: 0;
    flex-direction: column;
  }
  .products-stage.is-mobile-reviewing-answers #game-interface .footer .view-answers,
  .products-stage.is-mobile-item-list-open #game-interface .footer .view-answers {
    display: none;
  }
  .products-stage.has-submitted-answer #game-interface .footer .view-answers {
    top: -80svh !important;
  }
  .products-stage.has-submitted-answer.is-mobile-reviewing-answers #game-interface .footer {
    padding: 84px 24px 0 !important;
    gap: 16px;
    justify-content: flex-end !important;
  }
  .products-stage.has-submitted-answer.is-mobile-reviewing-answers #game-interface .footer .desc {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
  .products-stage.has-submitted-answer.is-mobile-reviewing-answers #game-interface .footer .selected-items {
    position: static;
    display: block;
    width: 100%;
    padding: 0;
    transform: none;
  }
  .products-stage.has-submitted-answer.is-mobile-reviewing-answers #game-interface .footer .result-info__text {
    padding-right: 0;
    font-size: 16px;
    line-height: 24px;
  }
  .products-stage.has-submitted-answer.is-mobile-reviewing-answers #game-interface .footer .result-info__hint {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .products-stage.is-mobile-reviewing-answers #game-interface .footer {
    padding: 60px 24px 28px !important;
    height: 160px;
    min-height: 160px;
  }
  .products-stage.is-mobile-reviewing-answers #game-interface .footer .desc {
    text-align: left !important;
  }
  #welcome .welcome-content {
    width: 100%;
    padding-bottom: 100px;
  }
  #welcome .welcome-content:after {
    position: absolute;
    top: 32%;
    aspect-ratio: 798/374;
    background-size: contain;
  }
  #welcome .welcome-content .game-title {
    left: unset;
    transform: unset;
    max-width: calc(100% - 20px);
    aspect-ratio: 572/262;
    width: unset;
    height: unset;
  }
  #welcome .welcome-content .intro {
    width: unset;
    padding: 0 60px;
    font-size: 30px;
    line-height: 36px;
    max-width: 90%;
  }
  #welcome .welcome-content .search-win {
    margin-top: 60px;
  }
  #welcome .green-wall,
  #welcome .blue-wall {
    height: 50%;
    clip-path: none;
    transition: 0.8s;
  }
  #welcome .blue-wall {
    top: 50%;
  }
  #welcome .prizes {
    width: unset;
    height: 150px;
  }
  #welcome.closed .green-wall {
    left: unset;
    top: -100%;
  }
  #welcome.closed .blue-wall {
    left: unset;
    top: 100%;
  }
  .products-stage.is-game-active #game-interface .footer {
    padding: 40px;
    gap: 30px;
    flex-direction: column;
  }
  .products-stage.is-game-active #game-interface .footer .desc {
    display: flex;
    flex: unset;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: var(--stage-visible-height);
    padding: 31px 50px 72px;
    color: #fff;
    background: #244b8a;
    transform: none;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__summary {
    position: absolute;
    left: 50%;
    bottom: -19px;
    z-index: 2;
    width: 207px;
    padding: 8px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transform: translateX(-50%);
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__panel-title {
    display: block;
    width: min(100%, 350px);
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__list {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(100%, 350px);
    max-height: calc(100% + 18px);
    margin: 0 0 -100px 0;
    padding: 0 0 18px 0;
    overflow: auto;
    border-radius: 0;
    background: transparent;
    row-gap: 10px;
    scrollbar-color: rgba(255, 255, 255, 0.85) rgba(255, 255, 255, 0.18);
    scrollbar-width: thin;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__list::-webkit-scrollbar {
    width: 8px;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item {
    min-height: 45px;
    max-width: 100%;
    padding: 8px 46px 8px 27px;
    flex: 0 0 auto;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item--available {
    display: inline-flex;
    padding-right: 27px;
    opacity: 0.5;
    transition: opacity 180ms ease;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item--available:hover, .products-stage.is-selected-items-open #game-interface .footer .selected-item--available:focus-visible {
    opacity: 0.85;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item--result {
    display: inline-flex;
    justify-content: space-between;
    width: min(100%, 350px);
    padding-right: 8px;
    border: 0;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item--result:before {
    display: none;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item__result-icon {
    width: 45px;
    height: 45px;
    margin-left: 0;
    flex: 0 0 auto;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items__divider {
    display: block;
    width: 100%;
    height: 2px;
    margin: 8px 0 4px;
    background: rgba(255, 255, 255, 0.9);
    flex: 0 0 auto;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-item__remove {
    right: -10px;
    width: 25px;
    height: 25px;
    min-width: 25px;
  }
  .products-stage.is-mobile-item-list-open .products-stage__canvas {
    visibility: hidden;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-result-actions-offset);
    bottom: var(--game-footer-height);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    background: #244b8a;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-items__list {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(100%, 350px);
    max-height: 100%;
    margin: 0;
    padding: 0 0 10px;
    overflow: auto;
    border-radius: 0;
    background: transparent;
    row-gap: 10px;
    scrollbar-color: rgba(255, 255, 255, 0.85) rgba(255, 255, 255, 0.18);
    scrollbar-width: thin;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-items__list::-webkit-scrollbar {
    width: 8px;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-items__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-items__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-item {
    min-height: 45px;
    max-width: 100%;
    padding: 8px 46px 8px 27px;
    flex: 0 0 auto;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-item--result {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
    width: min(100%, 350px);
    padding: 0 10px 0 0;
    border: 0;
    background: transparent;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-item--result:before {
    display: none;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-item--result .selected-item__label {
    min-height: 45px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #000;
    background: #fff;
  }
  .products-stage.is-mobile-item-list-open #game-interface .mobile-result-item-list .selected-item__result-icon {
    width: 45px;
    height: 45px;
    margin-left: 0;
    flex: 0 0 auto;
  }
  .product-hotspot.is-selected {
    border: 3px solid white;
  }
  .product-hotspot:hover,
  .product-hotspot:focus-visible {
    border-color: transparent;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
  }
  .product-hotspot.is-selected:hover,
  .product-hotspot.is-selected:focus-visible {
    border-color: #fff;
  }
  .products-stage.is-answer-submitted .product-hotspot:hover:before,
  .products-stage.is-answer-submitted .product-hotspot:focus-visible:before {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    transform: translate(-50%, -50%) rotate(var(--result-r, 0deg)) scale(1);
  }
}
@media (max-width: 500px) {
  #game-interface .footer {
    gap: 24px;
    padding: 40px;
  }
  #game-interface .footer .desc {
    font-size: 34px;
    line-height: 38px;
  }
  .product-hotspot:before {
    width: 36px;
    height: 36px;
  }
  .products-stage.is-selected-items-open #game-interface .footer .selected-items {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 100%;
    width: 100%;
    height: var(--stage-visible-height);
    padding: 31px 50px 72px;
    transform: none;
  }
  #welcome .welcome-content:after {
    top: 29%;
  }
  #welcome .prizes {
    z-index: 3;
    height: 110px;
  }
}

/*# sourceMappingURL=main.css.map */
