@font-face {
  font-family: "roc-grotesk-condensed";
  src: url("https://use.typekit.net/af/b47a88/00000000000000007735b7be/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/b47a88/00000000000000007735b7be/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/b47a88/00000000000000007735b7be/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Futura";
  src: url("images/FuturaStd-Medium.woff") format("woff");
  font-display: auto;
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .row {
    flex-direction: row;
  }
}
.row .col {
  width: 100%;
}
@media (min-width: 768px) {
  .row .col {
    width: 50%;
  }
}

.hidden {
  display: none !important;
}

body {
  color: #fff;
  background-color: black;
  line-height: 1.4;
  font-family: roc-grotesk-variable, sans-serif;
  font-weight: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

.mb-4 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-1 {
  gap: 0.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-semibold {
  font-weight: 600;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-600 {
  color: #4B5563;
}

.text-gray-500 {
  color: #6B7280;
}

.text-blue-500 {
  color: #3B82F6;
}

.text-blue-600 {
  color: #2563EB;
}

.text-blue-700 {
  color: #1D4ED8;
}

.text-green {
  color: #1a5f3f;
}

.hover\:text-blue-700:hover {
  color: #1D4ED8;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.h-16 {
  height: 4rem;
}

.w-16 {
  width: 4rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

#app {
  visibility: hidden;
}
#app .main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app .main .inner {
  padding: 0;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background: url(images/background-mobile.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  #app .main .inner {
    background: url(images/background-desktop.jpg) no-repeat center center/cover;
    padding-left: 2rem;
  }
}
#app .main .background-image {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  background-image: url(images/main-image-mobile.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
  padding-bottom: 100%;
  -webkit-mask-image: linear-gradient(black 50%, transparent);
  mask-image: linear-gradient(black 50%, transparent);
}
@media (min-width: 768px) {
  #app .main .background-image {
    position: fixed;
    background: url(images/main-image-desktop.jpg);
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    height: 100vh;
    padding-bottom: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
#app .main .video-howto {
  margin-top: 20px;
  font-variation-settings: "wdth" 100, "wght" 500;
  font-size: 1.125rem;
}
#app .main .dropzone {
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  padding: 3rem 2rem;
  min-height: 240px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.5rem;
  box-sizing: border-box;
}
#app .main .dropzone .dz-inner {
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 1rem;
}
#app .main .dropzone svg path {
  fill: #fff;
}
#app .main .dropzone:hover {
  border-color: #3b82f6;
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}
#app .main .dropzone .dz-message {
  text-align: center;
  margin: 0;
}
#app .main .dropzone.dz-drag-hover {
  border-color: #2563eb;
  background: linear-gradient(to bottom, #dbeafe, #eff6ff);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}
#app .main .dropzone .dz-preview {
  margin: 0 auto;
  width: 100%;
  min-height: 225px;
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#app .main .dropzone .dz-preview .dz-image {
  display: none !important;
}
#app .main .dropzone .dz-preview .dz-details {
  color: #000 !important;
}
#app .main .dropzone .dz-preview .dz-details .dz-size {
  font-variation-settings: "wdth" 100, "wght" 700;
  text-transform: uppercase;
}
#app .main .dropzone .dz-preview .dz-details .dz-size span {
  font-size: 1rem;
}
#app .main .dropzone .dz-preview .dz-remove {
  background: #1a5f3f;
  color: #fff !important;
  margin: 0 auto;
  border-radius: 20px;
  padding: 5px 15px 4px;
  font-variation-settings: "wdth" 100, "wght" 700;
  text-transform: uppercase;
}
#app .main .dropzone .dz-preview .dz-image {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
#app .main .dropzone .dz-preview .dz-image img {
  display: none;
}
#app .main .dropzone .dz-preview .dz-details {
  text-align: center;
  padding: 0;
  background: transparent;
  position: relative;
}
#app .main .dropzone .dz-preview .dz-details .dz-size {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}
#app .main .dropzone .dz-preview .dz-progress {
  height: 8px;
  border-radius: 9999px;
  background: #fff;
  border: 1px #1a5f3f solid;
  margin: 1rem auto;
  overflow: hidden;
  width: 100%;
  position: relative;
  left: 0;
}
#app .main .dropzone .dz-preview .dz-progress .dz-upload {
  background: #1a5f3f;
  border-radius: 9999px;
  transition: width 0.3s ease;
  height: 100%;
}
#app .main .dropzone .dz-preview .dz-error-message {
  display: none;
  color: #800020;
  position: relative;
  font-weight: bold;
  opacity: 1;
  background: none;
  text-align: center;
  width: 100%;
  margin-top: 0;
  left: 0;
  top: 0;
  padding: 10px 0 5px 0;
  text-transform: uppercase;
}
#app .main .dropzone .dz-preview .dz-error-message:after {
  display: none;
}
#app .main .dropzone .dz-preview .dz-success-mark path, #app .main .dropzone .dz-preview .dz-success-mark circle, #app .main .dropzone .dz-preview .dz-error-mark path, #app .main .dropzone .dz-preview .dz-error-mark circle {
  fill: #1a5f3f;
}
#app .main .dropzone .dz-preview .dz-remove {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
#app .main .dropzone .dz-preview .dz-remove .dz-remove:hover {
  color: #ef4444;
}
#app .main .dropzone .dz-preview.dz-success .dz-image {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
#app .main .dropzone .upload-icon {
  animation: float 3s ease-in-out infinite;
  margin-bottom: 0;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
