* {
  --blue-dark: #242B39;
  --blue-dark-rgba: rgba(36, 43, 57, 0.69);
  --blue-light: #588AB3;
  --orange: #CE8942;
  --orange-dark: #A46E3D;
  --grey-dark: #D6D9DB;
  --grey-darker: #B0B5B9;
  --grey: #F5F7F8;
  --white: #FFFFFF;
  --header-height: 200px;
  --buttons-height: 160px;
}
body {
  background: var(--grey);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75vh;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--blue-dark);
  background-color: var(--grey);
}
.loading {
  background: var(--blue-dark-rgba);
  align-items: center;
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
}
.loading--visible {
  display: flex;
  opacity: 1;
  animation: fadeInScreen 300ms ease-out;
  animation-fill-mode: forwards;
  animation-direction: normal;
}
.loading__spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin360 2s ease-in-out infinite;
}
.loading__message {
  color: var(--white);
  font-size: 3.2em;
  font-weight: 500;
  text-align: center;
  text-transform: lowercase;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.confirm {
  background: var(--blue-dark-rgba);
  align-items: center;
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
}
.confirm--visible {
  display: flex;
  opacity: 1;
  animation: fadeInScreen 300ms ease-out;
  animation-fill-mode: forwards;
  animation-direction: normal;
}
.confirm__content {
  background: var(--white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 30px 40px;
  width: 70%;
}
.confirm__content p {
  font-size: 2.4em;
  font-weight: 500;
  text-align: center;
}
.confirm__message {
  color: var(--white);
  font-size: 3.2em;
  font-weight: 500;
  text-align: center;
  text-transform: lowercase;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.confirm__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.confirm__button {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 3.2em;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}
.confirm__button:active {
  background: var(--orange-dark);
}
.confirm__button--light-blue {
  background: var(--blue-light);
}
.confirm__button--light-blue:active {
  background: var(--blue-dark);
}
.confirm__button--white {
  background: var(--white);
  color: var(--blue-dark);
}
.confirm__button--small {
  font-size: 24px;
  padding: 12px 24px;
}
.confirm__button[data-next=""] {
  opacity: 0.5;
}
.button {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 3.2em;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}
.button:active {
  background: var(--orange-dark);
}
.button--light-blue {
  background: var(--blue-light);
}
.button--light-blue:active {
  background: var(--blue-dark);
}
.button--white {
  background: var(--white);
  color: var(--blue-dark);
}
.button--small {
  font-size: 2.4em;
  padding: 12px 24px;
}
.button[data-next=""] {
  opacity: 0.5;
}
.home-button {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1000;
}
.home-button:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><style> .cls-1 { fill: %23588AB3; stroke-width: 0px; } </style></defs><path class="cls-1" d="M369.1 142.9L312 200l24 24 160 0 0-160L472 40 414.4 97.6s0 0 0 0c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0l-45.3-45.3c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0c0 0 0 0 0 0z"/></svg>');
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  display: block;
  height: 40px;
  width: 40px;
}
.review {
  align-items: center;
  bottom: calc(var(--buttons-height) + 40px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  left: 100px;
  overflow-y: scroll;
  position: absolute;
  right: 100px;
  top: calc(var(--header-height) + 40px);
}
.review::-webkit-scrollbar {
  width: 4px;
}
.review::-webkit-scrollbar-thumb {
  background-color: var(--grey-darker);
  border-radius: 2px;
}
.review__step {
  align-items: flex-start;
  font-size: 1.8em;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.review__group {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 40px;
  flex-direction: column;
  width: 100%;
}
.review__title {
  font-weight: 600;
  width: 320px;
}
.review__details {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}
.review__option {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
}
.review__option--textarea {
  align-items: flex-start;
  flex-direction: column;
}
.review__option--field {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: row;
  width: 90%;
}
.review__option--field:last-child {
  margin-bottom: 20px;
}
.review__option--field .review__option__label {
  font-weight: 600;
  width: 240px;
}
.review__option--field .review__option__value {
  font-weight: 400;
  width: 100%;
}
.progress {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 100px;
  right: 100px;
}
.progress:before {
  background: var(--grey-dark);
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.progress__step {
  background: var(--grey-dark);
  display: block;
  font-size: 0;
  height: 12px;
  width: 12px;
  position: relative;
  z-index: 2;
}
.progress__step--active {
  background: var(--blue-light);
}
.screen {
  background: var(--grey);
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.screen--review {
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 100px 60px 60px;
  position: absolute;
  width: 100%;
}
.screen--options {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 100px 60px 60px;
  position: absolute;
  width: 100%;
}
.screen__header {
  align-items: center;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  font-size: 4.8em;
  font-weight: 600;
  height: var(--header-height);
  justify-content: center;
  padding: 0 60px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.screen__buttons {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: row;
  height: var(--buttons-height);
  gap: 40px;
  justify-content: space-between;
  left: 0;
  padding: 100px 60px 60px;
  position: absolute;
  width: 100%;
}
.screen > .options {
  /*position: absolute;
        top: calc(var(--header-height) + 40px);
        bottom: calc(var(--buttons-height) + 40px);
        max-height: calc(100vh - var(--header-height) - var(--buttons-height) - 80px);
        overflow-y: scroll;*/
  max-height: calc(100vh - var(--header-height) - var(--buttons-height) - 80px);
  overflow-y: scroll;
  padding-left: 15%;
  padding-right: 15%;
  width: 100% !important;
}
.screen > .options::-webkit-scrollbar {
  width: 4px;
}
.screen > .options::-webkit-scrollbar-thumb {
  background-color: var(--grey-darker);
  border-radius: 2px;
}
.screen .options {
  align-items: stretch;
  background: var(--grey);
  display: block;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: 70%;
}
.screen .options p {
  font-size: 2.8em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}
.screen .options .group {
  display: flex;
  max-width: 100%;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  width: 100%;
}
.screen .options .group.group--visible {
  display: flex;
  opacity: 1;
  max-height: 100vh;
  padding: 20px 0 20px 60px;
  animation: fadeInGroup;
  animation-duration: 1200ms;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.screen .options__option {
  border-radius: 20px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 3em;
  font-weight: 500;
  margin-right: 10px;
  padding: 20px 20px 20px 60px;
  position: relative;
  text-align: left;
  transition: background 0.3s ease;
}
.screen .options__option--text {
  width: 100%;
}
.screen .options__option img {
  width: auto;
  height: 60px;
  vertical-align: middle;
}
.screen .options__option:has(img) {
  padding: 5px 20px 5px 60px;
}
.screen .options__option label {
  width: 100%;
}
.screen .options__option textarea {
  background: #D6D9DB;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  height: 200px;
  margin-top: 20px;
  text-align: left;
  padding: 16px;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
}
.screen .options__option textarea:focus {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}
.screen .options__option select,
.screen .options__option input[type="text"] {
  background: #D6D9DB;
  border: none;
  border-radius: 10px;
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 20px;
  text-align: left;
  padding: 16px;
  width: 100%;
  -webkit-appearance: none;
}
.screen .options__option select:focus,
.screen .options__option input[type="text"]:focus {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}
.screen .options__option select {
  display: block;
}
.screen .options__option small {
  display: block;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 10px;
}
.screen .options__option--disabled {
  opacity: 0.5;
}
.screen .options__option:before {
  background-color: var(--blue-light);
  content: '';
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0.65em;
  display: block;
  height: 32px;
  width: 32px;
}
.screen .options__option--selected:before {
  background-color: var(--orange);
  background-image: url('data:image/svg+xml,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 448 512"><defs><style> .cls-1 { fill: %23fff; stroke-width: 0px; } </style></defs><path class="cls-1" d="M447.9,142.5l-23.2,22-243.7,230.8-22,20.8-22-20.8-113.8-107.7L0,265.6l44-46.5,23.2,22,91.8,86.9,221.7-210,23.2-22,44,46.5h0Z"/></svg>');
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
  animation: popIn 0.2s ease-in-out;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.screen .options__option--selected input[type="text"] {
  display: block;
}
.screen .options__option--dropdown,
.screen .options__option--textarea {
  padding-left: 0;
  padding-right: 0;
}
.screen .options__option--dropdown:before,
.screen .options__option--textarea:before {
  display: none;
}
.screen .options__option--radio:before {
  border-radius: 50%;
}
.screen .options__option--radio.options__option--selected:before {
  background-image: url('data:image/svg+xml,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 512 512"><defs><style> .cls-1 { fill: %23fff; stroke-width: 0px; } </style></defs><path class="cls-1" d="M256,512c141.4,0,256-114.6,256-256S397.4,0,256,0,0,114.6,0,256s114.6,256,256,256Z"/></svg>');
  background-size: 16px;
}
.screen .options .options.group--visible .options__option {
  padding: 12px 20px 12px 60px;
}
.screen .options .options.group--visible .options__option--dropdown {
  padding: 12px 20px 12px 0;
}
.screen .options .options.group--visible .options__option:before {
  top: 11px;
}
.screen--form {
  background: var(--blue-dark);
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.screen--form .form {
  background: var(--grey);
  border-radius: 20px;
  padding: 60px 30px;
  width: 70%;
}
.screen--form .form form {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.screen--form .form__group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.screen--form .form__group label {
  color: var(--blue-dark);
  font-size: 2.8em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: right;
  width: calc(30% - 20px);
}
.screen--form .form__group input {
  background: #D6D9DB;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4em;
  font-weight: 400;
  text-align: left;
  padding: 16px;
  width: calc(70% - 20px);
}
.screen--form .form__group input.error {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.screen--form .form__group input:focus {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}
.screen--form .form__group:nth-child(even) label {
  color: var(--blue-light);
}
@media (max-height: 800px) {
  .screen--form .form {
    padding: 30px;
    position: relative;
    top: -50px;
  }
  .screen--form .form form {
    gap: 20px;
  }
}
.screen--splash {
  background: var(--grey);
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.screen--splash .splash-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.screen--splash img.hart-logo {
  max-width: 450px;
  width: 40%;
  height: auto;
  position: relative;
  z-index: 2;
}
.screen--splash .button {
  position: relative;
  z-index: 2;
}
.screen--splash .bottom-left {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 35%;
  height: auto;
}
.screen--splash .top-right {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: auto;
}
.screen--transition {
  background: var(--blue-dark);
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.screen--transition .transition-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.screen--transition h1 {
  font-size: 7.2em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding: 40px 240px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.screen--visible {
  display: flex;
  opacity: 1;
  animation: fadeInScreen;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-direction: normal;
}
.screen--transition.screen--visible {
  animation: fadeInAndDownScreen;
  animation-timing-function: ease-out;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-direction: normal;
}
.screen--hidden {
  display: none;
}
@media (min-aspect-ratio: 1/1) {
  .form {
    padding: 30px;
    position: relative;
    top: -50px;
  }
  .form form {
    gap: 20px;
  }
  /**   {
        --header-height: 100px;
        --buttons-height: 160px;
    }*/
}
@keyframes popIn {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spin360 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInScreen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInGroup {
  0% {
    opacity: 0;
    max-height: 0;
  }
  100% {
    opacity: 1;
    max-height: 100vh;
  }
}
@keyframes fadeInAndDownScreen {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.less.css.map */