.app-container {
  width: 100% !important;
  max-width: 100% !important;
  --promoapp-yellow: #f6dc34;
  --promoapp-white: #ffffff;
  --promoapp-black: #231f20;
}

.app-main {
  width: 100%;
  min-height: 100dvh;
  padding: 20px 10px;
  background-size: cover;
  background-position: center;
}
.app-main h3 {
  color: var(--promoapp-white);
  font-weight: bold;
  text-align: center;
}
.app-main p {
  color: var(--promoapp-white);
  font-weight: bold;
  text-align: center;
}

.red-bar {
  background: var(--promoapp-yellow);
  padding: 15px 10px;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.red-bar.with-img::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/wp-content/plugins/promoapp-scratch-card/assets/img/cut.png");
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
  z-index: 1;
  background-position: center bottom;
  pointer-events: none;
}

.red-bar-content {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.logo-container {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.logo-container svg {
  height: 100%;
  width: auto;
  display: block;
}

.scratch-card-prize {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.scratch-card-prize-content {
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.scratch-card-prize-img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.loser-icon {
  width: 100px;
  height: 100px;
  fill: #fafafa;
}

.scratch-card-prize h3 {
  font-size: 46px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 15px 0 0 0;
  text-align: center;
}

.scratch-card-prize p {
  color: #1a1a1a;
  text-align: center;
  font-size: 22px;
  margin: 0 0 15px 0;
}

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

.scratch-card-game {
  margin-top: 30px;
  position: relative;
  width: min(100vw, 75dvh);
  height: min(100vw, 75dvh);
  max-height: 75dvh;
  aspect-ratio: 1/1;
  margin: 0 auto;
  overflow: hidden;
}

.sign-pv-button {
  margin-top: 50px;
  cursor: pointer;
  border: none;
  outline: none;
  background: var(--promoapp-yellow);
  color: var(--promoapp-black) !important;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.sign-pv-button:hover {
  background: rgb(236.5141509434, 206.2216981132, 10.4858490566);
}

.form-image-dropzone {
  position: relative;
  border: 2px dashed #ccc;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: var(--promoapp-black);
  background: var(--promoapp-white);
}
.form-image-dropzone p {
  color: var(--promoapp-black);
  font-size: 1.15rem;
  pointer-events: none;
  text-align: center;
}

.form-image-dropzone-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 56px;
  line-height: 50px;
  pointer-events: none;
}
.form-image-dropzone-icon svg {
  fill: var(--promoapp-yellow);
}

.form-image-dropzone-preview {
  width: 100px;
  height: 100px;
  pointer-events: none;
  position: relative;
}
.form-image-dropzone-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.form-image-dropzone-remove {
  pointer-events: all;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 19px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border: none;
  outline: none;
  background: var(--promoapp-yellow);
  color: var(--promoapp-white);
}
.form-image-dropzone-remove svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: var(--promoapp-black);
}

.form-image-dropzone-overlay {
  opacity: 0;
  pointer-events: none;
  background-color: var(--promoapp-black);
  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: 0.8;
}

.form-attachment-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  position: relative;
}
.form-attachment-container label {
  font-size: 16px;
  font-weight: 600;
  color: var(--promoapp-white);
}
.form-attachment-container label.error {
  color: #ff0000;
}
.form-attachment-container input {
  display: none;
}

.form-input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.form-input-container label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--promoapp-white);
}
.form-input-container label.error {
  color: #ff0000;
}
.form-input-container input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: var(--promoapp-white);
  color: var(--promoapp-black) !important;
  border-radius: 0px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form-input-container input:focus {
  outline: none;
  border-color: var(--promoapp-black);
  background: var(--promoapp-white);
}

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

.form-container {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.form-submit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  margin-top: 20px;
}
.form-submit-container button {
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0px;
  background: var(--promoapp-yellow);
  color: var(--promoapp-black) !important;
  padding: 4px 34px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.form-submit-container button:hover {
  color: var(--promoapp-black);
  background: rgb(236.5141509434, 206.2216981132, 10.4858490566);
}
.form-submit-container button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.form-submit-container button span {
  font-size: 24px !important;
  color: var(--theme-palette-color-3, #000000) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-family: "alfabet", Sans-serif !important;
}

.form-checkbox-container label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--promoapp-white);
}
.form-checkbox-container label.error {
  color: #ff0000;
}
.form-checkbox-container input {
  margin-right: 10px;
  accent-color: var(--promoapp-yellow);
  transform: scale(1.3);
  transform-origin: left center;
}

.app-page {
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}
.app-page.active {
  opacity: 1;
  transform: translateY(0);
}
.app-page h1,
.app-page h2,
.app-page h3,
.app-page h4,
.app-page h5,
.app-page h6,
.app-page p {
  font-family: alfabet, sans-serif;
}

.form-select-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-select-container label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--promoapp-white);
}
.form-select-container label.error {
  color: #ff0000;
}
.form-select-container select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: var(--promoapp-white);
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}
.form-select-container select:focus {
  outline: none;
  border-color: var(--promoapp-black);
  background: var(--promoapp-white);
  box-shadow: 0 0 5px rgba(210, 32, 40, 0.5);
}

.autocomplete-trigger {
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.autocomplete-trigger:focus {
  outline: none;
  border-color: var(--promoapp-black);
  background: var(--promoapp-white);
  box-shadow: 0 0 5px rgba(210, 32, 40, 0.5);
}

.autocomplete-options-container {
  border: 1px solid var(--promoapp-black);
  background: var(--promoapp-white);
  border-radius: 0px;
  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-size: 1rem;
  text-align: center;
}
.autocomplete-options-container .autocomplete-options .autocomplete-option {
  width: 100%;
  font-size: 1rem;
}
.autocomplete-options-container .autocomplete-options .autocomplete-option button {
  width: 100%;
  font-size: 1rem;
  border-radius: 0px;
  color: var(--promoapp-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(--promoapp-white);
  background: var(--promoapp-yellow);
}

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

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

.scratch-card-game {
  border: 2px solid var(--promoapp-yellow);
}/*# sourceMappingURL=scratch-card.css.map */