@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf");
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Black_Italic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_ExtraBold_Italic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Bold_Italic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_SemiBold_Italic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Medium_Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Regular_Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Light_Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Thin_Italic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Hairline.otf") format("opentype");
  font-weight: 50;
  font-style: normal;
}
@font-face {
  font-family: "Alfabet";
  src: url("../fonts/Alfabet/Alfabet_Hairline_Italic.otf") format("opentype");
  font-weight: 50;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050606;
  --white: #ffffff;
  --pink: #e6007e;
}

html {
  background: var(--black);
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
}

body {
  background: url(../img/bg_pattern.png);
  background-size: contain;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.content-box {
  max-width: 1300px;
  width: 100%;
}

.content-centered {
  margin-inline: auto;
}

.page-bullets {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0050aa, rgba(0, 80, 170, 0));
}
.page-bullets img {
  max-width: 100vw;
  position: relative;
  height: 100%;
}

.page-main {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-content {
  position: relative;
  min-height: 60dvh;
  z-index: 3;
  padding-top: 50px;
  padding-inline: 10px;
}

.page-footer-sand {
  position: relative;
  z-index: 2;
  max-width: 100vw;
  width: 100%;
  display: block;
}
.page-footer-sand img {
  width: 100%;
  height: auto;
  display: block;
}

.page-logo-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.page-logo.oshee_logo {
  max-width: 700px;
  width: 100%;
}
.page-logo.lidl_logo {
  width: 100%;
  max-width: 100px;
}

.form-container {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.form-input-container label {
  font-size: 22px;
  color: var(--white);
}
.form-input-container input {
  background: rgba(230, 0, 126, 0.7);
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 16px;
  color: var(--white);
}
.form-input-container button {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  border-radius: none;
}
.form-input-container button input {
  width: 100%;
}
.form-input-container button:focus {
  border-color: var(--pink);
  background: var(--pink);
}
.form-input-container button:disabled input {
  border-color: var(--pink);
}

.form-image-container {
  position: relative;
}
.form-image-container label {
  font-size: 22px;
  color: var(--white);
}
.form-image-container input {
  display: none;
}
.form-image-container .form-image-dropzone {
  position: relative;
  border: 2px dashed var(--white);
  border-radius: 5px;
  padding: 20px 10px;
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  background: rgba(230, 0, 126, 0.5);
}
.form-image-container .form-image-dropzone svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}
.form-image-container .form-image-dropzone-preview {
  max-width: 70px;
  max-height: 70px;
  width: 100%;
  height: 100%;
  position: relative;
}
.form-image-container .form-image-dropzone-preview .form-image-dropzone-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #ff0000;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}
.form-image-container .form-image-dropzone-preview .form-image-dropzone-remove svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}
.form-image-container .form-image-dropzone-preview img {
  max-width: 70px;
  width: 100%;
  max-height: 70px;
  height: 100%;
  object-fit: contain;
}

.form-image-dropzone-overlay {
  opacity: 0;
  pointer-events: none;
  background-color: rgba(230, 0, 126, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: 0.3s ease;
}

.form-image-dropzone-overlay.is-visible {
  opacity: 1;
}

.form-checkbox-container label {
  font-size: 22px;
  color: var(--white);
}
.form-checkbox-container label a {
  color: var(--pink);
}
.form-checkbox-container label input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.form-submit-container {
  margin-top: 10px;
}
.form-submit-container button {
  font-family: "Bebas Neue", sans-serif;
  background: var(--pink);
  color: var(--white);
  border: none;
  outline: none;
  padding: 6px 30px;
  font-size: 22px;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease;
}
.form-submit-container button:hover {
  opacity: 0.8;
}

.app-page {
  display: none;
}
.app-page.is-active {
  display: block;
}
.page-title {
  font-family: "Alfabet", sans-serif;
  font-weight: 300;
  font-size: 58px;
  margin-top: 15px;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.page-subtitle {
  font-family: "Alfabet", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--white);
  text-align: center;
}

.page-mecanics {
  text-align: center;
  font-family: "Alfabet", sans-serif;
  font-weight: 300;
  font-size: 28px;
  margin-block: 25px 35px;
}
.page-mecanics a {
  font-weight: 600;
  color: var(--pink);
  text-decoration: underline;
}

.page-prizes {
  text-align: center;
  font-family: "Alfabet", sans-serif;
  color: var(--white);
  font-weight: 500;
  font-size: 42px;
}
.page-prizes span {
  font-size: 58px;
  color: var(--pink);
  font-weight: 700;
}

.cta-button {
  font-family: "Bebas Neue", sans-serif;
  background: var(--pink);
  color: var(--white);
  border: none;
  outline: none;
  padding: 6px 30px;
  font-size: 22px;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  width: max-content;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.2s ease;
}
.cta-button:hover {
  opacity: 0.8;
}

.game-info {
  font-family: "Alfabet", sans-serif;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  transition: 0.3s ease;
}
.game-info h3 {
  font-size: 38px;
}
.game-info h4 {
  font-size: 28px;
}
.game-info.hidden {
  opacity: 0;
}

.game-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-inline: auto;
  max-width: 600px;
  max-height: 600px;
}