#app .main .content-block {
  position: relative;
  z-index: 2;
  max-width: 540px;
  width: 100%;
  padding-bottom: 4rem;
  padding: 0 6% 4rem;
  margin: -55% auto 0 auto;
}
@media (min-width: 768px) {
  #app .main .content-block {
    padding: 0 0 4rem 0;
    margin: 0 0;
    min-height: calc(100vh - 48px);
  }
}
#app .main .content-block:before {
  display: none;
  position: absolute;
  top: 0;
  left: -8%;
  width: 150%;
  height: 100%;
  background: linear-gradient(to right, #006938, rgba(0, 105, 56, 0));
  content: "";
  z-index: -1;
}
@media (min-width: 768px) {
  #app .main .content-block:before {
    display: block;
  }
}
#app .main .content-block .top-block, #app .main .content-block .message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app .main .content-block .top-block .logo, #app .main .content-block .message .logo {
  overflow: visible;
  max-width: 380px;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 40px;
  will-change: transform, filter;
  filter: drop-shadow(0px 0px 8px rgb(4, 224, 40)) drop-shadow(0px 0px 2px rgb(4, 224, 40));
}
#app .main .content-block .top-block .logo .ws-logo, #app .main .content-block .message .logo .ws-logo {
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
}
#app .main .content-block .top-block .logo .dot01, #app .main .content-block .top-block .logo .dot02, #app .main .content-block .top-block .logo .dot03, #app .main .content-block .message .logo .dot01, #app .main .content-block .message .logo .dot02, #app .main .content-block .message .logo .dot03 {
  filter: drop-shadow(0px 0px 2px rgb(4, 224, 40)) drop-shadow(0px 0px 2px rgb(4, 224, 40));
  box-shadow: inset 0px 0px 4px rgb(0, 0, 0);
}
#app .main .content-block .top-block h2, #app .main .content-block .message h2 {
  font-variation-settings: "wdth" 75, "wght" 700;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
#app .main .content-block .top-block p, #app .main .content-block .message p {
  font-variation-settings: "wdth" 100, "wght" 500;
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 15px;
}
#app .main .content-block form {
  margin-top: 3rem;
}
#app .main .content-block form .row {
  gap: 20px;
}
#app .main .content-block form .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#app .main .content-block input, #app .main .content-block select {
  font-family: roc-grotesk-variable, sans-serif;
  font-size: 1.1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  border: 2px solid transparent;
  outline-color: white;
  transition: border 0.1s linear;
}
#app .main .content-block input, #app .main .content-block select, #app .main .content-block option, #app .main .content-block button {
  touch-action: manipulation;
}
#app .main .content-block input:disabled {
  background-color: #363636 !important;
  opacity: 0.5 !important;
  pointer-events: none;
}
#app .main .content-block input.text, #app .main .content-block select {
  width: 100%;
  border-radius: 0.5rem;
  background-color: white;
  color: black;
  padding: 0.4rem;
  padding-left: 0.8rem;
}
#app .main .content-block input.text::placeholder {
  color: #888;
}
#app .main .content-block input.invalid, #app .main .content-block select.invalid, #app .main .content-block label.invalid > input {
  border: 2px solid #ff0000 !important;
}
#app .main .content-block label, #app .main .content-block p {
  font-size: 1.2rem;
}
#app .main .content-block label.checkbox {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 0.8rem;
}
#app .main .content-block .dob {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
#app .main .content-block .dob label {
  font-variation-settings: "wdth" 75, "wght" 500;
  text-transform: uppercase;
  font-size: 1rem;
}
#app .main .content-block .dob input[type=date] {
  border-radius: 0.5rem;
  padding: 0.4rem;
  font-family: roc-grotesk-variable, sans-serif;
  font-size: 1rem;
}
#app .main .content-block {
  /* Remove the stepper for most browsers */
}
#app .main .content-block input[type=number]::-webkit-inner-spin-button,
#app .main .content-block input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#app .main .content-block {
  /* Remove the stepper for Firefox */
}
#app .main .content-block input[type=number] {
  -moz-appearance: textfield;
}
#app .main .content-block input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  aspect-ratio: 1;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  background-color: white;
}
#app .main .content-block input[type=checkbox]:checked {
  background-image: url("images/check.png");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}
#app .main .content-block div.enter {
  margin-top: 1rem;
}
#app .main .content-block .button, #app .main .content-block button {
  font-family: roc-grotesk-variable, sans-serif;
  font-variation-settings: "wdth" 75, "wght" 700;
  background-color: #a19958;
  color: white;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem 0.5rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
}
#app .main .content-block .button:disabled, #app .main .content-block button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
#app .main .content-block input[type=submit]:active, #app .main .content-block button:active {
  opacity: 0.8;
}
#app .main .consent {
  margin-top: 2rem;
}
#app .main .consent h3 {
  font-variation-settings: "wdth" 75, "wght" 500;
  font-size: 1.375rem;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#app .main .consent .consent-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-top;
  gap: 1rem;
}
#app .main .consent .consent-item label.consent-text {
  font-size: 0.875rem;
  font-variation-settings: "wdth" 100, "wght" 500;
  line-height: 1.1;
}
#app .main .submit {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
#app footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: black;
  z-index: 5;
}
#app footer .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.33rem;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.75rem;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  font-family: Futura, sans-serif;
  color: white;
}
#app footer .footer-legal {
  font-family: "Futura", sans-serif;
  color: white;
  font-size: 0.75rem;
  margin-top: 20px;
}
#app footer a, #app footer a:visited {
  color: white;
  text-decoration: none;
}

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