:root {
  --vl-orange: #E64011;
  --vl-blue: #005386;
  --vl-cream: #FEFDE9;
  --vl-lightblue: #D9F0FA;
  --vl-cyan: #29ABE2;
  --vl-text: #123044;
  --vl-muted: #65737A;
  --vl-white: #FFFFFF;
  --vl-line: #D8E8EF;
  --vl-danger: #B42318;
}

.vl-form {
  background: var(--vl-cream);
  color: var(--vl-text);
  font-family: Dosis, Arial, sans-serif;
  padding: clamp(16px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.vl-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: repeating-linear-gradient(
      174deg,
      transparent 0,
      transparent 38px,
      rgba(0, 83, 134, .18) 39px,
      transparent 42px
  );
}

.vl-form * {
  box-sizing: border-box;
}

.vl-form__inner {
  width: min(100%, 760px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vl-form__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.vl-form__logo {
  font-family: Sansita, cursive;
  color: var(--vl-orange);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1;
}

.vl-form__mark {
  background: var(--vl-blue);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.vl-step {
  display: none;
}

.vl-step.is-active {
  display: block;
}

.vl-hero,
.vl-card,
.vl-support-box {
  border-radius: clamp(22px, 4vw, 34px);
}

.vl-hero {
  background: var(--vl-blue);
  color: white;
  padding: clamp(24px, 5vw, 42px);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 0 rgba(0, 83, 134, .18);
}

.vl-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: var(--vl-orange);
  border-radius: 50%;
}

.vl-hero > * {
  position: relative;
  z-index: 2;
}

.vl-form .vl-hero h1 {
  color: white;
}

.vl-card,
.vl-support-box {
  background: white;
  border: 2px solid rgba(0, 83, 134, .10);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 12px 0 rgba(0, 83, 134, .08);
  margin-bottom: 22px;
}

.vl-form h1,
.vl-form h2 {
  font-family: Sansita, cursive;
  margin: 0 0 16px;
  line-height: 1.08;
}

.vl-form h1 {
  font-size: clamp(34px, 7vw, 46px);
}

.vl-form h2 {
  color: var(--vl-blue);
  font-size: clamp(27px, 4vw, 38px);
  margin-top: 24px;
}

.vl-form h2:first-child {
  margin-top: 0;
}

.vl-form p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.45;
  margin: 0 0 16px;
}

.vl-helper {
  color: var(--vl-muted);
  font-size: 15px;
}

.vl-form label {
  font-weight: 800;
  font-size: 16px;
  display: block;
  margin: 14px 0 8px;
}

.vl-form select,
.vl-form input[type="text"],
.vl-form input[type="url"],
.vl-form input[type="email"],
.vl-form input[type="date"],
.vl-form textarea {
  width: 100%;
  min-height: 64px;
  border: 4px solid #C9DCE8;
  border-radius: 24px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 18px;
  background: white;
  color: var(--vl-text);
}

.vl-form textarea {
  min-height: 140px;
  padding: 20px 24px;
  resize: vertical;
}

.vl-form select:focus,
.vl-form input:focus,
.vl-form textarea:focus {
  outline: none;
  border-color: var(--vl-cyan);
  box-shadow: 0 0 0 4px rgba(41, 171, 226, .18);
}

.vl-option {
  background: white;
  border: 2px solid var(--vl-line);
  border-radius: 18px;
  padding: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 16px;
}

.vl-option input {
  width: auto;
  margin-top: 4px;
}

.vl-btn {
  border: none;
  border-radius: 22px;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
  margin-top: 12px;
  color: white;
}

.vl-btn:disabled {
  opacity: .65;
  cursor: wait;
}

.vl-btn:hover {
  color: white;
}

.vl-btn--primary {
  background: var(--vl-orange) !important;
  color: white !important;
  box-shadow: 0 6px 0 #B8320D;
}

.vl-btn--primary:hover {
  color: white;
}

.vl-btn--secondary {
  background: var(--vl-lightblue) !important;
  color: var(--vl-blue) !important;
  border: 2px solid rgba(0, 83, 134, .14);
}

.vl-btn--back {
  background: #F1F4F5 !important;
  color: var(--vl-blue) !important;
}

.vl-button-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  margin-top: 20px;
}

.vl-review-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.vl-note {
  background: var(--vl-lightblue);
  border: 2px solid rgba(0, 83, 134, .10);
  border-radius: 20px;
  padding: 14px;
  margin: 14px 0;
  color: var(--vl-blue);
  font-size: 15px;
  font-weight: 700;
}

.vl-upload-placeholder {
  border: 3px dashed #C9DCE8;
  background: #F8FCFE;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  color: var(--vl-muted);
  font-weight: 800;
  margin: 12px 0;
}

.vl-error {
  display: none;
  color: var(--vl-danger);
  font-weight: 800;
  margin-top: 10px;
}

.vl-error.is-visible {
  display: block;
}

.vl-review-item {
  background: var(--vl-cream);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
}

.vl-review-item strong {
  display: block;
  color: var(--vl-blue);
  margin-bottom: 4px;
}

.vl-progress-text {
  text-align: center;
  color: var(--vl-blue);
  font-weight: 800;
  margin-bottom: 8px;
}

.vl-progress-track {
  height: 10px;
  background: #EAF3F7;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.vl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--vl-orange), var(--vl-cyan));
}

.vl-case-codes {
  display: grid;
  gap: 10px;
  margin: 16px 0 40px;
}

.vl-case-code {
  align-items: center;
  background: var(--vl-blue);
  border-radius: 18px;
  color: white;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
  position: relative;
  transition: transform .15s ease, background .15s ease;
}

.vl-case-code:hover,
.vl-case-code:focus-visible {
  background: #00659F;
  outline: 3px solid rgba(41, 171, 226, .35);
  transform: translateY(-1px);
}

.vl-case-code.is-copied {
  background: #16794B;
}

.vl-case-code span {
  font-weight: 800;
  font-size: 18px;
  word-break: break-word;
}

.vl-copy-code {
  width: auto;
  border: 0;
  padding: 8px 10px;
  border-radius: 14px;
  background: white;
  color: var(--vl-blue);
  font-weight: 800;
  cursor: pointer;
}

.vl-copy-feedback {
  bottom: -24px;
  color: #16794B;
  font-size: 14px !important;
  font-weight: 800;
  left: 0;
  position: absolute;
}

.vl-phone {
  font-family: Sansita, cursive;
  color: var(--vl-orange);
  font-size: 42px;
  margin: 10px 0 30px;
}

.vl-phone a {
  color: inherit;
  text-decoration: none;
}

.vl-required {
  color: var(--vl-danger);
}

.vl-hidden {
  display: none !important;
}

.vl-upload-box {
  align-items: center;
  background: #F8FCFE;
  border: 3px dashed #C9DCE8;
  border-radius: 22px;
  color: var(--vl-blue);
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  margin: 12px 0 !important;
  padding: 22px;
  text-align: center;
}

.vl-upload-box:focus-within {
  border-color: var(--vl-cyan);
  box-shadow: 0 0 0 4px rgba(41, 171, 226, .18);
}

.vl-upload-box.is-dragover {
  background: var(--vl-lightblue);
  border-color: var(--vl-cyan);
  box-shadow: 0 0 0 5px rgba(41, 171, 226, .18);
  transform: translateY(-2px);
}

.vl-upload-box input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.vl-upload-box__title {
  font-size: 18px;
  font-weight: 800;
}

.vl-upload-box__meta,
.vl-upload-total {
  color: var(--vl-muted);
  font-size: 14px;
}

.vl-file-list {
  display: grid;
  gap: 10px;
}

.vl-file-item {
  align-items: center;
  background: var(--vl-lightblue);
  border-radius: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px 14px;
}

.vl-file-item__name {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.vl-file-item__size {
  color: var(--vl-muted);
  display: block;
  font-size: 13px;
}

.vl-file-remove {
  background: var(--e-global-color-primary);
  border: 0;
  border-radius: 12px;
  color: var(--vl-white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 8px 10px;
}

.vl-backend-pending {
  display: none !important;
}

.vl-follow-up {
  background: var(--vl-cream);
}

.vl-follow-up__inner {
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.vl-form .vl-follow-up__inner h2 {
  color: var(--vl-blue);
  margin: 0 0 28px;
}

.vl-follow-up__card {
  margin-bottom: 0;
}

.vl-follow-up__form {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.05fr);
  margin: 0 auto;
  max-width: 100%;
}

.vl-btn--status {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.15;
  margin: 0;
  min-height: 64px;
}

.vl-follow-up__hint {
  color: var(--vl-muted);
  font-size: 17px !important;
  margin: 22px 0 0 !important;
}

.vl-follow-up__message {
  display: none;
  font-size: 16px !important;
  font-weight: 800;
  margin: 16px 0 0 !important;
}

.vl-follow-up__message.is-visible {
  display: block;
}

.vl-follow-up__message.is-error {
  color: var(--vl-danger);
}

.vl-follow-up__result {
  margin-top: 24px;
  text-align: left;
}

.vl-follow-up__result .vl-review-item:last-child {
  margin-bottom: 0;
}

.vl-follow-up__result [data-status-result="description"] {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.vl-follow-up .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 700px) {
  .vl-follow-up {
    padding: 32px 18px;
  }

  .vl-follow-up__form {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .vl-form {
    padding: 0;
  }

  .vl-form__inner {
    width: 100%;
  }

  .vl-card,
  .vl-hero,
  .vl-support-box {
    border-radius: 0;
  }

  .vl-button-row {
    grid-template-columns: 1fr;
  }

.vl-case-code {
    align-items: stretch;
    flex-direction: column;
  }
}

.vl-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vl-form h3 {
  color: var(--vl-blue);
  font-family: Sansita, cursive;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.vl-reporter-panel {
  background: #F8FCFE;
  border: 2px solid var(--vl-line);
  border-radius: 24px;
  margin-top: 22px;
  padding: clamp(16px, 3vw, 24px);
}

.vl-fieldset {
  border: 0;
  margin: 20px 0 0;
  padding: 0;
}

.vl-fieldset legend {
  color: var(--vl-text);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.vl-summary-box {
  background: var(--vl-lightblue);
  border-radius: 22px;
  margin-top: 18px;
  padding: 16px;
}

.vl-btn--inline {
  width: auto;
}
