*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

em {
  font-style: normal;
  border-bottom: 2px solid black;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  overflow-wrap: break-word;
}

/* root stacking order*/
#root, #__next {
  isolation: isolate;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}
body {
  width: 100%;
}

.bounce {
  animation: bounce 2s ease 2;
}

iframe.chatframe {
  border: 0 none;
  max-width: 0;
  max-height: 0;
  transition: max-height 0.3s ease, max-width 0.3s ease, scale 0.3s ease, opacity 0.3s ease;
  transform-origin: bottom right;
  z-index: 9999;
}
@media (max-width: 600px) {
  iframe.chatframe {
    box-sizing: border-box;
    max-height: 100vh !important;
  }
}

.date-input-wrapper, .date-input-wrapper-partner {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: calc(var(--gutter) / 4);
}
.date-input-wrapper:nth-child(1), .date-input-wrapper-partner:nth-child(1) {
  max-width: 120px;
}

.bubble {
  max-width: 0;
  white-space: nowrap;
  padding: 0;
  overflow: hidden;
  transition: max-width 0.3s ease;
}

.form-section.thank-you {
  padding: var(--gutter);
}
@media (min-width: 900px) {
  .form-section.thank-you {
    padding: 25%;
    height: 100%;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}
.form-section.thank-you h3 {
  color: var(--active);
}

.bounce .bubble {
  max-width: 400px;
  margin-right: 12px;
  margin-left: 8px;
}

.widget-toggle-icon {
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  background: var(--white);
  border: 1px solid #e9e9e9;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 16px 0px;
  width: fit-content;
  bottom: 16px;
  right: 16px;
}
.widget-toggle-icon:not(.active):hover .bubble {
  max-width: 400px;
  padding: 12px 6px 12px 18px;
}
.widget-toggle-icon svg {
  object-fit: contain;
  width: 48px;
  height: 48px;
  padding: 12px;
}

.overview .form-section {
  padding-bottom: var(--gutter);
  padding-top: var(--gutter);
  overflow: auto;
}
@media (min-width: 600px) {
  .overview .form-section {
    max-height: calc(100% - 93px);
  }
}

.step.active {
  padding-top: var(--gutter);
  padding-bottom: var(--gutter);
  overflow: auto;
}
@media (min-width: 600px) {
  .step.active {
    max-height: calc(100% - 93px);
  }
}

@media (max-width: 600px) {
  .chat {
    width: 100%;
    height: 100%;
  }
  .chat br.together {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .chat {
    min-width: 960px;
  }
}
.chat .form-wrapper {
  visibility: hidden;
  opacity: 0;
  border-radius: 16px;
  pointer-events: none;
  transform: scale(0);
  transform-origin: bottom right;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (max-width: 600px) {
  .chat .form-wrapper {
    height: 100%;
    overflow: auto;
  }
}
.chat .form-wrapper.active {
  pointer-events: visible;
  visibility: visible;
}
.chat .form-wrapper.show {
  opacity: 1;
  transform: scale(1);
}
.chat .form-body {
  height: initial;
}
.chat form {
  max-height: initial;
}
@media (max-width: 599px) {
  .chat form {
    padding-bottom: var(--gutter);
  }
}
.chat .overview .form-row:not(.avatar) {
  width: fit-content;
  padding: calc(var(--gutter) / 4) calc(var(--gutter) / 2);
  background: #FAFAFA;
  border: 1px solid #e9e9e9;
  border-radius: 0 8px 8px 8px;
}

#birthdate, #birthdate-partner,
#retirement-date, #retirement-date-partner {
  display: none;
}

.date-select-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: calc(var(--gutter) / 4);
}
.date-select-wrapper:nth-child(1) {
  max-width: 120px;
}

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

@media (max-width: 799px) {
  .hide-mobile {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media (min-width: 600px) {
  .hide-desktop {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

.flex {
  display: flex;
}

.no-padding {
  padding: 0;
}

.padding {
  padding: var(--gutter);
}

.padding-l {
  padding: calc(var(--gutter) * 3) 0;
}
.border-top {
  border-top: 6px solid var(--color-red);
}

.gap {
  gap: var(--gutter);
}

.no-wrap {
  white-space: nowrap;
}

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

.text-align-right {
  text-align: right;
}

.text-align-left {
  text-align: left;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-row-reverse {
  flex-direction: row-reverse;
}

.flex-direction-column-reverse {
  flex-direction: column-reverse;
}

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

.box-shadow {
  -webkit-box-shadow: -10px 10px 5px 0px rgba(238, 238, 238, 0.25);
  -moz-box-shadow: -10px 10px 5px 0px rgba(238, 238, 238, 0.25);
  box-shadow: -10px 10px 5px 0px rgba(238, 238, 238, 0.25);
}

#black {
  color: #000000;
}

#orange {
  color: #000000;
}

#red {
  color: var(--color-red);
}

#orange {
  color: #FF7A44;
}

#white {
  color: #fff;
}

.bg-red {
  padding: calc(var(--gutter) * 2) 0;
  background: #ed2615;
}

.bg-white {
  background: #fff !important;
}

.bg-grey {
  background: #f8f8f8 !important;
}

.bg-l-red {
  background: #ffe5dc !important;
}

.wide {
  width: 100%;
}

.mid {
  width: 75%;
}

.small {
  width: 50%;
}

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

.align-items-right {
  align-items: end;
}

.flow > :where(:not(:first-child)) {
  margin-top: 1em;
}

.margin-top {
  margin-top: 0.75em;
}

.margin-top-l {
  margin-top: 1.5em;
}

@media (min-width: 768px) {
  .flow > :where(:not(:first-child)) {
    margin-top: 1em;
  }
  .margin-top {
    margin-top: 1em;
  }
  .margin-top-l {
    margin-top: 2em;
  }
}
.no-margin {
  margin-top: 0;
}

.desktop-image {
  display: none;
}

.mobile-image {
  display: block;
}

@media (min-width: 600px) {
  .desktop-image {
    display: block;
  }
  .mobile-image {
    display: none;
  }
}
.no-style {
  background: transparent;
  border: 0 solid;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-vehicles {
  display: flex !important;
  flex-direction: column !important;
}
.related-vehicles a {
  border-bottom: 1px solid #ededed;
}

.capped {
  margin-left: auto;
  margin-right: auto;
  padding: var(--gutter);
}
.capped.s {
  max-width: 640px;
}
.capped.m {
  max-width: 768px;
}
.capped.l {
  max-width: 1024px;
}
.capped.xl {
  max-width: 1280px;
}
.capped.xxl {
  max-width: 1440px;
}

.hidden {
  display: none !important;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.container {
  padding: var(--gutter);
}

.grey {
  background: #f8f8f8;
  height: fit-content;
}

.full-width {
  width: 100%;
}

[data-cols="1"] {
  max-width: 8.3333%;
}

[data-cols="2"] {
  max-width: 16.6666%;
}

[data-cols="3"] {
  max-width: 25%;
}

[data-cols="4"] {
  max-width: 33.3333%;
}

[data-cols="5"] {
  max-width: 41.6666%;
}

[data-cols="6"] {
  max-width: 50%;
}
@media (max-width: 599px) {
  [data-cols="6"] {
    max-width: 100%;
  }
}

[data-cols="7"] {
  max-width: 58.3333%;
}
@media (max-width: 599px) {
  [data-cols="7"] {
    max-width: 100%;
  }
}

[data-cols="8"] {
  max-width: 66.6666%;
}

[data-cols="9"] {
  max-width: 75%;
}

[data-cols="10"] {
  max-width: 83.3333%;
}

[data-cols="11"] {
  max-width: 91.6666%;
}

[data-cols="12"] {
  max-width: 100%;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
  line-height: 1.4;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.125em;
  line-height: 1.4;
}

h6 {
  font-size: 1em;
}

.bolder {
  color: var(--border);
  cursor: pointer;
  font-weight: 500;
}

.step {
  display: none;
}
.step.active {
  display: block;
}
@media (max-width: 600px) {
  .step.active {
    padding-top: var(--gutter);
  }
}

form {
  width: 100%;
}
@media (min-width: 600px) {
  form {
    width: 60%;
  }
}

.white {
  display: flex;
  justify-content: center;
  padding: calc(var(--gutter) * 3) var(--gutter);
}

.grey {
  min-height: 15vh;
}

.form-body {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
@media (min-width: 600px) {
  .form-body {
    flex-direction: row;
  }
}

.form-section {
  width: 100%;
  padding: 0 var(--gutter);
}
.form-section.no-padding {
  padding: 0;
}
.form-section + .form-section {
  border-top: 1px solid var(--border);
}

.form-section[data-step=woning-section] {
  display: none;
}
.form-section[data-step=woning-section].active {
  display: block;
}

.step.active[data-step=thank-you] {
  overflow: hidden;
}

section[data-situation=alone] .form-row.together {
  visibility: hidden;
}
@media (max-width: 599px) {
  section[data-situation=alone] .form-row.together {
    display: none;
  }
}
section[data-situation=alone] .form-field.together {
  visibility: hidden;
}
@media (max-width: 599px) {
  section[data-situation=alone] .form-field.together {
    display: none;
  }
}
section[data-situation=alone] ul.together {
  visibility: hidden;
}
@media (max-width: 599px) {
  section[data-situation=alone] ul.together {
    display: none;
  }
}

.retirement {
  display: none;
}

section[data-situation=together] .form-row.together {
  visibility: visible;
}
section[data-situation=together] .form-row.together {
  visibility: visible;
}
section[data-situation=together] ul.together {
  visibility: visible;
}
section[data-situation=together] fieldset.form-section .together {
  display: flex;
}

.overview {
  overflow: auto;
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--border);
  background: var(--white);
}
@media (max-width: 599px) {
  .overview {
    border-top: 1px solid #e9e9e9;
    padding-top: calc(var(--gutter) * 3);
    margin-top: calc(var(--gutter) * 3);
  }
}
@media (min-width: 600px) {
  .overview {
    border-left: 1px solid #e9e9e9;
    width: 40%;
  }
}
.overview .no-style {
  width: 100%;
  display: flex;
  color: var(--black);
  gap: 16px;
  z-index: 1;
}
.overview .no-style li {
  width: 100%;
}
.overview .no-style a {
  color: var(--active);
}
.overview .form-row + .form-row {
  margin-top: 0;
}
.overview .form-row:not(:last-child) {
  margin-bottom: calc(var(--gutter) / 3);
}
.overview h2 {
  font-size: 1em;
  height: fit-content;
  font-weight: 500;
}
.overview ul span {
  display: block;
}
.overview ul span strong {
  color: var(--active);
  font-size: 0.8em;
  margin-bottom: 4px;
  font-weight: 700;
}

.total-amount, .monthly-amount {
  line-height: normal;
}

.form-row.contact {
  margin-top: calc(var(--gutter) / var(--spacing-unit));
}
.form-row.contact h4 {
  font-weight: 600;
  color: var(--active);
}
.form-row.contact small {
  margin-top: calc(var(--gutter) / 8);
  margin-right: 0.5em;
  text-decoration: underline;
}
.form-row.contact + form-row {
  margin-top: 8px;
}

.form-row.email {
  margin-top: 8px !important;
}

.form-row[data-step], .form-row[data-overview], .form-section[data-step] {
  display: none;
}
.form-row[data-step].active, .form-row[data-overview].active, .form-section[data-step].active {
  display: flex;
}

.chat {
  height: 100%;
}
.chat .form-wrapper {
  height: 100%;
}
.chat .form-wrapper .form-body {
  height: 100%;
}
.chat .form-wrapper .form-body form {
  height: 100%;
}

.form-wrapper {
  position: relative;
  flex-wrap: wrap;
  width: 100%;
  background: var(--white);
  max-width: 960px;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 600px) {
  .form-wrapper {
    height: 600px;
    border: 1px solid #e9e9e9;
  }
}

.radio-button-group {
  width: 100%;
  display: flex;
  gap: 8px;
}
.radio-button-group .radio-as-button {
  width: 100%;
  height: 40px;
  position: relative;
  border-radius: 64px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border 0.3s ease;
}
.radio-button-group .radio-as-button input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.radio-button-group .radio-as-button input[type=radio]:checked + label {
  transition: all 0.3s ease;
  background-color: var(--active);
  color: var(--white);
}
.radio-button-group .radio-as-button label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px;
  cursor: pointer;
  z-index: 0;
  transition: background-color 0.3s ease;
}

.form-row.switch {
  gap: 16px;
  align-items: center;
}
.form-row.switch label {
  text-wrap: balance;
  font-size: 1.1em;
}

.navigation-links {
  position: relative;
  font-size: 14px;
  display: flex;
  gap: 6px;
}
.navigation-links a {
  color: var(--black);
}

.form-navigation {
  position: relative;
  top: 0;
  background: white;
  z-index: 999;
  font-size: 1.1em;
  font-weight: 500;
  padding: var(--gutter);
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 599px) {
  .form-navigation {
    flex-direction: column;
    font-size: 1em;
  }
}
@media (min-width: 600px) {
  .form-navigation .navigation-links {
    display: none;
  }
}
.form-navigation #previous {
  text-align: left;
  height: fit-content;
  font-weight: 600;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.maxhyp h3 {
  color: var(--active);
  width: 100%;
  font-size: 2em;
}
@media (min-width: 600px) {
  .maxhyp h3 {
    font-size: 2.25em;
  }
}
.maxhyp h3.monthly-amount {
  color: var(--border);
}

.disclaimer {
  font-size: 0.6em;
  opacity: 0.7;
}
.disclaimer.submit {
  margin: 0 !important;
  position: absolute;
  bottom: -24px;
}

small.disclaimer {
  margin-bottom: 16px;
}

.powered-by {
  position: absolute;
  right: var(--gutter);
  color: #9ba6c1;
  font-size: 0.5em;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}
@media (min-width: 600px) {
  .powered-by .navigation-links {
    display: none;
  }
}
.powered-by svg {
  mix-blend-mode: hard-light;
  width: 56px;
}

fieldset.form-section {
  flex-direction: column;
}
fieldset.form-section .together {
  display: none;
}

.table-section {
  padding: 0.5em 0;
}
.table-section .table-field, .table-section .table-head {
  display: flex;
  justify-content: space-between;
}
.table-section .table-field {
  position: relative;
  color: #5e5b5b;
  padding-left: 4px;
}
.table-section .table-head {
  margin-bottom: 4px;
}
.table-section .table-head label {
  font-weight: 500;
  color: var(--border);
}

.actions .pill:first-child {
  margin-right: 8px;
}

.overview .form-row:not(.avatar) {
  margin-bottom: calc(var(--gutter) / 3);
  padding-bottom: calc(var(--gutter) / 3);
  border-bottom: 1px solid #e9efeb;
}
@media (max-width: 599px) {
  .overview {
    display: none;
  }
}

.avatar {
  margin: 0 !important;
  padding: 20px var(--gutter);
  display: flex;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 599px) {
  .avatar {
    gap: 16px;
    flex-wrap: nowrap !important;
    align-items: center;
    align-content: center;
  }
  .avatar .form-field {
    margin-top: 0 !important;
  }
}
.avatar h2 {
  font-weight: 600;
  font-size: 1.2em;
}
.avatar .contact {
  font-size: 14px;
  display: flex;
  gap: 6px;
}
.avatar .contact a {
  color: var(--black);
}
.avatar .navigation-links {
  margin-left: 8px;
  padding-left: 8px;
}
.avatar .navigation-links:after {
  content: "";
  height: 16px;
  width: 1px;
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
  background-color: var(--border);
  transform: translateY(-50%);
}
.avatar img {
  width: 64px;
}

.date-select-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: calc(var(--gutter) / 4);
}
.date-select-wrapper:nth-child(1) {
  max-width: 120px;
}

#birthdate, #birthdate-partner,
#retirement-date, #retirement-date-partner {
  display: none;
}

.date-input-wrapper, .date-input-wrapper-partner {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: calc(var(--gutter) / 4);
}
.date-input-wrapper .feedback, .date-input-wrapper-partner .feedback {
  display: none;
}

.informative .content-block {
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #1b1b1b;
}
.informative .content-block header {
  position: relative;
}
.informative .content-block header .powered-by {
  right: 0;
}
.informative .content-block h1 {
  font-size: 2.5em;
  line-height: 2.380952381ex;
}
.informative .content-block p {
  font-size: 1em;
  line-height: 3.125ex;
  margin: 3.125ex 0;
}

.tooltip {
  position: absolute;
  display: inline-block;
  top: 0px;
  margin-left: 6px;
  cursor: pointer;
}

@media (max-width: 599px) {
  .form-row.switch .tooltip {
    top: 50%;
    right: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
}

.tooltip .tooltiptext {
  max-width: 200px;
  font-size: 0.8em;
  visibility: hidden;
  width: max-content;
  color: var(--white);
  background-color: var(--active);
  box-shadow: 4px 4px 4px 0px rgb(224, 224, 224);
  text-align: left;
  border-radius: 4px 4px 0 4px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  right: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip .tooltiptext ul {
  font-size: 16px;
}
.tooltip .tooltiptext li {
  font-weight: 500;
}
.tooltip .tooltiptext li:not(:last-child) {
  margin-bottom: 8px;
}
.tooltip .tooltiptext strong {
  display: block;
}
.tooltip .tooltiptext.right-bottom {
  bottom: inherit;
  right: inherit;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip-icon {
  width: 16px;
}
.tooltip-icon path {
  fill: var(--active);
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--active) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.preloader-wrapper.active {
  opacity: 1;
}

.step[data-step=maxhyp] {
  position: relative;
}

.outline {
  cursor: pointer;
  border-radius: 4px;
  padding: 6px 24px;
  border: 1px solid var(--active);
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  white-space: nowrap;
}
.outline.ghost {
  border: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  color: var(--active);
}

.button {
  background: var(--active);
  color: var(--white);
  cursor: pointer;
  border-radius: 4px;
  padding: 6px 24px;
  border: 1px solid var(--active);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hr {
  width: 100%;
  height: 1px;
  background: var(--border);
}

input[type=submit], .submit-button {
  background: var(--color-status-warning);
  color: #111;
  font-weight: 500;
  border: 0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.3s;
}
input[type=submit]:hover, .submit-button:hover {
  background: var(--color-status-warning-hover);
}

.previous-active {
  position: relative;
}
.previous-active:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: url("assets/images/icons/arrow-back.svg");
}

a.underline {
  cursor: pointer;
  color: var(--active);
}
a.underline.active {
  border-bottom: 1px solid var(--active);
}

a.pill {
  font-size: 12px;
  cursor: pointer;
  border: 0;
  border-radius: 32px;
}
a.pill.active {
  color: var(--white);
  background: var(--active);
  padding: 2px 12px;
}

.disclaimer.input-hint {
  position: absolute;
  right: 0;
  bottom: -4px;
}

.bento {
  margin-top: 0.5em !important;
}
.bento .form-row {
  margin-top: 0.5em !important;
}

.actions {
  margin-top: 0.5em !important;
  display: flex;
  align-items: center !important;
  align-content: center !important;
}
.actions .form-field {
  align-items: center !important;
  align-content: center !important;
}
.actions .pill {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}
.actions label {
  width: auto !important;
}
.actions .bolder {
  font-size: 0.7em;
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid var(--border);
  color: var(--black);
  font-weight: 300;
}

input, textarea, select {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 8px;
}

select {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
  color: inherit;
}

.icon-right {
  padding-right: 28px;
  background-position: right center;
}
@media (max-width: 599px) {
  .icon-right {
    padding-right: 24px;
  }
}

.icon-left {
  padding-left: 28px;
  background-position: left center;
}
@media (max-width: 599px) {
  .icon-left {
    padding-left: 24px;
  }
}

.icon-left, .icon-right {
  background-size: 28px;
  background-repeat: no-repeat;
}
@media (max-width: 599px) {
  .icon-left, .icon-right {
    background-size: 24px;
  }
}

.dropdown {
  background-image: url(/assets/images/icons/arrow-down.svg);
}

.search {
  background-image: url(/assets/images/icons/search.svg);
}

.money {
  background-image: url(/assets/images/icons/money.svg);
}

.energy {
  background-image: url(/assets/images/icons/label.svg);
}

.back {
  background-image: url(/assets/images/icons/arrow-back.svg);
}

.form-row {
  display: flex;
}
@media (max-width: 599px) {
  .form-row:not(.switch) {
    flex-wrap: wrap;
  }
}
.form-row.padding-top {
  padding-top: calc(var(--gutter) / var(--spacing-unit));
}
.form-row.hidden {
  display: none;
}
.form-row.relative {
  position: relative;
  flex-direction: column;
  margin-top: 8px !important;
}
.form-row label, .form-row input, .form-row textarea, .form-row select {
  width: 100%;
}
.form-row .form-field {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.form-row .form-field.no-wrap {
  display: block;
}
.form-row .form-field.no-width {
  width: auto;
}
.form-row .form-field .input-hint, .form-row .form-field .feedback {
  font-size: 0.7em;
}
.form-row .form-field .input-hint {
  pointer-events: none;
  opacity: 0.7;
}
.form-row .form-field.is-invalid input, .form-row .form-field.is-invalid textarea, .form-row .form-field.is-invalid select {
  border-color: var(--color-status-error);
}
.form-row .form-field.is-invalid .input-hint, .form-row .form-field.is-invalid label, .form-row .form-field.is-invalid .feedback {
  color: var(--color-status-error);
}
.form-row .form-field.is-invalid .input-hint {
  display: none;
}
.form-row .form-field.is-valid input, .form-row .form-field.is-valid textarea, .form-row .form-field.is-valid select {
  border-color: var(--color-status-success);
}
.form-row .form-field.is-valid .input-hint, .form-row .form-field.is-valid .feedback, .form-row .form-field.is-valid label {
  color: var(--color-status-success);
}
.form-row .form-field.inline {
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
}
.form-row .form-field.inline img {
  max-width: 52px;
  max-height: 52px;
  border: 1px solid #bfbfbf;
}
.form-row .form-field.inline label {
  flex-wrap: nowrap;
  display: flex;
}
.form-row .form-field.inline .text {
  margin-left: 16px;
  display: flex;
  flex-wrap: wrap;
}
.form-row .form-field.inline .text > * {
  width: 100%;
  display: inline-block;
  padding-bottom: 0;
  margin-top: 0;
}

.form-field.as-step {
  display: none;
}
.form-field.as-step.active {
  display: initial;
}

.form-row + .form-row, .form-section + .form-section, fieldset + fieldset, .form-section + .form-row, .form-row + .form-section {
  margin-top: var(--gutter);
}
@media (min-width: 600px) {
  .form-row + .form-row, .form-section + .form-section, fieldset + fieldset, .form-section + .form-row, .form-row + .form-section {
    margin-top: calc(var(--gutter) / var(--spacing-unit));
  }
}

[data-hint=true] + * {
  margin-top: var(--gutter) !important;
}

.input-hint + .feedback {
  margin-top: calc(var(--gutter) / 4);
}
@media (min-width: 600px) {
  .input-hint + .feedback {
    margin-top: calc(var(--gutter) / 8);
  }
}

.form-section[data-step=woning-section] .form-field[data-cols="6"] {
  max-width: 50%;
}

input + .input-hint, input + .feedback, label + input, label + .select-wrapper, input + .notification, label + .form-row, label + textarea, label + select, label + fieldset, label + .as-input, .as-input + .as-input {
  margin-top: calc(var(--gutter) / 4);
}
@media (max-width: 599px) {
  .form-field + .form-field, .as-input + .as-input {
    margin-top: var(--gutter);
  }
  .form-field + .form-field[data-cols="1"], .form-field + .form-field[data-cols="2"], .form-field + .form-field[data-cols="3"], .form-field + .form-field[data-cols="4"], .form-field + .form-field[data-cols="5"], .form-field + .form-field[data-cols="7"], .form-field + .form-field[data-cols="8"], .form-field + .form-field[data-cols="9"], .form-field + .form-field[data-cols="10"], .form-field + .form-field[data-cols="11"], .form-field + .form-field[data-cols="12"], .as-input + .as-input[data-cols="1"], .as-input + .as-input[data-cols="2"], .as-input + .as-input[data-cols="3"], .as-input + .as-input[data-cols="4"], .as-input + .as-input[data-cols="5"], .as-input + .as-input[data-cols="7"], .as-input + .as-input[data-cols="8"], .as-input + .as-input[data-cols="9"], .as-input + .as-input[data-cols="10"], .as-input + .as-input[data-cols="11"], .as-input + .as-input[data-cols="12"] {
    margin-left: var(--gutter);
    margin-top: initial;
  }
}
@media (min-width: 600px) {
  .form-field + .form-field, .as-input + .as-input {
    margin-left: calc(var(--gutter) / var(--spacing-unit));
  }
}

.input-hint, .feedback {
  margin-bottom: calc(var(--gutter) / 4 - 1.5em);
}
@media (min-width: 600px) {
  .input-hint, .feedback {
    margin-bottom: calc(var(--gutter) / 8 - 1.5em);
  }
}

.label-hint {
  font-size: 0.7em;
}

input[type=checkbox],
input[type=radio]:not(.radio-button) {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 21px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}
input[type=checkbox]:checked,
input[type=radio]:not(.radio-button):checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: .3s;
  --d-t: .6s;
  --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}
input[type=checkbox]:after,
input[type=radio]:not(.radio-button):after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.2s;
}
input[type=checkbox]:disabled,
input[type=radio]:not(.radio-button):disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: 0.9;
}
input[type=checkbox]:disabled:checked,
input[type=radio]:not(.radio-button):disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}
input[type=checkbox]:disabled + label,
input[type=radio]:not(.radio-button):disabled + label {
  cursor: not-allowed;
}
input[type=checkbox]:hover:not(:checked):not(:disabled),
input[type=radio]:not(.radio-button):hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}
input[type=checkbox]:focus,
input[type=radio]:not(.radio-button):focus {
  box-shadow: 0 0 0 var(--focus);
}
input[type=checkbox]:not(.switch),
input[type=radio]:not(.radio-button):not(.switch) {
  width: 21px;
}
input[type=checkbox]:not(.switch):after,
input[type=radio]:not(.radio-button):not(.switch):after {
  opacity: var(--o, 0);
}
input[type=checkbox]:not(.switch):checked,
input[type=radio]:not(.radio-button):not(.switch):checked {
  --o: 1;
}
input[type=checkbox] + label,
input[type=radio]:not(.radio-button) + label {
  line-height: 21px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  margin-left: 4px;
}

input[type=checkbox]:not(.switch) {
  border-radius: 7px;
}
input[type=checkbox]:not(.switch):after {
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: 0;
  border-left: 0;
  left: 7px;
  top: 4px;
  transform: rotate(var(--r, 20deg));
}
input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
}
input[type=checkbox].switch {
  width: 38px;
  border-radius: 11px;
}
input[type=checkbox].switch:after {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: var(--ab, var(--border));
  transform: translateX(var(--x, 0));
}
input[type=checkbox].switch:checked {
  --ab: var(--white);
  --x: 17px;
}
input[type=checkbox].switch:disabled:not(:checked):after {
  opacity: 0.6;
}

input[type=radio]:not(.button) {
  border-radius: 50%;
}
input[type=radio]:not(.button):after {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  transform: scale(var(--s, 0.7));
}
input[type=radio]:not(.button):checked {
  --s: .5;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0 none;
}

.bento {
  background: #f7f7f7;
  margin-top: calc(var(--gutter) / var(--spacing-unit));
  padding: calc(var(--gutter) / 2);
  padding-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.select-wrapper {
  position: relative;
}
.select-wrapper:after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L5 5L10 0H0Z' fill='black'/%3E%3C/svg%3E");
  position: absolute;
  top: 4px;
  right: 8px;
  width: 10px;
  height: 100%;
  display: block;
}

input {
  color: var(--black);
}

.notification {
  position: relative;
  width: 100%;
  padding: 6px 10px;
  font-size: 0.8em;
  border: 1px solid var(--active);
  border-radius: 4px;
  background: rgba(39, 94, 254, 0.1);
  border-top-left-radius: 0;
}
.notification .icon {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 1em;
  height: 1em;
}
.notification .tip {
  font-weight: 600;
}
.notification p {
  margin-left: 20px;
}
.notification.error {
  border-color: var(--color-status-error);
  background: rgba(220, 53, 69, 0.1);
}
.notification.error .icon path {
  fill: var(--color-status-error);
}
.notification.error .tip {
  color: var(--color-status-error);
}
.notification.success {
  border-color: var(--color-status-success);
  background: rgba(0, 158, 40, 0.1);
}
.notification.success .icon path {
  fill: var(--color-status-success);
}
.notification.success .tip {
  color: var(--color-status-success);
}
.notification.warning {
  border-color: var(--color-status-warning);
  background: rgba(255, 193, 7, 0.1);
}
.notification.warning .icon path {
  fill: var(--color-status-warning);
}
.notification.warning .tip {
  color: var(--color-status-warning);
}

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