.game-scratch-card-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.game-prize-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prize-details-container, .prize-details-container {
  text-align: center;
  font-family: "Alfabet", sans-serif;
  color: var(--white);
  opacity: 0;
  transition: 0.3s ease;
}
.prize-details-container.is-visible, .prize-details-container.is-visible {
  opacity: 1;
}
.prize-details-container h2, .prize-details-container h2 {
  font-size: 46px;
  font-weight: 500;
}
.prize-details-container p, .prize-details-container p {
  font-size: 24px;
  font-weight: 300;
  margin-top: 10px;
}
.prize-details-container .entry_id_container p, .prize-details-container .entry_id_container p {
  font-size: 20px;
  font-weight: 600;
  color: var(--pink);
}

.prize-icon-container {
  margin: 20px auto;
  width: max-content;
}
.prize-icon-container svg {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.prize-after-container {
  text-align: center;
  opacity: 0;
  transition: 0.3s ease;
}
.prize-after-container.is-visible {
  opacity: 1;
}
.prize-after-container p {
  margin-bottom: 10px;
}
.prize-after-container button {
  font-family: "Bebas Neue", sans-serif;
  background: var(--pink);
  color: var(--white);
  border: none;
  outline: none;
  padding: 6px 30px;
  font-size: 22px;
  margin: 0 auto;
  display: block;
  width: max-content;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease;
}
.prize-after-container button:hover {
  opacity: 0.8;
}

.prize-image-container {
  display: block;
  margin: 20px auto;
  width: max-content;
}
.prize-image-container img {
  display: block;
  max-width: 300px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-off-heading {
  font-family: "Alfabet", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--white);
  text-align: center;
  margin-top: 20px;
}

.heading-1 {
  font-family: "Alfabet", sans-serif;
  font-weight: 300;
  font-size: 58px;
  color: var(--white);
  text-align: center;
  margin-bottom: 25px;
}

.utils-content p {
  font-family: "Alfabet", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.utils-content a {
  color: var(--pink);
}
.utils-content h1, .utils-content h2, .utils-content h3, .utils-content h4, .utils-content h5, .utils-content h6 {
  font-family: "Alfabet", sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.utils-content li {
  list-style-position: inside;
}

.autocomplete-options-container {
  border: 1px solid var(--black);
  background: var(--white);
  border-radius: 8px;
  z-index: 1000;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  max-height: 280px;
  width: 100%;
}
.autocomplete-options-container .autocomplete-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
}
.autocomplete-options-container .autocomplete-options p {
  width: 100%;
  font-family: "Montserrat";
  font-size: 1rem;
  text-align: center;
}
.autocomplete-options-container .autocomplete-options .autocomplete-option {
  width: 100%;
  font-family: "Montserrat";
  font-size: 1rem;
}
.autocomplete-options-container .autocomplete-options .autocomplete-option button {
  width: 100%;
  font-family: "Montserrat";
  font-size: 1rem;
  border-radius: 8px;
  color: var(--black);
  padding: 8px 10px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.autocomplete-options-container .autocomplete-options .autocomplete-option button:hover {
  color: var(--white);
  background: var(--pink);
}

.autocomplete-search-container {
  position: relative;
}
.autocomplete-search-container .autocomplete-search {
  position: relative;
  width: 100%;
  padding-left: calc(1rem + 15px);
}

.autocomplete-search-icon {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  stroke: var(--white);
  z-index: 1;
  pointer-events: none;
}

.prize-content {
  text-align: center;
}

.prize-title {
  text-align: center;
  font-family: "Alfabet", sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.prize-desc {
  text-align: center;
  font-family: "Alfabet", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */