@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1; }

/* Remove the stupid outer glow in Webkit */
*:focus {
  outline: 0; }

* {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0; }

.clear {
  content: "";
  display: table;
  clear: both; }

strong {
  font-weight: bold; }

a {
  cursor: pointer; }

.slide {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden; }
  .slide__content {
    display: flex;
    gap: var(--gap-md);
    padding: 5rem 0;
    width: max-content;
    will-change: transform;
    padding-right: var(--gap-md);
    animation: infiniteSlide 30s infinite linear; }
    .slide__content:hover {
      animation-play-state: paused; }
  .slide::before, .slide::after {
    position: absolute;
    top: 0;
    z-index: var(--z-gradient);
    width: 400px;
    height: 100%;
    content: '';
    pointer-events: none; }
  .slide::before {
    left: 0;
    background: linear-gradient(to right, var(--grey-bluish), rgba(255, 255, 255, 0)); }
  .slide::after {
    right: 0;
    background: linear-gradient(to left, var(--grey-bluish), rgba(255, 255, 255, 0)); }
  @media screen and (max-width: 48rem) {
    .slide {
      padding: 0; }
      .slide__content {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 1.5rem 1rem;
        gap: var(--gap-xs); }
      .slide::before, .slide::after {
        display: none; } }
@keyframes infiniteSlide {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-33.3%); } }

@media screen and (max-width: 48rem) {
  .testimonies .slide__content {
    animation: none;
    overflow-x: auto; } }

.footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--gap-xl);
  align-items: center;
  justify-content: center;
  padding: var(--footer-padding);
  background: var(--bg-footer);
  border-top: 1px solid var(--white); }
  .footer__content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xl);
    width: 100%;
    max-width: 1500px;
    justify-content: center; }
    @media screen and (max-width: 48rem) {
      .footer__content {
        gap: var(--gap-xs); } }
  .footer__column {
    flex: 1;
    flex-direction: column;
    list-style-type: none;
    min-width: max-content; }
    .footer__column .btn, .footer__column .btn--disabled, .footer__column .btn--disabled--ghost, .footer__column .btn--sm, .footer__column .btn--large, .footer__column .btn--green, .footer__column .btn--green--ghost, .footer__column .btn--blue, .footer__column .btn--blue--ghost, .footer__column .btn--dark-blue, .footer__column .btn--dark-blue--ghost, .footer__column .btn--light-blue, .footer__column .btn--light-blue--ghost, .footer__column .btn--red, .footer__column .btn--red--ghost, .footer__column .btn--linear, .footer__column .btn--disabled--linear, .footer__column .btn--green--linear, .footer__column .btn--blue--linear, .footer__column .btn--dark-blue--linear, .footer__column .btn--light-blue--linear, .footer__column .btn--red--linear {
      margin-top: var(--gap-md); }
    @media screen and (max-width: 48rem) {
      .footer__column {
        min-width: 125px; } }
  .footer__item a {
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-size-footer); }
  .footer__logo {
    width: 24rem;
    max-width: 100%; }
    @media screen and (max-width: 48rem) {
      .footer__logo {
        width: 15rem; } }
@media (min-width: 768px) and (max-height: 800px) {
  html {
    font-size: 70%; } }

@media (min-width: 768px) and (min-height: 800px) {
  html {
    font-size: 90%; } }

@media (max-width: 768px) {
  html {
    font-size: 100%; } }

:root {
  --white: #fff;
  --red: #e30045;
  --black: #111111;
  --black-bluish: #040849;
  --blue-dark: #00137A;
  --blue-medium-dark: #2754A4;
  --blue: #0021C4;
  --blue-medium: #0083D5;
  --blue-light: #82CBFF;
  --blue-lighter: #B7E0FE;
  --green: #1DA47E;
  --green-light: #E2F5F4;
  --green-dark: #13664F;
  --grey: #AAAAAA;
  --grey-medium-light: #8f8f8f;
  --grey-medium: #464646;
  --grey-light: #F3F3FF;
  --grey-lighter: #fbfbff;
  --grey-bluish: #ECF5FC;
  --grey-bluish-medium-light: #E0ECFA;
  --grey-bluish-dark: #CED0DC;
  --grey-bluish-light: #f1f7fc;
  --grey-bluish-medium: #E2E4F1;
  --blue-hover: #001FB6;
  --blue-dark-hover: #021891;
  --blue-lighter-hover: #A4D9FF;
  --blue-light-hover: #75C6FF;
  --blue-medium-hover: #007DCC;
  --red-hover: #D70444;
  --green-hover: #1c9976;
  --bg-primary: var(--blue);
  --bg-accent: var(--red);
  --bg-surface: var(--grey-light);
  --text-primary: var(--black);
  --text-inverse: var(--white);
  --text-blue-primary: var(--blue);
  --text-blue-inverse: var(--blue-light);
  --font-title: 'Minigap', sans-serif;
  --font-button: 'Minigap', sans-serif;
  --font-input-label: 'Lato', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-checkbox: 'Montserrat', sans-serif;
  --font-text: 'Lato', sans-serif;
  --bg-body: var(--white);
  --bg-hero: var(--blue);
  --bg-section: var(--grey-light);
  --bg-footer: var(--blue);
  --font-size-title-xl: 4rem;
  --font-size-title: 2.4rem;
  --font-size-title-sm: 2.2rem;
  --font-size-title-xs: 1.5rem;
  --font-size-title-2xs: 1.25rem;
  --font-size-subtitle: 1.4rem;
  --font-size-subtitle-sm: 1rem;
  --font-size-label: 1.025rem;
  --font-size-label-sm: .9rem;
  --font-size-footer: 1rem;
  --font-size-select: 1.5rem;
  --font-size-select-sm: 1.25rem;
  --font-size-navbar: 1.3rem;
  --font-size-button: 1.25rem;
  --font-size-text: 1.5rem;
  --font-size-text-sm: 1.3rem;
  --font-size-text-xs: 1.2rem;
  --font-size-text-2xs: 1rem;
  --font-size-text-3xs: .8rem;
  --font-size-badge: 1.6rem;
  --font-size-badge-sm: 1.3rem;
  --font-size-badge-xs: 1rem;
  --font-size-link: 1.7rem;
  --font-size-button-sm: 1.2rem;
  --font-size-copyright: .8rem;
  --gap-3xs: .3rem;
  --gap-2xs: .5rem;
  --gap-xs: 1rem;
  --gap-sm: 1.5rem;
  --gap-md: 2rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-2xl: 6rem;
  --padding-sm: 0.5rem;
  --padding-md: 1rem;
  --padding-lg: 1.5rem;
  --padding-xl: 2rem;
  --section-gap: 4rem;
  --section-gap-sm: 2rem;
  --content-gap: 1rem;
  --content-gap-lg: 3rem;
  --section-padding-y: 5rem;
  --section-padding-x: 1rem;
  --section-padding: 5rem 1rem;
  --section-padding-xl-y: 8rem;
  --section-padding-xl-x: 1rem;
  --section-padding-xl: 8rem 1rem;
  --section-padding-sm-y: 5rem;
  --section-padding-sm-x: 1rem;
  --section-padding-sm: 5rem 1rem;
  --section-padding-xs-y: 6rem;
  --section-padding-xs-x: 1rem;
  --section-padding-xs: 6rem 1rem;
  --modal-content-padding: 2.5rem 1rem;
  --footer-padding: 5rem 2rem;
  --min-section-height: 90vh;
  --height-button: auto;
  --height-button-large: auto;
  --height-button-sm: 3rem;
  --height-select: 4rem;
  --height-input: 3.5rem;
  --height-input-sm: 3.5rem;
  --input-icon-width: 3rem;
  --height-icon: 5rem;
  --radius-2xs: 0.25rem;
  --radius-xs: 0.5rem;
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 2.75rem;
  --radius-circle: 100%;
  --max-width-navbar: 1200px;
  --max-width-navbar-sm: 800px;
  --max-width-select: 29rem;
  --max-width-modal: 54rem;
  --modal-close-button-size: 2rem;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-collapse: 0.4s cubic-bezier(0.4, 0, 0.4, 0.5);
  --shadow-dropdown: 0 2px 4px rgba(0, 0, 0, 0.1);
  --z-navbar: 5;
  --z-gradient: 2;
  --z-content: 1;
  --overlay-light: rgba(255, 255, 255, 0.15); }
  @media screen and (min-width: 48rem) {
    :root {
      --bg-footer: var(--blue-dark);
      --font-size-title-xl: 6rem;
      --font-size-title: 3.5rem;
      --font-size-title-sm: 2.8rem;
      --font-size-title-xs: 2rem;
      --font-size-title-2xs: 1.5rem;
      --font-size-subtitle: 1.8rem;
      --font-size-subtitle-sm: 1.4rem;
      --font-size-label: 1.6rem;
      --font-size-label-sm: 1.3rem;
      --font-size-footer: 1.3rem;
      --font-size-select: 1.8rem;
      --font-size-select-sm: 1.5rem;
      --font-size-navbar: 1.6rem;
      --font-size-button: 1.5rem;
      --section-padding-y: 12rem;
      --section-padding-x: 7vw;
      --section-padding: 12rem 7vw;
      --section-padding-xl-y: 8rem;
      --section-padding-xl-x: 23.5vw;
      --section-padding-xl: 8rem 23.5vw;
      --section-padding-sm-y: 8rem;
      --section-padding-sm-x: 7vw;
      --section-padding-sm: 8rem 7vw;
      --section-padding-xs-y: 6rem;
      --section-padding-xs-x: 3vw;
      --section-padding-xs: 6rem 3vw;
      --modal-content-padding: 2.5rem 3.5rem;
      --footer-padding: 8rem 7vw 15rem;
      --modal-close-button-size: 2.5rem;
      --height-button: 5rem;
      --height-button-large: 3.8rem;
      --height-select: 5rem;
      --height-input: 4rem;
      --height-input-sm: 3.5rem;
      --input-icon-width: 4rem;
      --gap-lg: 3rem; } }
body {
  padding: 0;
  margin: 0;
  height: 200svh;
  background: var(--bg-body);
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  font-size: 1.6rem; }

h1, h2, h3, p {
  margin: 0; }

.h1, .h1--xl, .h1--sm {
  font-family: var(--font-title);
  font-size: var(--font-size-title);
  line-height: 110%; }
  .h1--sm {
    font-size: var(--font-size-title-sm); }
  .h1--xl {
    font-size: var(--font-size-title-xl); }

.h2 {
  font-family: var(--font-title);
  font-size: var(--font-size-subtitle); }
  .h2--sm {
    font-size: var(--font-size-subtitle-sm); }

.h3 {
  font-family: var(--font-title);
  font-size: var(--font-size-label); }

.label {
  font-family: var(--font-title);
  font-size: var(--font-size-label); }

.p, .p--xs, .p--sm {
  font-family: var(--font-text);
  font-size: var(--font-size-text);
  color: var(--black); }
  .p--sm {
    font-size: var(--font-size-text-sm); }
  .p--xs {
    font-size: var(--font-size-text-xs); }

.a {
  color: var(--blue);
  font-family: 'Minigap', sans-serif;
  font-family: var(--font-size-link); }

.color-blue {
  color: var(--blue); }

.color-blue-dark {
  color: var(--blue-dark); }

.badge, .badge--sm, .badge--light-blue, .badge--blue-medium-dark, .badge--dark-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2xs);
  padding: 0 var(--padding-md);
  background: var(--red);
  width: max-content;
  border-radius: 5rem;
  color: var(--white);
  font-family: var(--font-title);
  font-size: var(--font-size-badge);
  margin: auto;
  max-width: 100%; }
  .badge--dark-blue {
    background: var(--blue-dark); }
  .badge--blue-medium-dark {
    background: var(--blue-medium-dark); }
  .badge--light-blue {
    background: var(--blue-lighter);
    color: var(--blue-medium); }
  .badge--sm {
    font-size: var(--font-size-badge-sm); }
  .badge--rounded-sm {
    border-radius: var(--radius-sm); }

.img_white {
  filter: brightness(0) invert(1); }

.copyright {
  font-size: var(--font-size-copyright);
  color: var(--white);
  text-align: center;
  line-height: 2rem; }

@media screen and (max-width: 64rem) {
  .desktop-only {
    display: none !important; } }

@media screen and (min-width: 64rem) {
  .mobile-only {
    display: none !important; } }

.hide {
  display: none; }

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

.bold {
  font-weight: bold; }

b {
  font-weight: 700; }

.divider {
  height: .5px;
  border-width: 0;
  border-bottom: 1px solid var(--grey-bluish-dark);
  width: 100%; }

.flex-1 {
  flex: 1; }

.flex-2 {
  flex: 2; }

.flex-3 {
  flex: 3; }

.link {
  color: var(--blue-medium);
  text-decoration: none; }

.nav, .nav--sm {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: var(--padding-sm) 4rem var(--padding-sm) var(--padding-xl);
  width: 90%;
  max-width: var(--max-width-navbar);
  transform: translateX(-50%);
  left: 50%;
  top: 1rem;
  font-family: 'Monsterrat', sans-serif;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: top var(--transition-smooth);
  z-index: var(--z-navbar);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  .nav--hide {
    top: -50%; }
  .nav--is-open .nav__list {
    max-height: 1000px; }
  .nav--no-list {
    min-width: 40%;
    max-width: 100%;
    width: max-content;
    justify-content: center; }
  .nav--sm {
    max-width: var(--max-width-navbar-sm);
    min-width: 30%;
    padding: var(--padding-sm) var(--padding-xl); }
    .nav--sm img {
      width: 20rem; }
  @media screen and (max-width: 75rem) {
    .nav, .nav--sm {
      padding: var(--padding-sm) var(--padding-xl);
      height: auto;
      max-width: 100%; } }
  .nav__list {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    transition: max-height var(--transition-collapse), opacity var(--transition-normal), padding var(--transition-smooth); }
    @media screen and (max-width: 75rem) {
      .nav__list {
        position: absolute;
        background-color: var(--white);
        top: 4rem;
        left: 0;
        flex-direction: column;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-dropdown);
        gap: 0;
        max-height: 0;
        overflow: hidden; } }
  .nav__logo-link {
    display: flex;
    align-items: center;
    justify-content: center; }
  .nav__logo-image {
    width: 24rem;
    height: auto; }
    @media screen and (max-width: 75rem) {
      .nav__logo-image {
        width: 14rem; } }
  .nav__item {
    font-size: var(--font-size-navbar);
    font-weight: 600;
    list-style: none;
    padding-right: 1.25rem; }
    .nav__item a {
      color: var(--blue);
      text-decoration: none; }
      @media screen and (max-width: 75rem) {
        .nav__item a {
          display: inline-block;
          padding: var(--padding-md) var(--padding-xl);
          width: 100%;
          border-bottom: 1px solid var(--grey-bluish); } }
    @media screen and (max-width: 75rem) {
      .nav__item {
        width: 100%; } }
  @media screen and (min-width: 64rem) {
    .nav__icon {
      display: none; } }
  @media screen and (max-width: 75rem) {
    .nav__icon {
      width: 2rem; } }
@media screen and (max-width: 48rem) {
  .help .hero__animated {
    width: 100%;
    left: 0; }
    .help .hero__animated--bg {
      width: 57vw;
      object-position: bottom left; } }

.hero {
  position: relative;
  display: flex;
  min-height: 15rem;
  height: 100svh;
  background: var(--blue);
  overflow: hidden; }
  .hero--simple {
    min-height: 5rem !important;
    height: 5rem !important; }
    .hero--simple .hero__animated,
    .hero--simple .hero__content {
      display: none; }
  .hero--fade-out {
    animation: heroShrink 1.5s ease-in-out forwards; }
    .hero--fade-out .hero__animated-person {
      animation: none !important; }
      .hero--fade-out .hero__animated-person--one {
        animation: personExitDown 1.2s ease-in-out forwards !important; }
      .hero--fade-out .hero__animated-person--two {
        animation: personExitUp 1.4s ease-in-out 0.1s forwards !important; }
      .hero--fade-out .hero__animated-person--three {
        animation: personExitRight 1.5s ease-in-out 0.2s forwards !important; }
      .hero--fade-out .hero__animated-person--four {
        animation: personExitLeft 1.3s ease-in-out 0.15s forwards !important; }
    .hero--fade-out .hero__animated-bg,
    .hero--fade-out .hero__animated-bg-left,
    .hero--fade-out .hero__animated-bg-right {
      animation: bgFadeOut 1.5s ease-in-out forwards !important; }
    .hero--fade-out .hero__content {
      animation: contentFadeOut 1.2s ease-in-out forwards; }
  .hero--fade-in {
    animation: heroGrow 1.5s ease-in-out forwards; }
    .hero--fade-in .hero__animated-person {
      animation: none !important; }
      .hero--fade-in .hero__animated-person--one {
        animation: personEnterUp 1.2s ease-out forwards !important; }
      .hero--fade-in .hero__animated-person--two {
        animation: personEnterDown 1.4s ease-out 0.1s forwards !important; }
      .hero--fade-in .hero__animated-person--three {
        animation: personEnterLeft 1.5s ease-out 0.2s forwards !important; }
      .hero--fade-in .hero__animated-person--four {
        animation: personEnterRight 1.3s ease-out 0.15s forwards !important; }
    .hero--fade-in .hero__animated-bg,
    .hero--fade-in .hero__animated-bg-left,
    .hero--fade-in .hero__animated-bg-right {
      animation: bgFadeIn 1.5s ease-out forwards !important; }
    .hero--fade-in .hero__content {
      animation: contentFadeIn 1.2s ease-out 0.3s forwards; }
  .hero .h1, .hero .h1--sm, .hero .h1--xl {
    margin-top: 3rem; }
    @media screen and (max-width: 48rem) {
      .hero .h1, .hero .h1--sm, .hero .h1--xl {
        font-size: 2rem; } }
  @media screen and (max-width: 48rem) {
    .hero .h2 {
      font-weight: 400;
      font-size: 1rem; } }
  .hero h1,
  .hero h2 {
    color: var(--text-inverse);
    margin-bottom: var(--gap-xs); }
  @media screen and (min-width: 48rem) {
    .hero {
      position: static;
      height: 89svh; } }
  .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6svw;
    z-index: var(--z-content); }
    .hero__content--center {
      align-items: center; }
    .hero__content--center-left > * {
      max-width: 650px;
      text-align: center; }
  .hero__form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap-md); }
  .hero__animated {
    position: absolute;
    width: 100%;
    height: 100%; }
    .hero__animated img {
      position: absolute; }
    @media screen and (min-width: 48rem) {
      .hero__animated {
        position: relative;
        width: auto; } }
  .hero__animated-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50vw;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    animation: animatedBg 1.5s ease-out; }
  .hero__animated-person {
    object-fit: contain;
    will-change: opacity, transform; }
    .hero__animated-person--one {
      top: 5rem;
      right: 0;
      width: 40vw;
      animation: animatedPerson1 1.2s ease-out; }
      @media screen and (min-width: 48rem) {
        .hero__animated-person--one {
          top: auto;
          right: 6.95vw;
          bottom: 25.45vw;
          width: 19.33vw; } }
    .hero__animated-person--two {
      bottom: 5vh;
      left: 0;
      width: 30vw;
      animation: animatedPerson2 1.4s ease-out 0.1s both; }
      @media screen and (min-width: 48rem) {
        .hero__animated-person--two {
          right: 16.9vw;
          bottom: -0.5vw;
          left: auto;
          width: 18.3vw; } }
    .hero__animated-person--three {
      top: 5rem;
      right: 38.5vw;
      width: 20vw;
      animation: animatedPerson3 1.5s ease-out 0.2s both; }
      @media screen and (min-width: 48rem) {
        .hero__animated-person--three {
          top: auto;
          right: 26.25vw;
          bottom: 15.4vw;
          width: 18.6vw; } }
    .hero__animated-person--four {
      bottom: 0;
      left: 30vw;
      width: 30vw;
      animation: animatedPerson4 1.3s ease-out 0.15s both; }
      @media screen and (min-width: 48rem) {
        .hero__animated-person--four {
          right: 0;
          bottom: 6.55vw;
          left: auto;
          width: 16.8vw; } }
  .hero__animated-bg-left, .hero__animated-bg-right {
    position: absolute;
    object-fit: contain;
    animation: animatedBg 1.5s ease-out; }
  .hero__animated-bg-left {
    top: 0;
    left: 0;
    width: 100%; }
  .hero__animated-bg-right {
    left: 0rem;
    bottom: 0;
    width: 79.3vw; }
  @media screen and (max-width: 76rem) {
    .hero__form {
      justify-content: flex-end; } }
  @media (prefers-reduced-motion: reduce) {
    .hero--fade-out, .hero--fade-in {
      animation: none !important; }
      .hero--fade-out .hero__animated-person,
      .hero--fade-out .hero__animated-bg,
      .hero--fade-out .hero__animated-bg-left,
      .hero--fade-out .hero__animated-bg-right,
      .hero--fade-out .hero__content, .hero--fade-in .hero__animated-person,
      .hero--fade-in .hero__animated-bg,
      .hero--fade-in .hero__animated-bg-left,
      .hero--fade-in .hero__animated-bg-right,
      .hero--fade-in .hero__content {
        animation: none !important; }
    .hero .hero__animated-person,
    .hero .hero__animated-bg,
    .hero .hero__animated-bg-left,
    .hero .hero__animated-bg-right {
      animation: none !important;
      opacity: 1;
      transform: none; }
    .hero--fade-out {
      height: 5rem;
      min-height: 5rem; }
      .hero--fade-out .hero__animated-person,
      .hero--fade-out .hero__animated-bg,
      .hero--fade-out .hero__animated-bg-left,
      .hero--fade-out .hero__animated-bg-right,
      .hero--fade-out .hero__content {
        opacity: 0; }
    .hero--fade-in {
      height: 100svh;
      min-height: 15rem; }
      .hero--fade-in .hero__animated-person,
      .hero--fade-in .hero__animated-bg,
      .hero--fade-in .hero__animated-bg-left,
      .hero--fade-in .hero__animated-bg-right,
      .hero--fade-in .hero__content {
        opacity: 1; } }
@keyframes animatedBg {
  from {
    opacity: 0;
    transform: scale(1.2); }
  to {
    opacity: 1;
    transform: scale(1); } }

@keyframes animatedPerson1 {
  from {
    opacity: 0;
    transform: translateY(-50vh); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes animatedPerson2 {
  from {
    opacity: 0;
    transform: translateY(50vh); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes animatedPerson3 {
  from {
    opacity: 0;
    transform: translateX(-30vw); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes animatedPerson4 {
  from {
    opacity: 0;
    transform: translateX(30vw); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes heroShrink {
  from {
    height: 100svh;
    min-height: 15rem; }
  to {
    height: 5rem;
    min-height: 5rem; } }

@keyframes heroGrow {
  from {
    height: 5rem;
    min-height: 5rem; }
  to {
    height: 100svh;
    min-height: 15rem; } }

@keyframes contentFadeOut {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(-2rem); } }

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(-2rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes bgFadeOut {
  from {
    opacity: 1;
    transform: scale(1); }
  to {
    opacity: 0;
    transform: scale(0.95); } }

@keyframes bgFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95); }
  to {
    opacity: 1;
    transform: scale(1); } }

@keyframes personExitDown {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(100vh); } }

@keyframes personExitUp {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(-100vh); } }

@keyframes personExitLeft {
  from {
    opacity: 1;
    transform: translateX(0); }
  to {
    opacity: 0;
    transform: translateX(-100vw); } }

@keyframes personExitRight {
  from {
    opacity: 1;
    transform: translateX(0); }
  to {
    opacity: 0;
    transform: translateX(100vw); } }

@keyframes personEnterUp {
  from {
    opacity: 0;
    transform: translateY(100vh); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes personEnterDown {
  from {
    opacity: 0;
    transform: translateY(-100vh); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes personEnterRight {
  from {
    opacity: 0;
    transform: translateX(-100vw); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes personEnterLeft {
  from {
    opacity: 0;
    transform: translateX(100vw); }
  to {
    opacity: 1;
    transform: translateX(0); } }

.select {
  font-size: 1.25rem;
  width: 100%;
  max-width: var(--max-width-select);
  position: relative; }
  @media screen and (max-width: 48rem) {
    .select {
      min-width: 100%; } }
  .select__label-top {
    color: var(--blue-light);
    font-size: var(--font-size-select);
    font-family: var(--font-text); }
  .select__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-md);
    height: var(--height-select);
    color: var(--blue-light);
    border-radius: var(--radius-sm);
    padding: var(--padding-md) var(--padding-lg);
    width: 100%;
    border: none;
    border-style: solid;
    border-color: var(--blue-light);
    background: none;
    cursor: pointer; }
    @media screen and (max-width: 48rem) {
      .select__trigger {
        height: var(--height-select); } }
  .select__label {
    font-size: var(--font-size-select);
    font-family: var(--font-text); }
  .select__dropdown {
    position: absolute;
    background: var(--white);
    top: calc(100% + var(--gap-xs));
    width: 100%;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 0;
    display: none;
    max-height: 15rem;
    overflow: auto;
    z-index: 2; }
    .select__dropdown.active {
      display: block; }
  .select__option {
    position: relative;
    text-align: left;
    padding: var(--padding-md) var(--padding-xl); }
    .select__option.active {
      background: var(--grey-bluish); }
    .select__option:hover {
      background: var(--grey-bluish);
      cursor: pointer; }
    .select__option:first-of-type {
      padding-top: var(--padding-lg); }
    .select__option:last-of-type {
      padding-bottom: var(--padding-lg); }
    .select__option input {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      cursor: pointer; }
      .select__option input[type="radio"] {
        appearance: none; }
    .select__option label {
      color: var(--black);
      text-align: left; }

:not(.select--form) .select2-search__field {
  top: -79px;
  height: 5rem; }

.brands-showcase {
  display: flex;
  justify-content: flex-start;
  height: 11dvh;
  white-space: nowrap;
  scrollbar-width: none;
  background: var(--grey-light); }
  .brands-showcase img {
    display: inline-block;
    width: auto;
    height: 50px;
    margin: 0 var(--gap-md); }
    @media screen and (min-width: 64rem) {
      .brands-showcase img {
        margin: 0; } }
  @media screen and (min-width: 64rem) {
    .brands-showcase {
      position: static;
      justify-content: center;
      align-items: center;
      padding: 2dvh 1svw; }
      .brands-showcase .slide {
        justify-content: center; }
        .brands-showcase .slide__content {
          gap: var(--gap-xl); } }
  @media screen and (min-width: 64rem) {
    .brands-showcase .slide__content {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: none; } }
  @media screen and (min-width: 64rem) {
    .brands-showcase .slide__group {
      gap: 3rem;
      animation: unset; } }
  @media screen and (min-width: 64rem) {
    .brands-showcase .slide::before, .brands-showcase .slide::after {
      display: none; } }
.features {
  display: flex;
  padding: var(--section-padding-sm);
  justify-content: center;
  align-items: center;
  gap: var(--gap-xl);
  flex-wrap: wrap; }
  .features-section {
    padding: 60px 20px;
    background-color: #fff; }
  .features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; }
  .features.features--center {
    text-align: center; }
    .features.features--center .feature-card {
      align-items: center; }

.insurance-categories {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap-xl);
  align-items: center;
  padding: 8rem 3rem; }
  @media screen and (max-width: 76rem) {
    .insurance-categories {
      padding: var(--gap-2xl) var(--gap-xs); }
      .insurance-categories .h1, .insurance-categories .h1--sm, .insurance-categories .h1--xl {
        text-align: center; } }
    @media screen and (max-width: 76rem) and (max-width: 48rem) {
      .insurance-categories .h1, .insurance-categories .h1--sm, .insurance-categories .h1--xl {
        font-size: 1.5rem; } }
.faq {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xl);
  padding: var(--section-padding); }
  .faq section {
    flex: 1; }
  .faq__left {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md); }
  @media screen and (max-width: 76rem) {
    .faq {
      flex-direction: column;
      align-items: flex-end; } }
.need-insurance {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  padding: 12rem var(--section-padding-x);
  text-align: center;
  overflow: hidden;
  justify-content: center; }
  .need-insurance .select__dropdown {
    max-height: 10rem; }
  .need-insurance__content {
    margin-bottom: var(--gap-lg);
    z-index: var(--z-content); }
  .need-insurance__form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-xs);
    z-index: var(--z-content); }
  .need-insurance__bg {
    position: absolute; }
    .need-insurance__bg--left {
      top: 0;
      left: 0;
      width: 15vw; }
      @media screen and (max-width: 76rem) {
        .need-insurance__bg--left {
          width: 35%;
          height: auto; } }
    .need-insurance__bg--right {
      bottom: 0;
      right: 0;
      width: 25.3vw; }
      @media screen and (max-width: 76rem) {
        .need-insurance__bg--right {
          width: 50.5%;
          height: auto; } }
  @media screen and (max-width: 76rem) {
    .need-insurance {
      min-height: var(--min-section-height); }
      .need-insurance .h1, .need-insurance .h1--sm, .need-insurance .h1--xl {
        font-size: 3.5rem; }
      .need-insurance .h2 {
        font-size: 1.3rem;
        font-weight: 400; } }
.any-doubts {
  display: flex;
  background-color: var(--blue-dark);
  color: var(--white); }
  .any-doubts--inverted {
    background: var(--white);
    color: var(--blue-dark); }
  .any-doubts__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-md);
    padding: var(--section-padding-sm);
    text-align: center;
    flex: 1; }
    .any-doubts__content h2 {
      margin-bottom: var(--gap-md); }
    @media screen and (max-width: 76rem) {
      .any-doubts__content {
        padding: var(--gap-md) var(--gap-xs) 7rem; } }
  .any-doubts__img {
    display: flex;
    justify-content: flex-end;
    flex: 1; }
    .any-doubts__img img {
      width: 50vw;
      object-fit: contain;
      object-position: top; }
      @media screen and (max-width: 76rem) {
        .any-doubts__img img {
          width: 100%;
          height: auto; } }
  @media screen and (max-width: 76rem) {
    .any-doubts {
      flex-direction: column-reverse;
      min-height: var(--min-section-height); } }
.testimonies {
  padding: var(--section-padding-sm-y) 0;
  text-align: center;
  background: var(--grey-bluish);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg); }
  .testimonies h1 {
    padding: 0 var(--section-padding-x); }
  @media screen and (max-width: 76rem) {
    .testimonies {
      gap: var(--gap-2xl); } }
  @media screen and (max-width: 76rem) {
    .testimonies__experience--text {
      font-size: 2rem; } }
.news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--section-padding); }
  .news__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-xl);
    width: 100%;
    margin-top: var(--gap-xl); }
  @media screen and (max-width: 76rem) {
    .news .h1, .news .h1--sm, .news .h1--xl {
      text-align: center; } }
.section-padding {
  padding: var(--section-padding); }

.section-padding-x {
  padding: 0 var(--section-padding-x); }

.feature-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--gap-sm); }
  .feature-card__icon {
    width: 10rem; }
    @media (max-width: 48rem) {
      .feature-card__icon {
        width: 4rem; } }
  @media (max-width: 48rem) {
    .feature-card__description {
      display: none; } }
  @media (max-width: 48rem) {
    .feature-card {
      flex-direction: row;
      min-width: 100%; } }
.nav-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  padding: var(--padding-md);
  background: var(--blue);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
  text-decoration: none; }
  .nav-card:hover {
    background: var(--blue-light); }
    .nav-card:hover .nav-card__title {
      color: var(--blue); }
    .nav-card:hover .nav-card__arrow {
      transform: translateX(0.5rem); }
  .nav-card:not(:hover) .nav-card__icon {
    filter: brightness(0) invert(0.9) hue-rotate(-10deg); }
  @media screen and (min-width: 64rem) {
    .nav-card {
      gap: var(--gap-2xl);
      padding: var(--padding-lg); } }
  .nav-card__icon {
    width: var(--height-icon);
    height: var(--height-icon);
    background: var(--overlay-light);
    border-radius: var(--radius-circle); }
    .nav-card__icon img {
      width: 100%; }
  .nav-card__title {
    color: var(--grey-bluish);
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 90%;
    margin-top: auto; }
    @media screen and (min-width: 64rem) {
      .nav-card__title {
        font-size: 3.5rem; } }
  .nav-card__content {
    display: flex;
    align-items: center; }
  .nav-card__arrow {
    margin-right: 0.75rem;
    transition: transform var(--transition-smooth); }

@media screen and (min-width: 64rem) {
  section:not(.card-grid) .nav-card {
    width: 20.3rem; } }

.card-grid {
  height: max-content;
  display: flex;
  gap: var(--gap-lg);
  margin: 0 auto;
  overflow: hidden; }
  @media screen and (max-width: 48rem) {
    .card-grid {
      gap: var(--padding-sm);
      max-width: 100%; } }
  @media screen and (min-width: 75rem) {
    .card-grid {
      padding: var(--section-padding-sm); } }
  @media screen and (max-width: 75rem) {
    .card-grid {
      flex-direction: column;
      gap: var(--gap-xs); } }
  .card-grid__column {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    flex: 1;
    height: max-content; }
    @media screen and (min-width: 75rem) {
      .card-grid__column:last-of-type {
        flex: 2;
        max-width: 40%;
        margin-top: var(--padding-sm); }
      .card-grid__column:nth-of-type(2) {
        margin-top: var(--gap-lg); }
        .card-grid__column:nth-of-type(2) .nav-card:first-of-type {
          gap: 8rem; } }
    @media screen and (max-width: 75rem) {
      .card-grid__column {
        flex-direction: row;
        flex: 1;
        gap: var(--padding-sm); }
        .card-grid__column:first-of-type .nav-card:first-of-type {
          width: 40%; }
        .card-grid__column:first-of-type .nav-card:nth-child(2) {
          width: 60%; }
        .card-grid__column:nth-child(2) .nav-card:first-of-type {
          flex: 1; }
        .card-grid__column:nth-child(2) .nav-card:nth-child(2) {
          width: max-content;
          padding: var(--padding-md) var(--padding-sm);
          align-items: center; }
        .card-grid__column:nth-child(3) .nav-card:first-of-type {
          width: max-content;
          padding: var(--padding-md) var(--padding-sm);
          align-items: center; }
        .card-grid__column:nth-child(3) .nav-card:nth-child(2) {
          flex: 1; } }
.testimony-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  padding: var(--padding-lg);
  border: 1px solid var(--white);
  background: transparent;
  border-radius: var(--radius-lg);
  box-shadow: 0px 0px 80px 2px rgba(22, 43, 136, 0.2);
  flex: 0 0 25rem;
  max-width: 95%;
  text-align: left;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 23.75rem;
  justify-content: space-between; }
  @media screen and (max-width: 48rem) {
    .testimony-card {
      box-shadow: 0px 0px 25px 2px rgba(22, 43, 136, 0.2); } }
  .testimony-card__comment {
    font-size: var(--font-size-text-sm); }
  .testimony-card__rating {
    width: 8rem;
    max-width: 100%; }
  .testimony-card__name {
    color: var(--blue);
    font-size: var(--font-size-text); }
  .testimony-card__data {
    font-family: var(--font-title);
    font-size: var(--font-size-text-sm); }
  .testimony-card__date {
    font-size: var(--font-size-text-sm); }

.collapsible {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue);
  flex: 1;
  overflow: hidden; }
  .collapsible:not(:last-of-type) {
    margin-bottom: var(--gap-xs); }
  .collapsible .label {
    pointer-events: none; }
  .collapsible__trigger {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-blue-primary);
    padding: var(--padding-md) var(--padding-xl);
    transition: background var(--transition-fast);
    overflow: hidden;
    cursor: pointer; }
    .collapsible__trigger input[type="checkbox"] {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      appearance: none;
      cursor: pointer; }
  .collapsible__content {
    padding: 0 var(--padding-md);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), opacity var(--transition-normal), padding var(--transition-smooth); }
  .collapsible__icon {
    transition: transform var(--transition-smooth); }
  .collapsible.is-open .collapsible__content {
    height: auto;
    max-height: 800px;
    opacity: 1;
    padding: var(--padding-xl) var(--padding-xl) var(--padding-md); }
  .collapsible.is-open .collapsible__icon {
    transform: rotate(180deg); }
  .collapsible-grey {
    border: none; }
    .collapsible-grey .collapsible__trigger {
      background: var(--grey-bluish-medium);
      color: var(--grey-medium);
      border-radius: var(--radius-lg); }
    .collapsible-grey.is-open .collapsible__content {
      padding: var(--padding-xl) 0 var(--padding-md); }
    .collapsible-grey.is-open .collapsible__trigger {
      background: var(--grey-bluish); }
    .collapsible-grey .collapsible__icon {
      width: 2.5rem; }
  .collapsible--form, .collapsible--form--md {
    border: none;
    padding: 0;
    border-radius: 0; }
    .collapsible--form .collapsible__trigger, .collapsible--form--md .collapsible__trigger {
      padding: 0 0 0 var(--gap-xs);
      color: var(--grey-medium);
      font-weight: bold; }
      .collapsible--form .collapsible__trigger .label, .collapsible--form--md .collapsible__trigger .label {
        font-size: var(--font-size-text-sm); }
      .collapsible--form .collapsible__trigger::before, .collapsible--form--md .collapsible__trigger::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: .25rem;
        height: 100%;
        background: var(--blue);
        border-radius: var(--radius-xl); }
    .collapsible--form.is-open .collapsible__content, .is-open.collapsible--form--md .collapsible__content {
      padding: var(--gap-2xs) var(--gap-xs) 0;
      color: var(--grey-medium); }
      .collapsible--form.is-open .collapsible__content p, .is-open.collapsible--form--md .collapsible__content p {
        font-size: var(--font-size-text-sm); }
    .collapsible--form--md .collapsible__trigger {
      padding: var(--gap-2xs); }
      .collapsible--form--md .collapsible__trigger .label {
        font-size: var(--font-size-text);
        margin-left: var(--gap-xs); }
    .collapsible--form--md.is-open .collapsible__content p {
      font-size: var(--font-size-text); }

.feature-card,
.nav-card,
.testimony-card,
.stats__item,
.collapsible,
.news-card {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease; }
  .feature-card.in-view,
  .nav-card.in-view,
  .testimony-card.in-view,
  .stats__item.in-view,
  .collapsible.in-view,
  .news-card.in-view {
    opacity: 1;
    transform: translateY(0); }

.feature-card:nth-child(1) {
  transition-delay: 0.1s; }

.feature-card:nth-child(2) {
  transition-delay: 0.2s; }

.feature-card:nth-child(3) {
  transition-delay: 0.3s; }

.nav-card:nth-child(1) {
  transition-delay: 0.1s; }

.nav-card:nth-child(2) {
  transition-delay: 0.2s; }

.nav-card:nth-child(3) {
  transition-delay: 0.3s; }

.nav-card:nth-child(4) {
  transition-delay: 0.4s; }

.nav-card:nth-child(5) {
  transition-delay: 0.5s; }

.nav-card:nth-child(6) {
  transition-delay: 0.6s; }

.stats__item:nth-child(1) {
  transition-delay: 0.1s; }

.stats__item:nth-child(2) {
  transition-delay: 0.3s; }

.stats__item:nth-child(3) {
  transition-delay: 0.5s; }

.collapsible:nth-child(1) {
  transition-delay: 0.1s; }

.collapsible:nth-child(2) {
  transition-delay: 0.2s; }

.collapsible:nth-child(3) {
  transition-delay: 0.3s; }

.collapsible:nth-child(4) {
  transition-delay: 0.4s; }

.collapsible:nth-child(5) {
  transition-delay: 0.5s; }

.news-card:nth-child(1) {
  transition-delay: 0.1s; }

.news-card:nth-child(2) {
  transition-delay: 0.2s; }

.news-card:nth-child(3) {
  transition-delay: 0.3s; }

#nosotros {
  scroll-margin-top: 200px; }

#preguntas-frecuentes {
  scroll-margin-top: 110px; }

@keyframes loading-dots {
  0% {
    content: '.'; }
  33% {
    content: '..'; }
  66% {
    content: '...'; }
  100% {
    content: ''; } }

.loading-dots {
  margin-left: calc(var(--gap-xs) * -1); }
  .loading-dots::after {
    content: '';
    animation: loading-dots 1.2s steps(1, end) infinite;
    display: inline-block;
    min-width: 1.5ch;
    text-align: left; }

.stats {
  padding: var(--section-padding-sm-y) var(--section-padding-x); }
  .stats__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%; }
  .stats__item {
    flex: 1; }
  .stats__number {
    font-size: var(--font-size-title-xl);
    font-family: 'Minigap', sans-serif;
    font-weight: 700;
    color: #e91e63;
    line-height: 1;
    margin-bottom: 16px; }
  .stats__description {
    font-size: var(--font-size-label);
    line-height: 1.5;
    color: #000;
    margin: 0;
    font-family: 'Lato', sans-serif; }

@media screen and (max-width: 48rem) {
  .stats__container {
    flex-direction: column;
    text-align: center; } }

.news-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  max-width: 100%; }
  .news-card__image {
    border-radius: 3rem 0 3rem 0;
    height: 12rem;
    object-fit: cover;
    object-position: center; }

.news-article, .news {
  padding: var(--section-padding);
  background: var(--bg-body);
  min-height: 100vh; }
  .news-article__container, .news .wrap {
    margin: 0 auto;
    max-width: 100%; }
  .news-article__breadcrumb, .breadcumb-news {
    margin-bottom: var(--gap-lg);
    min-height: 24px; }
    .news-article__breadcrumb ul, .breadcumb-news ul {
      display: flex;
      flex-wrap: wrap;
      gap: var(--gap-xs);
      list-style: none;
      padding: 0;
      margin: 0;
      font-family: var(--font-text);
      font-size: var(--font-size-text-sm); }
    .news-article__breadcrumb li, .breadcumb-news li {
      display: flex;
      align-items: center;
      gap: var(--gap-xs); }
      .news-article__breadcrumb li:not(:last-child)::after, .breadcumb-news li:not(:last-child)::after {
        content: "›";
        opacity: 0.5; }
    .news-article__breadcrumb a, .breadcumb-news a {
      color: var(--text-primary);
      text-decoration: none;
      opacity: 0.7;
      transition: all var(--transition-fast); }
      .news-article__breadcrumb a:hover, .breadcumb-news a:hover {
        color: var(--blue);
        opacity: 1; }
    .news-article__breadcrumb .active, .breadcumb-news .active {
      color: var(--blue);
      font-weight: 600;
      opacity: 1; }
  .news-article__layout, .news__layout {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
    max-width: 900px;
    margin: 0 auto; }
  .news-article__main-article, .news__main-article {
    width: 100%; }
  .news-article__related, .news__related {
    width: 100%;
    max-width: 100%;
    padding-top: var(--gap-2xl);
    margin-top: var(--gap-2xl);
    border-top: 2px solid var(--grey-bluish-medium); }
    .news-article__related-container, .news__related-container {
      width: 100%;
      max-width: 1400px; }
    .news-article__related-column, .news__related-column {
      display: flex;
      flex-direction: column;
      gap: var(--gap-md); }
    .news-article__related-title, .news__related-title {
      font-family: var(--font-title);
      font-size: var(--font-size-title-sm);
      color: var(--text-primary);
      margin: 0 0 var(--gap-xl) 0;
      font-weight: 700;
      line-height: 1.2; }
    .news-article__related-grid {
      gap: var(--gap-md); }
    .news-article__related-item, .news__related-item {
      display: flex;
      text-decoration: none;
      transition: all var(--transition-normal);
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--grey-light); }
      .news-article__related-item:hover, .news__related-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
        .news-article__related-item:hover .news-article__related-image, .news-article__related-item:hover .news__related-image, .news__related-item:hover .news-article__related-image, .news__related-item:hover .news__related-image {
          transform: scale(1.05); }
        .news-article__related-item:hover .news-article__related-item-title, .news-article__related-item:hover .news__related-item-title, .news__related-item:hover .news-article__related-item-title, .news__related-item:hover .news__related-item-title {
          color: var(--blue); }
      .news-article__related-item-title, .news__related-item-title {
        font-family: var(--font-title);
        font-size: var(--font-size-subtitle);
        color: var(--text-primary);
        margin: 0;
        line-height: 1.3;
        font-weight: 700;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color var(--transition-fast); }
      .news-article__related-item-content, .news__related-item-content {
        color: var(--grey-medium); }
    .news-article__related-image, .news__related-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-smooth); }
      .news-article__related-image-wrapper, .news__related-image-wrapper {
        position: relative;
        width: 20rem;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: var(--grey-light); }
    .news-article__related-content, .news__related-content {
      padding: var(--gap-md);
      display: flex;
      flex-direction: column;
      gap: var(--gap-xs);
      flex: 1; }
    .news-article__related-date, .news__related-date {
      font-family: var(--font-text);
      font-size: var(--font-size-text-sm);
      color: var(--blue);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600; }
  .news-article__header {
    margin-bottom: var(--gap-xl); }
  .news-article__title, article .items h1 {
    font-family: var(--font-title);
    font-size: var(--font-size-title);
    line-height: 110%;
    color: var(--text-primary);
    margin: 0 0 var(--gap-md) 0;
    min-height: 3em; }
  .news-article__meta, article .items .line {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    padding-bottom: var(--gap-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 40px; }
  .news-article__date, article .items .line .date {
    font-family: var(--font-text);
    font-size: var(--font-size-text-sm);
    color: var(--text-primary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
  .news-article__featured-image, article .items .imagenews {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--gap-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
    background: var(--bg-surface);
    display: block; }
  .news-article__content, article .items > div {
    contain: layout; }
    .news-article__content p, article .items > div p {
      font-family: var(--font-text);
      font-size: var(--font-size-text);
      line-height: 1.8;
      color: var(--text-primary);
      margin: 0 0 var(--gap-md) 0; }
    .news-article__content h2, article .items > div h2 {
      font-family: var(--font-title);
      font-size: var(--font-size-title-sm);
      line-height: 120%;
      color: var(--blue);
      margin: var(--gap-2xl) 0 var(--gap-lg) 0;
      min-height: 1.2em; }
    .news-article__content h3, article .items > div h3 {
      font-family: var(--font-title);
      font-size: var(--font-size-subtitle);
      line-height: 130%;
      color: var(--text-primary);
      margin: var(--gap-xl) 0 var(--gap-md) 0;
      font-weight: 600;
      min-height: 1.3em; }
    .news-article__content strong, article .items > div strong {
      font-weight: 700;
      color: var(--text-primary); }
  .news-article__section {
    margin-bottom: var(--gap-xl);
    min-height: 100px; }
  .news-article__subsection, article .items > div > div {
    margin-bottom: var(--gap-xl);
    padding-bottom: var(--gap-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 80px; }
    .news-article__subsection:last-child, article .items > div > div:last-child {
      border-bottom: none;
      padding-bottom: 0; }
    .news-article__subsection h3, article .items > div > div h3 {
      color: var(--blue);
      margin-top: 0;
      margin-bottom: var(--gap-md);
      font-size: var(--font-size-subtitle);
      font-weight: 700;
      line-height: 1.3;
      position: relative;
      padding-left: var(--gap-md);
      min-height: 1.3em; }
      .news-article__subsection h3::before, article .items > div > div h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--red);
        border-radius: 2px; }
    .news-article__subsection p, article .items > div > div p {
      margin-bottom: 0;
      color: var(--text-primary); }
  .news-article__social, article .items .social {
    margin-top: var(--gap-2xl);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--gap-md);
    min-height: 56px; }
    .news-article__social p, article .items .social p {
      margin: 0; }
  .news-article__cta, .call-to {
    text-align: center;
    padding: var(--gap-2xl) var(--padding-md);
    margin-top: var(--gap-2xl);
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    min-height: 120px; }
  @media screen and (max-width: 48rem) {
    .news-article, .news {
      padding: var(--section-padding-sm); }
      .news-article__layout, .news__layout {
        gap: var(--gap-xl); }
      .news-article__related, .news__related {
        padding-top: var(--gap-xl);
        margin-top: var(--gap-xl); }
        .news-article__related-title, .news__related-title {
          font-size: var(--font-size-title);
          margin-bottom: var(--gap-lg); }
        .news-article__related-grid {
          gap: var(--gap-md); }
        .news-article__related-item, .news__related-item {
          flex-direction: column; }
          .news-article__related-item-title, .news__related-item-title {
            -webkit-line-clamp: 2; }
        .news-article__related-image-wrapper, .news__related-image-wrapper {
          width: 100%; }
        .news-article__related-content, .news__related-content {
          padding: var(--gap-sm); }
      .news-article__title, article .items h1 {
        font-size: var(--font-size-title);
        min-height: 2.5em; }
      .news-article__featured-image, article .items .imagenews {
        border-radius: var(--radius-md);
        max-height: 300px;
        aspect-ratio: 4 / 3; }
      .news-article__content h2, article .items > div h2 {
        font-size: var(--font-size-subtitle);
        margin-top: var(--gap-xl);
        min-height: 1.2em; }
      .news-article__content h3, article .items > div h3 {
        font-size: var(--font-size-label);
        min-height: 1.3em; }
      .news-article__subsection, article .items > div > div {
        margin-bottom: var(--gap-md);
        min-height: 60px; }
      .news-article__social, article .items .social {
        flex-wrap: wrap; }
      .news-article__cta, .call-to {
        min-height: 140px; }
        .news-article__cta .btn, .news-article__cta .btn--disabled, .news-article__cta .btn--disabled--ghost, .news-article__cta .btn--sm, .news-article__cta .btn--large, .news-article__cta .btn--green, .news-article__cta .btn--green--ghost, .news-article__cta .btn--blue, .news-article__cta .btn--blue--ghost, .news-article__cta .btn--dark-blue, .news-article__cta .btn--dark-blue--ghost, .news-article__cta .btn--light-blue, .news-article__cta .btn--light-blue--ghost, .news-article__cta .btn--red, .news-article__cta .btn--red--ghost, .news-article__cta .btn--linear, .news-article__cta .btn--disabled--linear, .news-article__cta .btn--green--linear, .news-article__cta .btn--blue--linear, .news-article__cta .btn--dark-blue--linear, .news-article__cta .btn--light-blue--linear, .news-article__cta .btn--red--linear, .call-to .btn, .call-to .btn--disabled, .call-to .btn--disabled--ghost, .call-to .btn--sm, .call-to .btn--large, .call-to .btn--green, .call-to .btn--green--ghost, .call-to .btn--blue, .call-to .btn--blue--ghost, .call-to .btn--dark-blue, .call-to .btn--dark-blue--ghost, .call-to .btn--light-blue, .call-to .btn--light-blue--ghost, .call-to .btn--red, .call-to .btn--red--ghost, .call-to .btn--linear, .call-to .btn--disabled--linear, .call-to .btn--green--linear, .call-to .btn--blue--linear, .call-to .btn--dark-blue--linear, .call-to .btn--light-blue--linear, .call-to .btn--red--linear {
          width: 100%;
          max-width: 300px; } }
  @media screen and (min-width: 48rem) and (max-width: 64rem) {
    .news-article__layout, .news__layout {
      gap: var(--gap-2xl); }
    .news-article__related, .news__related {
      padding-top: var(--gap-2xl); }
    .news-article__title, article .items h1 {
      font-size: var(--font-size-title-sm);
      min-height: 2.8em; }
    .news-article__featured-image, article .items .imagenews {
      aspect-ratio: 16 / 9; } }
.wrap-main {
  background: var(--bg-body);
  min-height: 100vh; }

.social__label {
  font-family: var(--font-text);
  font-size: var(--font-size-text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0; }

.social__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  border: none;
  background: var(--bg-surface);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  flex-shrink: 0; }
  .social__button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0; }
  .social__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
  .social__button--facebook {
    background: #1877f2;
    color: white; }
    .social__button--facebook:hover {
      background: #165ec9; }
  .social__button--twitter {
    background: #000000;
    color: white; }
    .social__button--twitter:hover {
      background: #333333; }
  .social__button--whatsapp {
    background: #25D366;
    color: white; }
    .social__button--whatsapp:hover {
      background: #1eb855; }
  .social__button--copy {
    background: var(--bg-surface);
    color: var(--text-primary);
    position: relative; }
    .social__button--copy:hover {
      background: var(--blue-light);
      color: var(--blue); }
    .social__button--copy.copied {
      background: var(--blue);
      color: white; }
      .social__button--copy.copied::after {
        content: "¡Copiado!";
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--text-primary);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        pointer-events: none; }

.quote-card {
  position: relative;
  background: var(--grey-bluish);
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1 1 20rem;
  min-width: 19rem;
  max-width: calc(20% - var(--gap-md));
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  opacity: 1 !important; }
  .quote-card__badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -.8rem; }
  .quote-card--recommended {
    flex: 1 1 28rem;
    max-width: 28rem;
    height: 39rem; }
    .quote-card--recommended .quote-card__content {
      flex: unset;
      gap: var(--gap-2xs); }
    .quote-card--recommended .quote-card__features {
      display: flex;
      flex-direction: column;
      flex: 1; }
      .quote-card--recommended .quote-card__features-list {
        flex: 1;
        margin-bottom: var(--gap-xs); }
    .quote-card--recommended.skeleton-card {
      flex: 1 1 28rem !important;
      height: unset; }
  .quote-card--best {
    padding: var(--gap-md) 0 0;
    height: 40rem; }
  .quote-card__content {
    padding: var(--gap-xs) var(--gap-md) var(--gap-md);
    margin: 0 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1; }
  .quote-card__pricing {
    flex: 1;
    margin: var(--gap-2xs) 0 var(--gap-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap-2xs); }
  .quote-card__data {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .quote-card__name {
    color: var(--grey-medium-light);
    margin: var(--gap-2xs);
    width: 100%; }
  .quote-card__logo {
    margin: 0 5px;
    border-bottom: 1px solid var(--grey);
    height: 5rem; }
    .quote-card__logo img {
      padding: var(--gap-xs) var(--gap-md) var(--gap-xs);
      width: 100%;
      min-height: 100%;
      object-fit: contain;
      max-height: 100%; }
  .quote-card__discount {
    position: relative;
    opacity: .5;
    font-weight: bold;
    color: var(--blue);
    font-size: 1.5rem;
    width: max-content;
    margin: 0 auto; }
    .quote-card__discount::before {
      content: "";
      position: absolute;
      top: .7rem;
      left: -.7rem;
      height: 4px;
      width: calc(100% + 1.1rem);
      background: var(--blue);
      opacity: .5;
      transform: rotate(6deg); }
  .quote-card__features {
    position: relative;
    padding: var(--gap-xs) var(--gap-sm) var(--gap-lg);
    border-top: 1px solid var(--grey);
    margin: 0 5px;
    font-family: 'Lato', sans-serif; }
    .quote-card__features:before {
      content: "Incluye:";
      left: 50%;
      transform: translateX(-50%);
      position: absolute;
      font-size: var(--font-size-text);
      color: var(--grey-medium);
      background: var(--grey-bluish);
      top: -1rem;
      padding: 0 1rem; }
    .quote-card__features-list {
      margin: var(--gap-md) 0 var(--gap-xl); }
    .quote-card__features-item {
      font-size: var(--font-size-text-sm);
      color: var(--grey-medium); }
  .quote-card .btn, .quote-card .btn--disabled, .quote-card .btn--disabled--ghost, .quote-card .btn--sm, .quote-card .btn--large, .quote-card .btn--green, .quote-card .btn--green--ghost, .quote-card .btn--blue, .quote-card .btn--blue--ghost, .quote-card .btn--dark-blue, .quote-card .btn--dark-blue--ghost, .quote-card .btn--light-blue, .quote-card .btn--light-blue--ghost, .quote-card .btn--red, .quote-card .btn--red--ghost, .quote-card .btn--linear, .quote-card .btn--disabled--linear, .quote-card .btn--green--linear, .quote-card .btn--blue--linear, .quote-card .btn--dark-blue--linear, .quote-card .btn--light-blue--linear, .quote-card .btn--red--linear {
    margin: 0 auto; }

.small-decimals {
  font-size: 0.6em;
  vertical-align: super;
  opacity: 0.85; }

.discount {
  position: relative;
  opacity: .5;
  font-weight: bold;
  color: var(--blue);
  font-size: 1.5rem;
  width: max-content; }
  .discount::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: -.7rem;
    height: 4px;
    width: 6.7rem;
    background: var(--blue);
    opacity: .5;
    transform: rotate(6deg); }
  .discount .small-decimals {
    font-size: 0.6em;
    vertical-align: baseline;
    opacity: 0.85; }

.skeleton-card {
  pointer-events: none;
  user-select: none; }
  .skeleton-card .skeleton-logo,
  .skeleton-card .skeleton-content,
  .skeleton-card .skeleton-text,
  .skeleton-card .skeleton-price,
  .skeleton-card .skeleton-button {
    background: rgba(0, 33, 196, 0.06);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden; }
    .skeleton-card .skeleton-logo::before,
    .skeleton-card .skeleton-content::before,
    .skeleton-card .skeleton-text::before,
    .skeleton-card .skeleton-price::before,
    .skeleton-card .skeleton-button::before {
      content: "";
      position: absolute;
      top: 0;
      left: -150%;
      width: 150%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: skeleton-shimmer 2s ease-in-out infinite; }
  .skeleton-card .skeleton-logo {
    height: 5rem;
    margin-bottom: var(--gap-sm); }
  .skeleton-card .skeleton-content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    padding: var(--gap-sm);
    background: transparent; }
    .skeleton-card .skeleton-content::before {
      display: none; }
  .skeleton-card .skeleton-text {
    height: 1.2rem; }
    .skeleton-card .skeleton-text--title {
      height: 1.5rem;
      width: 80%; }
    .skeleton-card .skeleton-text--subtitle {
      height: 1rem;
      width: 60%; }
    .skeleton-card .skeleton-text--feature {
      width: 100%;
      height: 1rem; }
      .skeleton-card .skeleton-text--feature.last {
        margin-bottom: 6rem; }
  .skeleton-card .skeleton-price {
    height: 6rem;
    margin: var(--gap-sm) 0;
    margin-top: auto; }
  .skeleton-card .skeleton-button {
    height: var(--height-button-sm);
    width: 10rem;
    margin: 0 auto; }

@keyframes skeleton-shimmer {
  0% {
    left: -150%; }
  100% {
    left: 150%; } }

body:has(.quote-detail[style*="display: block"]) .quotation,
.quotation.loading-detail {
  display: none !important; }

.quote-detail.show-immediate {
  display: block !important; }

@media screen and (max-width: 72rem) {
  .quote-card {
    flex: 1;
    max-width: unset; } }

.quotation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding-xs);
  text-align: center; }
  .quotation .client-quote-item {
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: var(--gap-xl); }
  .quotation .badge, .quotation .badge--dark-blue, .quotation .badge--blue-medium-dark, .quotation .badge--light-blue, .quotation .badge--sm {
    margin-bottom: var(--gap-md); }
  .quotation .quote-recommended,
  .quotation .quote-recommendedd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
    margin-top: var(--gap-xl); }
    @media screen and (max-width: 48rem) {
      .quotation .quote-recommended,
      .quotation .quote-recommendedd {
        flex-direction: column; } }
  .quotation-content {
    width: 100%;
    margin-bottom: var(--gap-xl); }
  .quotation .collapsible.is-open .collapsible__content {
    max-height: unset; }
  .quotation.loading-detail {
    display: none !important; }

.quotation__row {
  display: flex;
  gap: var(--gap-md);
  flex-wrap: wrap; }

.quote-detail {
  display: none;
  padding: var(--section-padding-xl); }
  .quote-detail.show-immediate {
    display: block !important; }
  .quote-detail__nav {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin-bottom: var(--gap-md);
    background: transparent;
    border: none;
    padding: 0.5rem;
    transition: opacity 0.2s ease; }
    .quote-detail__nav:hover {
      opacity: 0.8; }
    .quote-detail__nav-icon {
      transform: rotate(90deg);
      width: 2.5rem;
      object-fit: cover; }
    .quote-detail__nav p {
      font-family: var(--font-button); }
  .quote-detail__content {
    display: flex;
    justify-content: space-between;
    color: var(--blue);
    padding: var(--gap-lg) 0;
    border-bottom: 1px solid var(--grey); }
  .quote-detail__logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    object-position: left center; }
  .quote-detail__insured-value {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: var(--gap-sm) 0;
    border-bottom: 1px solid var(--grey);
    color: var(--grey-medium); }
  .quote-detail__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    padding: var(--gap-lg) 0;
    border-bottom: 1px solid var(--grey);
    font-family: var(--font-text);
    font-size: var(--font-size-text);
    list-style: none; }
    .quote-detail__benefits-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem; }
    .quote-detail__benefits-title {
      font-weight: 800;
      color: var(--grey-medium-light); }
    .quote-detail__benefits-description {
      color: var(--grey); }
  .quote-detail__info, .quote-detail__price {
    display: flex;
    flex-direction: column; }
  .quote-detail__info {
    gap: var(--gap-xs); }
  .quote-detail__price {
    margin-top: 0.5rem; }
    .quote-detail__price .discount {
      margin-left: auto; }
  .quote-detail__button-container {
    display: flex;
    justify-content: center;
    margin-top: var(--gap-2xl);
    background: var(--grey-bluish);
    border-radius: var(--radius-lg);
    padding: 2rem 5rem;
    width: 100%;
    position: sticky;
    bottom: var(--gap-md); }
    .quote-detail__button-container .btn, .quote-detail__button-container .btn--disabled, .quote-detail__button-container .btn--disabled--ghost, .quote-detail__button-container .btn--sm, .quote-detail__button-container .btn--large, .quote-detail__button-container .btn--green, .quote-detail__button-container .btn--green--ghost, .quote-detail__button-container .btn--blue, .quote-detail__button-container .btn--blue--ghost, .quote-detail__button-container .btn--dark-blue, .quote-detail__button-container .btn--dark-blue--ghost, .quote-detail__button-container .btn--light-blue, .quote-detail__button-container .btn--light-blue--ghost, .quote-detail__button-container .btn--red, .quote-detail__button-container .btn--red--ghost, .quote-detail__button-container .btn--linear, .quote-detail__button-container .btn--disabled--linear, .quote-detail__button-container .btn--green--linear, .quote-detail__button-container .btn--blue--linear, .quote-detail__button-container .btn--dark-blue--linear, .quote-detail__button-container .btn--light-blue--linear, .quote-detail__button-container .btn--red--linear {
      padding: 1.5rem 8rem;
      height: unset;
      font-weight: bold; }
      @media screen and (max-width: 48rem) {
        .quote-detail__button-container .btn, .quote-detail__button-container .btn--disabled, .quote-detail__button-container .btn--disabled--ghost, .quote-detail__button-container .btn--sm, .quote-detail__button-container .btn--large, .quote-detail__button-container .btn--green, .quote-detail__button-container .btn--green--ghost, .quote-detail__button-container .btn--blue, .quote-detail__button-container .btn--blue--ghost, .quote-detail__button-container .btn--dark-blue, .quote-detail__button-container .btn--dark-blue--ghost, .quote-detail__button-container .btn--light-blue, .quote-detail__button-container .btn--light-blue--ghost, .quote-detail__button-container .btn--red, .quote-detail__button-container .btn--red--ghost, .quote-detail__button-container .btn--linear, .quote-detail__button-container .btn--disabled--linear, .quote-detail__button-container .btn--green--linear, .quote-detail__button-container .btn--blue--linear, .quote-detail__button-container .btn--dark-blue--linear, .quote-detail__button-container .btn--light-blue--linear, .quote-detail__button-container .btn--red--linear {
          justify-content: center; } }
.quote-detail-skeleton {
  display: none;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto; }
  .quote-detail-skeleton.show {
    display: block; }
  .quote-detail-skeleton__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem; }
  .quote-detail-skeleton__content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }
  .quote-detail-skeleton__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem; }
  .quote-detail-skeleton__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .quote-detail-skeleton__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem; }
  .quote-detail-skeleton__insured {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2rem; }
  .quote-detail-skeleton__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
  .quote-detail-skeleton__benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; }
  .quote-detail-skeleton__button {
    display: flex;
    justify-content: center;
    padding: 1rem 0; }

.skeleton-box {
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px; }
  .skeleton-box--circle {
    width: 24px;
    height: 24px;
    border-radius: 50%; }
  .skeleton-box--nav-text {
    width: 60px;
    height: 16px; }
  .skeleton-box--title {
    width: 70%;
    height: 32px;
    border-radius: 6px; }
  .skeleton-box--subtitle {
    width: 50%;
    height: 24px; }
  .skeleton-box--logo {
    width: 120px;
    height: 60px;
    margin-top: 1rem; }
  .skeleton-box--price-small {
    width: 100px;
    height: 20px; }
  .skeleton-box--price-large {
    width: 140px;
    height: 36px;
    border-radius: 6px; }
  .skeleton-box--insured-label {
    width: 140px;
    height: 24px; }
  .skeleton-box--insured-value {
    width: 120px;
    height: 24px; }
  .skeleton-box--benefit-title {
    width: 60%;
    height: 20px; }
  .skeleton-box--benefit-desc {
    width: 100%;
    height: 16px; }
    .skeleton-box--benefit-desc--short {
      width: 80%; }
  .skeleton-box--button {
    width: 200px;
    height: 48px;
    border-radius: 8px; }

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0; }
  100% {
    background-position: -200% 0; } }

.quote-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease; }
  .quote-card.in-view {
    opacity: 1;
    transform: translateY(0); }
  .quote-card:nth-child(1) {
    transition-delay: 0.1s; }
  .quote-card:nth-child(2) {
    transition-delay: 0.2s; }
  .quote-card:nth-child(3) {
    transition-delay: 0.3s; }
  .quote-card:nth-child(4) {
    transition-delay: 0.4s; }
  .quote-card:nth-child(5) {
    transition-delay: 0.5s; }

*[data-company-cover-id] {
  transition: transform 0.2s ease; }
  *[data-company-cover-id]:hover {
    transform: translateY(-2px); }

.quote-detail-link {
  text-decoration: none; }
  .quote-detail-link:hover {
    text-decoration: none; }

.collapsible {
  transition: all 0.3s ease; }
  .collapsible__trigger {
    cursor: pointer;
    user-select: none; }
  .collapsible__icon {
    transition: transform 0.3s ease; }
  .collapsible__content {
    overflow: hidden;
    transition: max-height 0.3s ease; }
  .collapsible.is-open .collapsible__icon {
    transform: rotate(180deg); }

.animate__fadeOut {
  animation-duration: 0.3s; }

.animate__fadeIn {
  animation-duration: 0.4s; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

@media (max-width: 768px) {
  .quote-detail__content {
    flex-direction: column;
    gap: 1.5rem; }
  .quote-detail__price {
    align-items: flex-start; }
    .quote-detail__price .discount {
      margin-left: 0; }
  .quote-detail__button-container {
    padding: 1.5rem 2rem; }
    .quote-detail__button-container .btn, .quote-detail__button-container .btn--disabled, .quote-detail__button-container .btn--disabled--ghost, .quote-detail__button-container .btn--sm, .quote-detail__button-container .btn--large, .quote-detail__button-container .btn--green, .quote-detail__button-container .btn--green--ghost, .quote-detail__button-container .btn--blue, .quote-detail__button-container .btn--blue--ghost, .quote-detail__button-container .btn--dark-blue, .quote-detail__button-container .btn--dark-blue--ghost, .quote-detail__button-container .btn--light-blue, .quote-detail__button-container .btn--light-blue--ghost, .quote-detail__button-container .btn--red, .quote-detail__button-container .btn--red--ghost, .quote-detail__button-container .btn--linear, .quote-detail__button-container .btn--disabled--linear, .quote-detail__button-container .btn--green--linear, .quote-detail__button-container .btn--blue--linear, .quote-detail__button-container .btn--dark-blue--linear, .quote-detail__button-container .btn--light-blue--linear, .quote-detail__button-container .btn--red--linear {
      padding: 1.25rem 4rem; }
  .quote-detail-skeleton {
    padding: 1rem; }
    .quote-detail-skeleton__content {
      padding: 1.5rem; }
    .quote-detail-skeleton__header {
      flex-direction: column;
      gap: 1.5rem; }
    .quote-detail-skeleton__price {
      align-items: flex-start;
      width: 100%; }
    .quote-detail-skeleton__insured {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem; }
  .skeleton-box--title {
    width: 90%; }
  .skeleton-box--subtitle {
    width: 70%; }
  .skeleton-box--logo {
    width: 100px;
    height: 50px; }
  .skeleton-box--insured-label, .skeleton-box--insured-value {
    width: 100%; } }

@media (max-width: 480px) {
  .quote-detail {
    padding: var(--section-padding-xs); }
    .quote-detail__nav {
      margin-bottom: var(--gap-sm); }
      .quote-detail__nav-icon {
        width: 2rem; }
    .quote-detail__button-container {
      padding: 1rem; }
      .quote-detail__button-container .btn, .quote-detail__button-container .btn--disabled, .quote-detail__button-container .btn--disabled--ghost, .quote-detail__button-container .btn--sm, .quote-detail__button-container .btn--large, .quote-detail__button-container .btn--green, .quote-detail__button-container .btn--green--ghost, .quote-detail__button-container .btn--blue, .quote-detail__button-container .btn--blue--ghost, .quote-detail__button-container .btn--dark-blue, .quote-detail__button-container .btn--dark-blue--ghost, .quote-detail__button-container .btn--light-blue, .quote-detail__button-container .btn--light-blue--ghost, .quote-detail__button-container .btn--red, .quote-detail__button-container .btn--red--ghost, .quote-detail__button-container .btn--linear, .quote-detail__button-container .btn--disabled--linear, .quote-detail__button-container .btn--green--linear, .quote-detail__button-container .btn--blue--linear, .quote-detail__button-container .btn--dark-blue--linear, .quote-detail__button-container .btn--light-blue--linear, .quote-detail__button-container .btn--red--linear {
        padding: 1rem 2rem;
        width: 100%; }
  .quote-detail-skeleton {
    padding: 0.75rem; }
    .quote-detail-skeleton__content {
      padding: 1rem;
      border-radius: 8px; }
    .quote-detail-skeleton__benefits {
      gap: 1rem; }
  .skeleton-box--title {
    height: 28px;
    width: 95%; }
  .skeleton-box--subtitle {
    height: 20px;
    width: 80%; }
  .skeleton-box--price-large {
    width: 120px;
    height: 32px; }
  .skeleton-box--benefit-title {
    width: 70%;
    height: 18px; }
  .skeleton-box--benefit-desc {
    height: 14px; } }

.quoter {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: var(--section-padding-sm);
  align-items: center; }

.quoter__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-xl);
  margin-top: var(--gap-xl); }

.quoter__form-inputs, .quoter__form-inputs--two, .quoter__form-inputs--three, .quoter__form-inputs--four, .quoter__form-inputs--five {
  display: grid;
  gap: var(--gap-xs);
  max-width: 100%; }
  .quoter__form-inputs--five {
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(0, 0.5fr); }
  .quoter__form-inputs--four {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .quoter__form-inputs--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 50rem; }
  .quoter__form-inputs--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 50rem; }
  .quoter__form-inputs .checkbox-quoter, .quoter__form-inputs--five .checkbox-quoter, .quoter__form-inputs--four .checkbox-quoter, .quoter__form-inputs--three .checkbox-quoter, .quoter__form-inputs--two .checkbox-quoter {
    max-width: 15rem; }

@media screen and (max-width: 64rem) {
  .quoter__form-inputs, .quoter__form-inputs--five, .quoter__form-inputs--four, .quoter__form-inputs--three, .quoter__form-inputs--two {
    display: flex;
    flex-direction: column;
    width: 100%; }
  .checkbox-quoter {
    max-width: unset; } }

.alert, .alert--darker {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  border-radius: var(--radius-lg);
  background: var(--grey-bluish);
  font-size: var(--font-size-text-sm);
  color: var(--blue-dark);
  width: max-content;
  max-width: 100%;
  margin: auto;
  padding: var(--gap-xs) var(--gap-lg); }
  .alert--darker {
    background: var(--grey-bluish-medium-light); }
  .alert--dialog {
    position: relative;
    width: 100%;
    background: var(--grey-bluish-light);
    border: 1px solid var(--grey-bluish-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding: var(--gap-2xs);
    gap: var(--gap-2xs);
    font-size: var(--font-size-text-sm);
    color: var(--black-bluish); }
    .alert--dialog::before {
      content: "";
      width: 1.1rem;
      height: 1.1rem;
      position: absolute;
      left: var(--gap-sm);
      top: -.6rem;
      transform: rotate(-45deg);
      background: var(--grey-bluish-light);
      border: solid var(--grey-bluish-medium);
      border-width: 1px 1px 0 0; }
  .alert__link {
    color: var(--blue-medium);
    text-decoration: none; }
  .alert__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs); }
  .alert__title, .alert__title--sm {
    font-weight: bold;
    font-size: var(--font-size-text); }
    @media screen and (max-width: 48rem) {
      .alert__title, .alert__title--sm {
        font-size: var(--font-size-text-sm); } }
    .alert__title--sm {
      font-size: var(--font-size-text-sm); }
      @media screen and (max-width: 48rem) {
        .alert__title--sm {
          font-size: var(--font-size-text-2xs); } }
  .alert__text {
    font-size: var(--font-size-text-sm); }
    @media screen and (max-width: 48rem) {
      .alert__text {
        font-size: var(--font-size-text-xs); } }
    .alert__text--sm {
      font-size: var(--font-size-text-xs); }
      @media screen and (max-width: 48rem) {
        .alert__text--sm {
          font-size: var(--font-size-text-3xs); } }
  .alert__icon {
    width: 2.5rem;
    height: auto; }
    .alert__icon--sm {
      width: 2rem; }

.loader--fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: color-mix(in srgb, var(--grey-bluish) 50%, transparent);
  border-radius: var(--radius-sm);
  scale: 1.05; }

.loader__icon {
  width: 2.5rem;
  object-fit: contain;
  animation: spin 1s linear infinite; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.loader {
  position: absolute;
  right: 1.5rem;
  top: 1rem; }
  .loader:before {
    height: 24px;
    width: 24px;
    margin-top: .5rem;
    border: 3px solid;
    border-color: var(--blue-light);
    border-top-color: transparent;
    border-radius: 100%;
    animation: spinner 1.6s  linear infinite; }

@keyframes spinner-spin {
  to {
    transform: rotate(360deg); } }

@keyframes spinner-dot-pulse {
  0%, 80%, 100% {
    opacity: 0.2;
    transform: scale(0.7); }
  40% {
    opacity: 1;
    transform: scale(1.15); } }

.spinner {
  display: inline-block;
  flex-shrink: 0; }
  .spinner__arc {
    transform-origin: 40px 40px;
    animation: spinner-spin 1s linear infinite; }
  .spinner__dot {
    animation: spinner-dot-pulse 1.2s ease-in-out infinite; }
    .spinner__dot--1 {
      transform-origin: 31px 40px; }
    .spinner__dot--2 {
      transform-origin: 40px 40px;
      animation-delay: 0.2s; }
    .spinner__dot--3 {
      transform-origin: 49px 40px;
      animation-delay: 0.4s; }
  .spinner--sm {
    width: 4rem;
    height: 4rem; }
  .spinner--md {
    width: 6rem;
    height: 6rem; }
  .spinner--lg {
    width: 8rem;
    height: 8rem; }

@keyframes progress-bar-slide {
  from {
    width: 0%; }
  to {
    width: var(--progress-target, 100%); } }

.progress-bar {
  width: 100%; }
  .progress-bar__track {
    width: 100%;
    height: 0.4rem;
    background-color: var(--grey-bluish-dark);
    border-radius: 9999px;
    overflow: hidden; }
  .progress-bar__fill {
    height: 100%;
    background-color: var(--blue, #0021c4);
    border-radius: 9999px;
    width: 0%;
    transition: width 0.6s ease; }
    .progress-bar__fill--animated {
      animation: progress-bar-slide 1.8s ease forwards; }
  .progress-bar--thin .progress-bar__track {
    height: 0.3rem; }
  .progress-bar--thick .progress-bar__track {
    height: 0.6rem; }

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100svw;
  height: 100svh;
  padding-top: 10svh;
  align-items: flex-start;
  justify-content: center;
  z-index: 5; }
  .modal__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100svw;
    height: 100svh;
    background: #000000a1;
    z-index: 1; }
  .modal__dialog {
    max-width: var(--max-width-modal);
    background: var(--white);
    z-index: 2;
    border-radius: var(--radius-xl);
    padding-bottom: var(--gap-lg);
    overflow: hidden;
    margin: var(--gap-sm);
    max-height: 80svh;
    display: flex;
    flex-direction: column; }
  .modal__header {
    padding: var(--gap-md) var(--gap-lg) var(--gap-xs);
    background: var(--grey-light);
    position: relative; }
  .modal__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border-radius: var(--radius-circle);
    width: var(--modal-close-button-size);
    height: var(--modal-close-button-size);
    background: var(--grey-bluish-medium);
    font-size: 2rem;
    color: var(--grey-medium);
    cursor: pointer; }
  .modal__title {
    text-align: center;
    font-size: var(--font-size-title-xs);
    font-family: var(--font-title); }
  .modal__body {
    padding: var(--modal-content-padding);
    overflow: auto;
    flex: 1; }
    .modal__body br {
      display: block;
      height: var(--gap-xs); }
  .modal-content__title {
    font-size: var(--font-size-text);
    font-weight: bold; }
  .modal-content__text {
    font-size: var(--font-size-text-sm); }
  .modal__list, .modal__list--unordered {
    list-style: auto;
    font-size: var(--font-size-text-sm);
    margin-left: var(--gap-sm); }
    .modal__list--unordered {
      list-style: disc; }
      .modal__list--unordered li {
        margin-left: var(--gap-sm); }
  .modal__footer {
    padding: var(--gap-xs) var(--gap-lg) 0;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .modal-open {
    overflow: hidden; }
  .modal-box {
    display: flex;
    gap: var(--gap-md); }
    @media screen and (max-width: 48rem) {
      .modal-box {
        flex-direction: column;
        align-items: center; } }
    .modal-box:not(:first-of-type, :last-of-type) {
      padding: var(--gap-lg) 0; }
      @media screen and (max-width: 48rem) {
        .modal-box:not(:first-of-type, :last-of-type) {
          padding: var(--gap-md) 0; } }
    .modal-box:not(:last-of-type) {
      border-bottom: 1px solid var(--grey); }
    .modal-box:first-of-type {
      padding-bottom: var(--gap-md); }
    .modal-box:last-of-type {
      padding-top: var(--gap-md); }
    .modal-box__icon {
      width: 3.25rem;
      height: 3.25rem; }
      @media screen and (max-width: 48rem) {
        .modal-box__icon {
          width: 3rem;
          height: 3rem; } }
.contract-summary {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-lg) var(--gap-sm) var(--gap-xs) var(--gap-md);
  background-color: var(--white);
  border: 1px solid var(--grey-bluish);
  box-shadow: 0px 0px 48px 0px #11111126;
  cursor: pointer; }
  @media screen and (max-width: 78rem) {
    .contract-summary {
      gap: var(--gap-2xs);
      padding: 0 var(--gap-sm);
      max-height: 0;
      align-items: flex-start;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease; } }
  @media screen and (max-width: 78rem) {
    .contract-summary {
      position: relative; } }
  .contract-summary__insurer-logo {
    width: 9.5rem; }
    @media screen and (max-width: 78rem) {
      .contract-summary__insurer-logo {
        width: 5rem; } }
  .contract-summary__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-right: 1px solid var(--grey-bluish); }
  .contract-summary__plan, .contract-summary__plan--xs, .contract-summary__plan--sm {
    color: var(--blue);
    font-weight: bold;
    font-size: var(--font-size-title-xs);
    line-height: 100%; }
    .contract-summary__plan--sm {
      font-size: var(--font-size-text-lg); }
    .contract-summary__plan--xs {
      font-size: var(--font-size-text-2xs); }
    @media screen and (max-width: 48rem) {
      .contract-summary__plan, .contract-summary__plan--xs, .contract-summary__plan--sm {
        font-size: var(--font-size-text-sm); } }
  .contract-summary__vehicle, .contract-summary__vehicle--xs, .contract-summary__vehicle--sm {
    color: var(--grey-medium);
    font-size: var(--font-size-text); }
    .contract-summary__vehicle--sm {
      font-size: var(--font-size-text-sm); }
      @media screen and (max-width: 48rem) {
        .contract-summary__vehicle--sm {
          font-size: var(--font-size-text-xs); } }
    .contract-summary__vehicle--xs {
      font-size: var(--font-size-text-3xs); }
  .contract-summary__cents {
    vertical-align: text-top; }
  .contract-summary__pricing, .contract-summary__pricing--modal {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xs);
    align-items: flex-end;
    position: relative;
    padding-left: var(--gap-2xl); }
    .contract-summary__pricing--modal {
      margin-top: var(--gap-sm);
      padding-left: var(--gap-sm); }
      @media screen and (max-width: 48rem) {
        .contract-summary__pricing--modal {
          align-items: flex-start;
          padding-left: 0; } }
  .contract-summary__original-price, .contract-summary__original-price--xs, .contract-summary__original-price--sm {
    font-size: var(--font-size-text-xs);
    font-weight: bold;
    color: var(--blue);
    opacity: .5;
    width: max-content;
    position: absolute;
    top: -1rem; }
    @media screen and (max-width: 78rem) {
      .contract-summary__original-price, .contract-summary__original-price--xs, .contract-summary__original-price--sm {
        position: relative;
        top: unset;
        margin-right: var(--gap-xs); } }
    .contract-summary__original-price .contract-summary__cents, .contract-summary__original-price--xs .contract-summary__cents, .contract-summary__original-price--sm .contract-summary__cents {
      font-size: var(--font-size-text-3xs); }
    .contract-summary__original-price::before, .contract-summary__original-price--xs::before, .contract-summary__original-price--sm::before {
      content: "";
      position: absolute;
      top: .8rem;
      left: -.5rem;
      height: 3px;
      width: calc(100% + 1rem);
      background: var(--blue);
      opacity: .5;
      transform: rotate(6deg); }
    .contract-summary__original-price--sm {
      font-size: var(--font-size-text-2xs); }
    .contract-summary__original-price--xs {
      font-size: var(--font-size-text-3xs); }
  .contract-summary__final-price, .contract-summary__final-price--xs, .contract-summary__final-price--sm {
    font-size: var(--font-size-title-sm);
    color: var(--blue);
    width: max-content;
    line-height: normal;
    margin-top: var(--gap-2xs); }
    .contract-summary__final-price .contract-summary__cents, .contract-summary__final-price--xs .contract-summary__cents, .contract-summary__final-price--sm .contract-summary__cents {
      font-size: var(--font-size-text-xs);
      vertical-align: super; }
    .contract-summary__final-price--sm {
      font-size: var(--font-size-title-xs); }
    .contract-summary__final-price--xs {
      font-size: var(--font-size-title-2xs); }
    @media screen and (max-width: 78rem) {
      .contract-summary__final-price, .contract-summary__final-price--xs, .contract-summary__final-price--sm {
        margin: 0; } }
  .contract-summary__savings {
    padding: var(--gap-3xs);
    font-size: var(--font-size-badge-xs);
    background: var(--green-light);
    border-radius: var(--radius-xl);
    color: var(--green-dark);
    width: max-content; }
    .contract-summary__savings .contract-summary__cents {
      font-size: var(--font-size-text-3xs); }
  .contract-summary__label {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 6rem;
    padding: var(--gap-3xs) var(--gap-md);
    background-color: var(--grey-bluish);
    color: var(--blue-dark);
    font-size: var(--font-size-badge-sm);
    border-radius: 0 0 var(--radius-md) var(--radius-md); }
    @media screen and (max-width: 78rem) {
      .contract-summary__label {
        transform: unset;
        position: unset;
        min-width: 100svw;
        top: 100%;
        display: flex;
        align-items: center;
        font-size: var(--font-size-badge-xs);
        padding: var(--gap-xs);
        border-radius: var(--radius-md) var(--radius-md) 0 0; }
        .contract-summary__label .contract-summary__original-price, .contract-summary__label .contract-summary__original-price--sm, .contract-summary__label .contract-summary__original-price--xs {
          margin-left: auto; } }
  .contract-summary__chevron {
    margin-left: var(--gap-2xs);
    transition: transform 0.3s ease; }
  .contract-summary__mobile-wrap {
    position: fixed;
    bottom: 0;
    z-index: 2;
    box-shadow: 0px 0px 48px 0px #11111126;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden; }
    .contract-summary__mobile-wrap.is-open .contract-summary {
      max-height: 20rem;
      padding: var(--gap-xs); }
    .contract-summary__mobile-wrap.is-open .contract-summary__chevron {
      transform: rotate(180deg); }

.quote-modal__row {
  display: flex;
  gap: var(--gap-xl);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid var(--grey-light); }
  @media screen and (max-width: 48rem) {
    .quote-modal__row {
      flex-direction: column;
      gap: var(--gap-xs); } }
.quote-modal__info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  flex: 1; }

.quote-modal__cover {
  padding: var(--gap-md) 0;
  color: var(--grey-medium); }

.quote-modal__items {
  padding: var(--gap-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs); }

.quote-modal__insurer-logo {
  width: 11rem; }
  @media screen and (max-width: 48rem) {
    .quote-modal__insurer-logo {
      order: -1; } }
.table {
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  margin: 0 var(--gap-xs);
  overflow: hidden;
  margin: var(--gap-xl) 0; }
  .table__row {
    display: grid;
    grid-template-columns: 300px 1fr 1fr; }
    @media screen and (max-width: 48rem) {
      .table__row {
        grid-template-columns: 150px 1fr 1fr; } }
  .table__item, .table__item--light-blue, .table__item--blue {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size-text-2xs);
    padding: 0 var(--gap-3xs); }
    .table__item--blue {
      background: var(--blue);
      color: var(--white); }
    .table__item--light-blue {
      background: var(--grey-bluish); }
  .table__checkmark {
    width: 1.8rem; }

.insured-details {
  padding: var(--section-padding-lg) 0;
  background-color: var(--grey-light);
  display: flex;
  flex-direction: column;
  padding-top: var(--gap-xl);
  padding-bottom: 50rem;
  gap: var(--gap-xl); }
  .insured-details__header {
    display: flex;
    gap: var(--gap-xs);
    flex-direction: column;
    text-align: center;
    margin: auto; }
    .insured-details__header .h2--sm {
      color: var(--grey-medium); }
  .insured-details__container {
    max-width: 70rem;
    margin: auto; }
  .insured-details__column {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xs); }
  .insured-details__section, .insured-details__section--coverage, .insured-details__section--insured, .insured-details__section--cover {
    display: flex;
    padding: var(--gap-xl);
    font-family: var(--font-body); }
    @media screen and (max-width: 48rem) {
      .insured-details__section, .insured-details__section--coverage, .insured-details__section--insured, .insured-details__section--cover {
        padding: var(--gap-xl) var(--gap-xs);
        flex-direction: column; } }
    .insured-details__section--cover {
      gap: var(--gap-xl);
      border-bottom: 1px solid var(--grey);
      justify-content: space-between; }
      @media screen and (max-width: 48rem) {
        .insured-details__section--cover {
          text-align: center;
          justify-content: center; } }
    .insured-details__section--insured {
      flex-direction: column;
      gap: var(--gap-xs); }
    .insured-details__section--coverage {
      flex-direction: column;
      margin-top: var(--gap-md); }
  .insured-details__row {
    display: flex;
    gap: var(--gap-xs); }
    @media screen and (max-width: 48rem) {
      .insured-details__row {
        flex-direction: column; } }
  .insured-details__title, .insured-details__description {
    font-size: var(--font-size-text); }
  .insured-details__title {
    flex: 1;
    font-weight: bold;
    color: var(--black); }
  .insured-details__description {
    flex: 2;
    color: var(--grey-medium);
    text-align: right; }
    @media screen and (max-width: 48rem) {
      .insured-details__description {
        text-align: left;
        margin-bottom: var(--gap-xs); } }
  .insured-details__company-logo {
    height: 2.25rem;
    align-self: flex-start;
    margin-bottom: var(--gap-3xs); }
    @media screen and (max-width: 48rem) {
      .insured-details__company-logo {
        align-self: center; } }
  .insured-details__pricing {
    font-size: var(--font-size-title-sm);
    color: var(--blue);
    font-weight: bold;
    font-family: var(--font-title);
    line-height: 90%; }
  .insured-details__frequency {
    font-size: var(--font-size-text);
    color: var(--blue);
    font-weight: normal; }
  .insured-details__validity {
    font-size: var(--font-size-text-xs);
    color: var(--grey-medium);
    text-align: right; }
    @media screen and (max-width: 48rem) {
      .insured-details__validity {
        text-align: center; } }
  .insured-details__coverages {
    display: flex;
    flex-direction: column;
    margin-top: var(--gap-xl);
    gap: var(--gap-sm); }
  .insured-details__car-model {
    font-weight: bold;
    color: var(---black);
    flex: 4; }
  .insured-details__car-description {
    font-weight: bold;
    color: var(--grey-medium-light);
    white-space: wrap; }

.contract-success, .contract-loading {
  padding: var(--gap-2xl) var(--gap-xs);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50rem;
  height: auto;
  gap: var(--gap-xl); }
  .contract-success__header {
    display: flex;
    gap: var(--gap-xs);
    flex-direction: column;
    text-align: center;
    margin: 0 auto; }
    .contract-success__header .h2--sm {
      color: var(--grey-medium); }
  .contract-success__content, .contract-success__footer {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: var(--gap-xs);
    color: var(--grey-medium);
    width: 45rem;
    max-width: 100%; }
  .contract-success__footer {
    gap: var(--gap-md);
    align-items: center; }
    .contract-success__footer-form, .contract-success__footer .btn, .contract-success__footer .btn--disabled, .contract-success__footer .btn--disabled--ghost, .contract-success__footer .btn--sm, .contract-success__footer .btn--large, .contract-success__footer .btn--green, .contract-success__footer .btn--green--ghost, .contract-success__footer .btn--blue, .contract-success__footer .btn--blue--ghost, .contract-success__footer .btn--dark-blue, .contract-success__footer .btn--dark-blue--ghost, .contract-success__footer .btn--light-blue, .contract-success__footer .btn--light-blue--ghost, .contract-success__footer .btn--red, .contract-success__footer .btn--red--ghost, .contract-success__footer .btn--linear, .contract-success__footer .btn--disabled--linear, .contract-success__footer .btn--green--linear, .contract-success__footer .btn--blue--linear, .contract-success__footer .btn--dark-blue--linear, .contract-success__footer .btn--light-blue--linear, .contract-success__footer .btn--red--linear {
      width: 100%;
      justify-content: center; }
  .contract-success__badge {
    padding: var(--gap-3xs) var(--gap-2xs);
    background-color: var(--grey-bluish-medium-light);
    color: var(--grey-medium);
    font-size: var(--font-size-text-sm);
    width: max-content;
    border-radius: var(--radius-xs);
    margin: auto; }
  .contract-success__note {
    font-size: var(--font-size-text-2xs);
    color: var(--grey-medium); }
  .contract-success__title, .contract-success__title--blue {
    font-size: var(--font-size-text);
    color: var(--grey-medium);
    font-weight: bold; }
    .contract-success__title--blue {
      color: var(--blue); }
  .contract-success__description {
    font-size: var(--font-size-text);
    color: var(--grey-medium); }
  .contract-success__check-icon {
    width: 5.5rem;
    margin: auto; }

.contract-loading {
  min-height: 98svh; }
  .contract-loading .progress-bar {
    margin-top: var(--gap-xs); }

.btn, .btn--disabled, .btn--disabled--ghost, .btn--sm, .btn--large, .btn--green, .btn--green--ghost, .btn--blue, .btn--blue--ghost, .btn--dark-blue, .btn--dark-blue--ghost, .btn--light-blue, .btn--light-blue--ghost, .btn--red, .btn--red--ghost, .btn--linear, .btn--disabled--linear, .btn--green--linear, .btn--blue--linear, .btn--dark-blue--linear, .btn--light-blue--linear, .btn--red--linear {
  display: flex;
  align-items: center;
  height: var(--height-button);
  border-width: 0;
  outline: none;
  background: var(--blue-light);
  padding: var(--padding-md) var(--padding-xl);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-button);
  font-family: var(--font-button);
  border-color: var(--blue-light);
  border-style: solid;
  color: var(--text-primary);
  cursor: pointer;
  width: max-content;
  text-decoration: none;
  gap: var(--gap-sm); }
  .btn:hover, .btn--disabled:hover, .btn--disabled--ghost:hover, .btn--sm:hover, .btn--large:hover, .btn--green:hover, .btn--green--ghost:hover, .btn--blue:hover, .btn--blue--ghost:hover, .btn--dark-blue:hover, .btn--dark-blue--ghost:hover, .btn--light-blue:hover, .btn--light-blue--ghost:hover, .btn--red:hover, .btn--red--ghost:hover, .btn--linear:hover, .btn--disabled--linear:hover, .btn--green--linear:hover, .btn--blue--linear:hover, .btn--dark-blue--linear:hover, .btn--light-blue--linear:hover, .btn--red--linear:hover {
    background: var(--blue-light-hover); }
  .btn--ghost, .btn--green--ghost, .btn--blue--ghost, .btn--dark-blue--ghost, .btn--light-blue--ghost, .btn--red--ghost {
    cursor: unset; }
    .btn--ghost *, .btn--green--ghost *, .btn--blue--ghost *, .btn--dark-blue--ghost *, .btn--light-blue--ghost *, .btn--red--ghost * {
      cursor: pointer;
      text-decoration: none;
      color: inherit; }
  .btn--linear, .btn--disabled--linear, .btn--green--linear, .btn--blue--linear, .btn--dark-blue--linear, .btn--light-blue--linear, .btn--red--linear {
    background: none;
    border-width: 2px;
    color: var(--blue-light); }
    .btn--linear:hover, .btn--disabled--linear:hover, .btn--green--linear:hover, .btn--blue--linear:hover, .btn--dark-blue--linear:hover, .btn--light-blue--linear:hover, .btn--red--linear:hover {
      background: none; }
  .btn--red, .btn--red--ghost {
    background: var(--red);
    border-color: var(--red);
    color: var(--white); }
    .btn--red:hover, .btn--red--ghost:hover {
      background: var(--red-hover); }
    .btn--red--ghost {
      background: transparent;
      color: var(--red); }
      .btn--red--ghost:hover {
        background: transparent;
        color: var(--red-hover);
        border-color: var(--red-hover); }
    .btn--red--linear {
      border-color: var(--red);
      color: var(--red); }
      .btn--red--linear:hover {
        background: none;
        color: var(--red-hover);
        border-color: var(--red-hover); }
  .btn--light-blue, .btn--light-blue--ghost {
    background: var(--blue-lighter);
    color: var(--blue-medium); }
    .btn--light-blue:hover, .btn--light-blue--ghost:hover {
      background: var(--blue-lighter-hover); }
    .btn--light-blue--ghost {
      background: transparent;
      color: var(--blue-lighter);
      border-color: var(--blue-lighter); }
      .btn--light-blue--ghost:hover {
        background: transparent;
        color: var(--blue-lighter-hover);
        border-color: var(--blue-lighter-hover); }
    .btn--light-blue--linear {
      border-color: var(--blue-lighter);
      color: var(--blue-lighter); }
      .btn--light-blue--linear:hover {
        background: none;
        color: var(--blue-lighter-hover);
        border-color: var(--blue-lighter-hover); }
  .btn--dark-blue, .btn--dark-blue--ghost {
    background: var(--blue-dark);
    color: var(--blue-light); }
    .btn--dark-blue:hover, .btn--dark-blue--ghost:hover {
      background: var(--blue-dark-hover); }
    .btn--dark-blue--ghost {
      background: transparent;
      color: var(--blue-dark);
      border-color: var(--blue-dark); }
      .btn--dark-blue--ghost:hover {
        background: transparent;
        color: var(--blue-dark-hover);
        border-color: var(--blue-dark-hover); }
    .btn--dark-blue--linear {
      border-color: var(--blue-dark);
      color: var(--blue-dark); }
      .btn--dark-blue--linear:hover {
        background: none;
        color: var(--blue-dark-hover);
        border-color: var(--blue-dark-hover); }
  .btn--blue, .btn--blue--ghost {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white); }
    .btn--blue:hover, .btn--blue--ghost:hover {
      background: var(--blue-hover); }
    .btn--blue--ghost {
      background: transparent;
      color: var(--blue); }
      .btn--blue--ghost:hover {
        background: transparent;
        color: var(--blue-hover);
        border-color: var(--blue-hover); }
    .btn--blue--linear {
      border-color: var(--blue);
      color: var(--blue); }
      .btn--blue--linear:hover {
        background: none;
        color: var(--blue-hover);
        border-color: var(--blue-hover); }
  .btn--green, .btn--green--ghost {
    background: var(--green);
    border-color: var(--green);
    color: var(--white); }
    .btn--green:hover, .btn--green--ghost:hover {
      background: var(--green-hover); }
    .btn--green--ghost {
      background: transparent;
      color: var(--green); }
      .btn--green--ghost:hover {
        background: transparent;
        color: var(--green-hover);
        border-color: var(--green-hover); }
    .btn--green--linear {
      border-color: var(--green);
      color: var(--green); }
      .btn--green--linear:hover {
        background: none;
        color: var(--green-hover);
        border-color: var(--green-hover); }
  .btn--large {
    height: var(--height-button-large); }
  .btn--sm {
    height: var(--height-button-sm);
    font-size: var(--font-size-button-sm); }
  .btn--disabled, .btn--disabled--ghost {
    background: var(--grey);
    border-color: var(--grey);
    color: var(--white);
    cursor: unset; }
    .btn--disabled:hover, .btn--disabled--ghost:hover {
      background: var(--grey);
      border-color: var(--grey);
      color: var(--white); }
    .btn--disabled--ghost {
      background: transparent;
      color: var(--grey); }
      .btn--disabled--ghost:hover {
        background: transparent; }
    .btn--disabled--linear {
      border-color: var(--grey);
      color: var(--grey); }
      .btn--disabled--linear:hover {
        background: none; }
  .btn__icon {
    width: 1.5rem; }

.select_container {
  position: relative;
  margin-top: 3rem; }

.select2-hidden-accessible {
  display: none; }

.field-element.select__trigger {
  position: relative; }

.select2-container--open .select2-selection__rendered {
  opacity: 0; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  padding-right: 40px;
  padding-left: 10px; }

.field .field-element, .field--disabled .field-element, .field--row .field-element {
  width: 100%; }

.field-element .select2-container {
  width: 100% !important; }

.field-element.select__trigger {
  padding: 0; }

.select2-container {
  display: flex;
  align-items: center; }

.select2-search__field {
  position: absolute;
  outline: 0;
  height: 100%;
  font-size: 16px;
  background: transparent;
  padding: 0 6px;
  top: -36px;
  left: 1rem;
  border: 0;
  width: 83%;
  border-radius: 10px;
  font-size: var(--font-size-select);
  font-family: var(--font-text);
  color: var(--blue-light);
  min-width: 22rem; }

.select__trigger input {
  font-size: inherit;
  font-family: inherit;
  color: inherit; }

.select2.select2-container.select2-container--default {
  padding: 0 var(--gap-xs); }

.select2-container--default {
  text-align: left;
  text-overflow: ellipsis;
  max-width: 100%; }

.select2-container--below {
  width: 100% !important; }

.select2-results {
  margin-top: 2rem; }

.select2-results {
  left: 0;
  display: block;
  background: #FFF;
  -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.5) 0 0px 1px);
  border-radius: 10px;
  padding: 10px 0; }

.select2-results__options {
  background: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0;
  max-height: 15rem;
  overflow: auto;
  z-index: 2; }

.select2-results__option {
  position: relative;
  text-align: left;
  padding: var(--padding-md) var(--padding-xl);
  font-size: var(--font-size-text-sm); }
  .select2-results__option[aria-selected=true] {
    background: var(--grey-bluish); }
  .select2-results__option:hover {
    background: var(--grey-bluish);
    cursor: pointer; }
  .select2-results__option:first-of-type {
    padding-top: var(--padding-lg); }
  .select2-results__option:last-of-type {
    padding-bottom: var(--padding-lg); }

.field.isverifyng .loader:before, .isverifyng.field--disabled .loader:before, .isverifyng.field--row .loader:before {
  content: "";
  display: inline-block; }

.select2-selection__arrow {
  position: absolute;
  right: .5rem;
  top: .7rem; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  align-self: center;
  position: relative;
  left: 5px;
  top: 0;
  margin: 0 auto;
  border: none;
  width: 50px;
  height: 60px;
  display: block;
  background: url(/static/frontend/images/landing2.0/icons/chevron/blue-light.svg?fcb7da3c3dce) no-repeat 0 center;
  background-size: 70%;
  max-height: 100%; }
  @media (max-height: 800px), (max-width: 48rem) {
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      width: 30px;
      height: 40px; } }
.select2.select2-container.select2-container--default,
.select2-selection.select2-selection--single,
.selection,
.select2-selection__rendered {
  height: 100%; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  display: flex !important;
  align-items: center;
  max-width: calc(100% - 3rem); }

.field-element .select2-container .select2-selection--single {
  height: 38px; }

.select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2 .selection {
  width: 100%; }

.select__label-top {
  position: absolute;
  left: 0;
  top: -3rem; }

.form-design, input[type=text], input[type=number], input[type=email], input[type=password], input:not([type='checkbox']):not([type='submit']):not([type='radio']):not([type='search']) {
  width: 100%;
  height: 100%;
  padding: 0 var(--gap-md);
  outline: 0; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

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

@keyframes spinner {
  from {
    transform: rotate(0); }
  to {
    transform: rotate(360deg); } }

.select2-dropdown {
  display: inline-block; }

.field, .field--disabled, .field--row {
  position: relative; }

.errorlist {
  display: none; }

.checkbox-wrap .checkmark {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%);
  height: 50px;
  width: 50px;
  border: 3px solid var(--blue-light);
  border-radius: 4px;
  cursor: pointer; }

.checkbox-wrap input:checked ~ .checkmark::before {
  content: "";
  margin-top: .4rem;
  display: inline-block;
  background: url(/static/frontend/images/landing2.0/icons/checkmark/light-blue.svg?fcb7da3c3dce) no-repeat 0 center;
  background-size: 100%;
  width: 32px;
  height: 32px;
  object-fit: cover;
  color: var(--blue-light); }

.checkbox__label {
  width: 100%;
  transform: translate(-50%);
  left: 50%; }

.stepper {
  display: flex; }
  .stepper .step, .stepper .step--active {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: var(--gap-2xl);
    gap: var(--gap-2xs); }
    .stepper .step:not(:first-child), .stepper .step--active:not(:first-child) {
      margin-left: var(--gap-2xs); }
    .stepper .step:not(:last-child), .stepper .step--active:not(:last-child) {
      flex: 1; }
      .stepper .step:not(:last-child)::after, .stepper .step--active:not(:last-child)::after {
        content: "";
        height: 3px;
        flex: 1;
        background-color: var(--grey-bluish-dark); }
    .stepper .step__number, .stepper .step--checked .step__number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3.25rem;
      height: 3.25rem;
      border: 2px solid var(--grey-bluish-dark);
      color: var(--grey-bluish-dark);
      border-radius: var(--radius-circle);
      font-family: var(--font-size-text-3xs);
      font-weight: 600; }
    .stepper .step--checked .step__number {
      background: var(--green);
      border-color: var(--green); }
    .stepper .step--checked::after {
      background-color: var(--green) !important; }
    .stepper .step__label {
      font-size: var(--font-size-text-3xs);
      font-weight: normal;
      color: var(--grey-medium);
      text-align: center;
      position: absolute;
      top: 4rem; }
    .stepper .step--active .step__number {
      color: var(--blue);
      border-color: var(--blue); }
    .stepper .step--active .step__label {
      color: var(--blue); }
    .stepper .step__check {
      width: 1.5rem;
      stroke: var(--white); }
  .stepper.mobile-only {
    background: var(--grey-light);
    padding: var(--gap-md) var(--gap-sm) var(--gap-sm);
    margin: 0 calc(var(--gap-xs) * -1) var(--gap-lg); }

.stepper-progress {
  display: flex;
  align-items: center;
  gap: var(--gap-sm); }
  .stepper-progress__donut {
    flex-shrink: 0; }
  .stepper-progress__ring-fill {
    transform-box: fill-box;
    transform-origin: center;
    transform: rotate(90deg) scaleX(-1);
    transition: stroke-dasharray 0.4s ease; }
  .stepper-progress__info {
    display: flex;
    flex-direction: column; }
  .stepper-progress__current-label {
    font-weight: bold;
    font-size: var(--font-size-subtitle);
    color: var(--black); }
  .stepper-progress__next-label, .stepper-progress__next-label--last {
    font-size: var(--font-size-text-2xs);
    color: var(--grey-medium-light); }
    .stepper-progress__next-label--last {
      color: var(--blue); }
  .stepper-progress__step {
    position: absolute;
    font-size: var(--font-size-text-2xs);
    width: max-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold; }
  .stepper-progress__ring-container {
    position: relative;
    height: 80px; }

.field, .field--disabled, .field--row {
  display: flex;
  gap: var(--gap-2xs);
  flex-direction: column; }
  .field--row {
    flex-direction: row;
    align-items: center; }
  .field__label {
    font-size: var(--font-size-label-sm);
    font-family: var(--font-input-label); }
  .field__input, .field--disabled .field__input, .field__input--error, .field__input--approved {
    display: flex;
    position: relative;
    background: var(--grey-bluish);
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: var(--height-input-sm);
    border: 1px solid var(--grey-bluish);
    border-left-color: var(--blue-medium);
    transition: .3s; }
    .field__input input, .field--disabled .field__input input, .field__input--error input, .field__input--approved input {
      padding: 0 var(--gap-xs) !important;
      font-size: var(--font-size-label-sm);
      flex: 1;
      color: var(--blue-dark);
      font-family: var(--font-body); }
    .field__input::before, .field--disabled .field__input::before, .field__input--error::before, .field__input--approved::before {
      content: "";
      width: 4px;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background: var(--blue-medium); }
    .field__input--approved {
      border: 1px solid var(--green); }
      .field__input--approved::before {
        background: var(--green); }
    .field__input--error {
      border: 1px solid var(--red); }
      .field__input--error::before {
        background: var(--red); }
  .field__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: var(--input-icon-width);
    margin-left: 4px; }
  .field__footer {
    display: flex;
    align-items: center;
    gap: var(--gap-3xs); }
    .field__footer-icon {
      width: 1rem;
      height: auto; }
    .field__footer-text, .field__footer-text-error {
      font-size: var(--font-size-text-2xs);
      color: var(--grey-medium); }
      .field__footer-text-error {
        color: var(--red); }
  .field__error {
    display: none;
    margin-top: var(--gap-3xs); }
    .field__error-list {
      display: block !important;
      list-style: none;
      padding: 0;
      margin: 0; }
      .field__error-list li {
        color: var(--red);
        font-size: var(--font-size-text-2xs);
        font-family: var(--font-body); }
  .field--disabled {
    opacity: 25%; }
    .field--disabled .field__input, .field--disabled .field__input--approved, .field--disabled .field__input--error {
      transition: 0s linear;
      background: var(--grey-bluish-medium); }

.readonly-field {
  display: flex;
  flex-direction: column;
  flex: 1; }
  .readonly-field__label {
    font-size: var(--font-size-text-2xs);
    color: var(--grey-medium);
    font-family: var(--font-input-label); }
  .readonly-field__data {
    font-size: var(--font-size-text-sm);
    color: var(--blue-dark); }

.radio {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  position: relative; }
  .radio__wrap {
    display: flex;
    gap: var(--gap-sm);
    margin-top: var(--gap-xs); }
  .radio__label {
    font-size: var(--font-size-text-sm); }
  .radio__checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    min-height: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--grey-bluish);
    border-radius: var(--radius-circle); }
    .radio__checkmark-circle {
      display: inline-block;
      width: .5rem;
      height: .5rem;
      border-radius: var(--radius-circle); }
  .radio input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer; }
    .radio input[type="radio"]:checked ~ .radio__checkmark {
      background: var(--blue-medium); }
      .radio input[type="radio"]:checked ~ .radio__checkmark .radio__checkmark-circle {
        background: var(--white); }

.form {
  max-width: 55rem;
  margin: auto;
  padding: 0 var(--gap-xs) var(--gap-2xl); }
  .form__header {
    padding: var(--gap-2xl) 0 var(--gap-lg);
    text-align: center; }
    @media screen and (max-width: 48rem) {
      .form__header {
        display: none; } }
  .form__container {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    margin: auto;
    min-height: 30rem; }
    @media screen and (min-width: 78rem) {
      .form__container {
        box-shadow: 0 0 48px 0 rgba(17, 17, 17, 0.15);
        background: var(--white);
        padding: var(--gap-lg) var(--gap-xl);
        border-radius: var(--radius-md); } }
    .form__container-footer {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      gap: var(--gap-sm);
      margin-top: auto; }
  .form__fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    position: relative; }
  .form .fields {
    display: flex;
    gap: var(--gap-xs); }
    @media screen and (max-width: 48rem) {
      .form .fields {
        flex-direction: column; } }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md); }
    .form-group:not(:last-of-type) {
      margin-bottom: 1rem; }
    .form-group__header {
      padding-bottom: var(--gap-2xs);
      border-bottom: 1px solid var(--grey-bluish-dark);
      font-weight: 500; }
    .form-group__title, .form-group__title--optional, .form-group__title--center {
      font-size: var(--font-size-text);
      color: var(--grey-medium);
      font-family: var(--font-text);
      font-weight: 500; }
      .form-group__title--center {
        text-align: center; }
      .form-group__title--optional {
        color: var(--grey-medium-light);
        font-size: var(--font-size-text-xs); }
    .form-group__editable {
      display: flex;
      align-items: center;
      gap: var(--gap-md); }
    .form-group__section {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xs); }
    .form-group__edit-icon {
      cursor: pointer; }
    .form-group__actions {
      display: flex;
      justify-content: center;
      margin-top: var(--gap-md); }
  .form-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-2xs);
    margin-top: calc(var(--gap-lg) * -1);
    margin-bottom: var(--gap-xl); }
    .form-legal__icon {
      width: 1rem;
      height: 1rem; }
    .form-legal__text {
      font-size: 1rem;
      color: var(--grey-medium); }
    .form-legal__link {
      text-decoration: underline;
      color: inherit; }
  .form__subtitle, .form__subtitle--center {
    font-size: var(--font-size-subtitle-sm);
    font-family: var(--font-body);
    color: var(--grey-medium); }
    .form__subtitle--center {
      text-align: center; }
  .form__annotation, .form__annotation--center {
    font-size: var(--font-size-text-xs);
    font-family: var(--font-body);
    color: var(--grey-medium); }
    .form__annotation--center {
      text-align: center; }

.form .select2 {
  display: flex;
  position: relative;
  background: var(--grey-bluish);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: var(--height-input-sm) !important;
  border: 1px solid var(--grey-bluish);
  border-left-color: var(--blue-medium);
  transition: .3s; }
  .form .select2 input {
    padding: 0 var(--gap-xs) !important;
    font-size: var(--font-size-label-sm);
    flex: 1;
    font-family: var(--font-body); }
  .form .select2::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--blue-medium); }
  .form .select2 .select2-selection__rendered {
    color: var(--grey); }

.form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(/static/frontend/images/landing2.0/icons/chevron/blue-medium.svg?fcb7da3c3dce) no-repeat 0 center;
  height: 24px;
  width: 32px;
  object-fit: contain;
  top: .25rem;
  left: -.5rem; }

.form .date-select-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xs); }
  .form .date-select-group.is-placeholder .select2-selection__rendered {
    color: var(--gray, #aaa) !important; }

.form .select2-container.is-filled .select2-selection__rendered {
  color: var(--blue-dark, #000) !important; }

.form .select2-selection__rendered {
  font-size: var(--font-size-label-sm); }

.form .select2-container--approved {
  border: 1px solid var(--green); }
  .form .select2-container--approved::before {
    background: var(--green); }

.form .select2-icon--left {
  width: 2.5rem;
  height: auto;
  margin-right: var(--gap-3xs);
  margin-left: -.5rem; }

.form .select2-icon--check {
  margin-right: var(--gap-lg);
  width: 1.5rem; }

.select--form .select2-search__field {
  top: calc(var(--height-input-sm) * -1);
  font-size: var(--font-size-text-sm);
  color: var(--blue-darkest);
  font-family: var(--font-body);
  height: var(--height-input-sm); }

.select--form.select--icon .select2-search__field {
  left: var(--gap-lg); }
  @media screen and (max-width: 48rem) {
    .select--form.select--icon .select2-search__field {
      left: var(--gap-xl); } }
.checkbox {
  width: 2rem;
  height: 2rem;
  background: var(--grey-bluish);
  border-radius: var(--radius-2xs);
  display: flex;
  justify-content: center; }
  .checkbox__checkmark {
    display: none; }
  .checkbox__wrap {
    display: flex;
    align-items: center;
    padding-top: var(--gap-md);
    margin-top: var(--gap-2xs);
    gap: var(--gap-xs);
    position: relative; }
    .checkbox__wrap .field__label {
      white-space: nowrap;
      font-family: var(--font-checkbox); }
    .checkbox__wrap input {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      cursor: pointer; }
      .checkbox__wrap input:checked ~ .checkbox {
        background: var(--blue-medium); }
        .checkbox__wrap input:checked ~ .checkbox .checkbox__checkmark {
          display: inline-block; }

.progress-bar {
  display: flex;
  gap: var(--gap-3xs);
  max-width: 1000px;
  width: 100%;
  height: .5rem;
  border-radius: var(--radius-full);
  overflow: hidden; }

.progress-bar__item, .progress-bar__item--completed, .progress-bar__item--current {
  background: var(--white);
  opacity: 25%;
  flex: 1; }
  .progress-bar__item--current {
    opacity: 50%; }
  .progress-bar__item--completed {
    opacity: 100%; }

.selector {
  display: flex;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: var(--height-input-sm);
  border: 2px solid var(--blue);
  transition: .3s; }
  .selector::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--blue); }
  .selector__radio-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem; }
  .selector__radio-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--blue);
    width: 1.85rem;
    height: 1.85rem;
    border-radius: var(--radius-circle); }
  .selector__radio img {
    display: none; }
  .selector__content {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: var(--font-size-select-sm);
    color: var(--blue-dark); }
  .selector input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer; }
  .selector input:checked ~ .selector__radio-wrap .selector__radio-checkmark {
    border: var(--green); }
    .selector input:checked ~ .selector__radio-wrap .selector__radio-checkmark img {
      display: block; }
  .selector__icons {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    padding-right: var(--gap-sm); }
    .selector__icons img {
      height: 1.25rem; }

.cc-readonly {
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  height: auto;
  border: 1px solid var(--grey-bluish-medium);
  border-left-color: var(--grey-bluish-medium);
  transition: .3s;
  position: relative;
  overflow: hidden; }
  .cc-readonly::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--grey-bluish-medium); }
  .cc-readonly__row {
    display: flex;
    flex: 1;
    align-items: center;
    padding: var(--gap-3xs) var(--gap-2xs); }
    .cc-readonly__row * {
      flex: 1; }
    @media screen and (max-width: 48rem) {
      .cc-readonly__row {
        flex-direction: column;
        align-items: flex-start; } }
  .cc-readonly__number {
    color: var(--blue-dark);
    font-size: var(--font-size-text);
    letter-spacing: .4rem; }
    @media screen and (max-width: 48rem) {
      .cc-readonly__number {
        letter-spacing: unset; } }
  .cc-readonly__data {
    font-size: var(--font-size-text-sm);
    color: var(--blue-dark);
    line-height: 1.5rem;
    text-transform: uppercase; }
  .cc-readonly__logo, .cc-readonly__logo--falabella, .cc-readonly__logo--naranja, .cc-readonly__logo--american, .cc-readonly__logo--master, .cc-readonly__logo--visa {
    padding: 0 var(--gap-xs); }
    .cc-readonly__logo--visa {
      height: 1rem; }
    .cc-readonly__logo--master {
      height: 1.5rem; }
    .cc-readonly__logo--american {
      height: 2.5rem; }
    .cc-readonly__logo--naranja {
      height: 3rem; }
    .cc-readonly__logo--falabella {
      height: 2rem; }
