:root {
  --color-blue-calculadoradefiniquito: #2F4DAA;
  --color-yellow-calculadoradefiniquito: #FBBF3D;
  --color-orange-calculadoradefiniquito: #F59121;
  --color-dark-blue: #2B3C6A;
  --color-middle-blue-1: #2F6FC2;
  --color-middle-blue-2: #73A0DB;
  --color-light-blue: #D9E3FC;
  --color-white: #fff;
  --color-error: #F54721;
  
  --wb-font-color-1: #1A2441;
  --wb-font-color-2: #A1A2AA;
  --wb-bg-modules: #F6F8FE;
  
  --font-family-body: 'Inter', sans-serif;
  --font-family-title: 'Source Sans Pro', sans-serif;

  --bg-cta-1: linear-gradient(0deg, #F8A12A 0%, #FBBF3D 100%);
  --bg-cta-1-hover: linear-gradient(178.56deg, #F59121 1.23%, #CE5816 151.61%);
  --bg-cta-2-hover: linear-gradient(180deg, #2F4DAA 0%, #2E4176 100%);
	--bg-gradient-modules-to-white: linear-gradient(180deg, #F6F8FE 0%, #FFF 100%);
  
  --radius-btn: 69px;
  --radius-16: 16px;
  --radius-32: 32px;
  
  --box-shadow-1: 0px 2px 9px 0px rgba(0, 0, 0, 0.10);
  --box-shadow-2: 0px 0px 18px 4px rgba(43, 60, 106, 0.24);
  --box-shadow-3: 1px 2px 9.1px 2px rgba(43, 60, 106, 0.12);
  --box-shadow-responsive: 0px 0px 14px 0px rgba(43, 60, 106, 0.09);
}
 

html { scroll-behavior: smooth; }

 
 

ul {list-style: none; list-style-position: inside;}

.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-bold { font-weight: 700; }
.fw-semi-bold {font-weight: 600!important;}
.fw-extra-bold { font-weight: 900; }

.ff-title { font-family: var(--font-family-title); }
.ff-body { font-family: var(--font-family-body)!important; }

header.sticky { box-shadow: 0px 7px 7px 0px rgba(51,51,51,0.3) }

.boxer { width: 90%; margin: 0 auto; max-width: 1200px; } /* max-width: 1300px; Hasta que todo esté actualizado */
.txt-center { text-align: center; }
.txt-left { text-align: left; }
.txt-right { text-align: right; }
.pst-relative { position: relative; }
.pst-absolute { position: absolute; }
.wi-100 { width: 100% !important; }
.wi-fit {width: fit-content;}
.hi-100 { height: 100% !important; }
.vh-100 {height:100vh;}
.hi-auto { height: auto !important; }
.vertical-a-middle { vertical-align: middle; }


.v-mobile { display: block; }
.v-mobile.v-tablet { display: block; }  
.v-tablet { display: none; }
.v-tablet.v-desktop { display: none; } 
.v-desktop { display: none; }

.btn { border-radius: var(--radius-btn); cursor: pointer; display: inline-block; font-family: var(--font-family-title);
       font-weight: 600; padding: 0.688rem 1.875rem; text-align: center; transition: .3s; width: auto;}

.btn--1 { background: var(--bg-cta-1); border-color: var(--bg-cta-1); color: var(--color-white); font-size: 1.25rem; border-width: 0; border-style: none; }
.btn--1:hover, .btn--1:focus { background: var(--bg-cta-1-hover); color: var(--color-white); }

.btn--2 { font-weight: 700!important; background: transparent; border: 2px solid var(--color-blue-calculadoradefiniquito); padding: .563rem 1.75rem !important; color: var(--color-blue-calculadoradefiniquito); font-size: 1.25rem; border-radius: var(--radius-btn);}
.btn--2:hover, .btn--2:focus { background: var(--bg-cta-2-hover); color: var(--color-white); }

.btn--2b { background: var(--color-blue-calculadoradefiniquito); border: 2px solid var(--color-white); padding: .563rem 1.75rem !important; color: var(--color-white); font-size: 1.25rem; border-radius: var(--radius-btn);}
.btn--2b:hover, .btn--2b:focus { background: var(--color-white); color: var(--color-blue-calculadoradefiniquito); border: 2px solid var(--color-blue-calculadoradefiniquito);}

.btn--2c { background: transparent; border: 2px solid var(--color-white); padding: .563rem 1.75rem !important; color: var(--color-white); font-size: 1.25rem; border-radius: var(--radius-btn);}
.btn--2c:hover, .btn--2b:focus { background: var(--color-white); color: var(--color-blue-calculadoradefiniquito); border: 2px solid var(--color-blue-calculadoradefiniquito);}

.btn--3 { background: var(--color-light-blue); color: var(--color-blue-calculadoradefiniquito); font-size: 1.125rem; font-weight: 400; border: none; }
.btn--3:hover { background: var(--color-blue-calculadoradefiniquito); color: var(--color-white); font-weight: 700;}

.btn--4 { font-weight: 700!important; background: white; color: var(--color-blue-calculadoradefiniquito); font-size: 1.25rem; border-radius: var(--radius-btn);}
.btn--4:hover, .btn--4:focus {background: var(--bg-cta-1-hover); color: var(--color-white);}



.btn.btn--txt { border: none; font-weight: 400; font-size: 1.125rem; padding: 0.25rem; background: transparent; }
.btn.btn--txt:hover, .btn.btn--txt:focus { text-decoration: underline; }

.shadow-box-fluid { box-shadow: var(--box-shadow-1); border-radius: var(--radius-16); }
.shadow-1 { box-shadow: var(--box-shadow-1);  }
.shadow-2 { box-shadow: var(--box-shadow-2); }
.shadow-3 { box-shadow: var(--box-shadow-3); }
.shadow-responsive { box-shadow: var(--box-shadow-responsive); }

.of-x { overflow: hidden;}
.rounded-0 { border-radius: 0px; }
.rounded-8 { border-radius: 8px; }
.rounded-16 { border-radius: var(--radius-16); }
.rounded-23 { border-radius: 23px; }
.rounded-32 { border-radius: 32px; }
.rounded-49 { border-radius: 49px; }
.rounded-56 { border-radius: 56px; }
.rounded-85 { border-radius: 85px; }
.rounded-16-top { border-radius: 16px 16px 0 0; }

.border-1-light { border: 1px solid var(--color-light-blue); }
.outline-light-blue {border: 1px solid var(--color-light-blue)}

.gap--0 { gap: 0 !important; }
.gap--8 { gap: .5rem !important; }
.gap--12 { gap: 0.75rem !important; }
.gap--16 { gap: 1rem !important; }
.gap--24 { gap: 1.5rem !important; }
.gap--32 { gap: 2rem !important; }
.none-wrap { flex-wrap: nowrap !important; }
.ds-block { display:block;}
.ds-none { display: none !important; }
.d-flex {display:flex;} /* solo flex*/
.ds-flex { display: flex; flex-wrap: wrap; gap: .5rem;}
.flex-dir-column { flex-direction: column; }
.flex-dir-column-rv { flex-direction: column-reverse; }
.jc-center { justify-content: center; }
.jc-start { justify-content: flex-start; }
.jc-end { justify-content: flex-end; }
.jc-between{ justify-content: space-between; }
.jc-around { justify-content: space-around; }
.jc-self-center { justify-self: center; }
.ai-start { align-items: flex-start; }
.ai-end {  align-items: flex-end; }
.ai-center { align-items: center; }
.ai-cont-start { align-content: flex-start; }
.ai-cont-end {  align-content: flex-end; }
.ai-cont-center { align-content: center; }
.ai-stretch { align-items: stretch; }
.ai-baseline {align-items: baseline;}
.ai-end {align-items: end;}
.ai-self-center { align-self: center; }
.ai-self-start { align-self: start; }
.ai-self-end { align-self: end; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.pi-center { place-items: center; }

.bg-gradient-modules-white { background:linear-gradient(180deg, #F6F8FE 0%, #FFF 100%);}
.bg-light-blue-white {background: linear-gradient(180deg, #D9E3FC 0%, #FFF 46.66%);}
.bg-gradient-blue { background: var(--bg-cta-2-hover); }
.bg-naranja-calculadoradefiniquito{ background: var(--color-orange-calculadoradefiniquito);}
.bg-amarillo-calculadoradefiniquito {background: var(--color-yellow-calculadoradefiniquito)}
.bg-light-modules { background: var(--wb-bg-modules); }
.bg-middle-blue-1 {background: var(--color-middle-blue-1);}
.bg-middle-blue-2 {background: var(--color-middle-blue-2);}
.bg-blue-calculadoradefiniquito { background: var(--color-blue-calculadoradefiniquito); }
.bg-white { background: var(--color-white)!important; }
.bg-light-blue { background: var(--color-light-blue); }
.bg-light-modules-mobile {background: var(--wb-bg-modules);}
.bg-productSh {background: var(--bg-cta-2-hover);}
.bg-blue-calculadoradefiniquito-gradient { background: var(--bg-cta-2-hover); }
.bg-gradient-modules-to-white {background: var(--bg-gradient-modules-to-white);} /*degradado de celeste a blanco*/
.txt-light-modules { color: var(--wb-bg-modules); }
.txt-blue-calculadoradefiniquito { color: var(--color-blue-calculadoradefiniquito) !important; }
.txt-white {color: var(--color-white);}
.txt-black-calculadoradefiniquito {color: var(--wb-font-color-1) !important;}
.txt-dark-blue {color:var(--color-dark-blue)}
.txt-grey { color: var(--wb-font-color-2); }
.txt-middle-blue {color: var(--color-middle-blue-2);}
.txt-yellow-calculadoradefiniquito{color:var(--color-yellow-calculadoradefiniquito)}


.bg-blue-calculadoradefiniquito h1, .bg-blue-calculadoradefiniquito .h1,
.bg-blue-calculadoradefiniquito h2, .bg-blue-calculadoradefiniquito .h2,
.bg-blue-calculadoradefiniquito h3, .bg-blue-calculadoradefiniquito .h3,
.bg-blue-calculadoradefiniquito h4, .bg-blue-calculadoradefiniquito .h4,
.bg-blue-calculadoradefiniquito h5, .bg-blue-calculadoradefiniquito .h5,
.bg-blue-calculadoradefiniquito h6, .bg-blue-calculadoradefiniquito .h6,
.bg-blue-calculadoradefiniquito p, .bg-blue-calculadoradefiniquito .p,
.bg-blue-calculadoradefiniquito-gradient h1, .bg-blue-calculadoradefiniquito-gradient .h1,
.bg-blue-calculadoradefiniquito-gradient h2, .bg-blue-calculadoradefiniquito-gradient .h2,
.bg-blue-calculadoradefiniquito-gradient h3, .bg-blue-calculadoradefiniquito-gradient .h3,
.bg-blue-calculadoradefiniquito-gradient h4, .bg-blue-calculadoradefiniquito-gradient .h4,
.bg-blue-calculadoradefiniquito-gradient p, .bg-blue-calculadoradefiniquito-gradient .p {
  color: var(--color-white)
}

.pre-footer h2 {font-weight: 400; max-width: 280px; margin-right: auto; margin-left: auto; line-height: 1.3;} 
.pre-footer h2 strong { font-weight: 700; }
.carita:after {content: ""; background-image: url(https://3790458.fs1.hubspotusercontent-na1.net/hubfs/3790458/2023/calculadoradefiniquito-ui-kit/Modulos-Genericos/Prefooter/carita-eslogan-trazada.svg);
  position: relative; display: inline-block; background-repeat: no-repeat; background-size: contain;
}
.pre-footer .carita:after { width: 46px; height: 46px; margin-bottom: -11px;}
footer .carita:after {width: 23px; height: 23px; margin-bottom: -3px;}

@media only screen and (min-width: 767px) {
  
  .pre-footer h2 { max-width: 540px;}
  .pre-footer .carita:after { width: 50px; height: 50px;margin-bottom: -13px;}
  
  .pst-md-relative { position: relative; }
  .pst-md-absolute { position: absolute; }
  
  .none-md-wrap { flex-wrap: nowrap !important; }
  
  .txt-md-center { text-align: center; }
  .txt-md-left{ text-align: left; }
  .txt-md-right { text-align: right; }
  
  .wi-md-auto { width: auto !important; }
  .wi-md-100 { width: 100% !important; }
  .wi-md-75 { width: 75% !important; }
  .hi-md-100 { height: 100% !important; }
  .hi-md-auto { height: auto !important; }
  
  .shadow-box-fluid-md { box-shadow: var(--box-shadow-2); }
  .shadow-md-1 { box-shadow: var(--box-shadow-1);  }
  .shadow-md-2 { box-shadow: var(--box-shadow-2); }
  .shadow-md-3 { box-shadow: var(--box-shadow-3); }
  
  .bg-light-modules-md { background: var(--wb-bg-modules); }
  .bg-white--md { background: var(--color-white); }
  
  .rounded-md-16 { border-radius: var(--radius-16); }
  .rounded-md-49 { border-radius: 49px; }
  
  .gap-md--0 { gap: 0 !important; }
  .gap-md--8 { gap: .5rem !important; }
	.gap-md--12 { gap: 0.75rem !important; }
  .gap-md--16 { gap: 1rem !important; }
  .gap-md--24 { gap: 1.5rem !important; }
  .gap-md--32 { gap: 2rem !important; }
  .gap-md--56 { gap: 3.5rem !important; }
  .none-md-wrap { flex-wrap: nowrap !important; }
  .ds-md-block {display:block;}
  .ds-md-none { display: none !important; }
  .ds-md-flex {display: flex !important; flex-wrap: wrap; gap: .5rem; }
  .flex-dir-md-row { flex-direction: row; }
  .flex-dir-md-column { flex-direction: column !important; }
  .jc-md-center { justify-content: center; }
  .jc-md-start { justify-content: flex-start; }
  .jc-md-end { justify-content: flex-end; }
  .jc-md-between { justify-content: space-between; }
  .jc-md-around{ justify-content: space-around; }
  .jc-self-md-center { justify-self: center; }
  .ai-md-start { align-items: flex-start; }
  .ai-md-end { align-items: flex-end; }
  .ai-md-center { align-items: center; }
  .ai-md-stretch { align-items: stretch; }
  .ai-md-baseline {align-items: baseline;}
  .ai-self-md-center { align-self: center !important; }
  .ai-self-md-start { align-self: start; }
  .ai-self-md-end { align-self: end; }
  .order-md-1 { order: 1; }
  .order-md-2 { order: 2; }
  .order-md-3 { order: 3; }
  .order-md-4 { order: 4; }
  .order-md-5 { order: 5; }
  .pi-md-center { place-items: center; }
  
  .v-mobile { display: none; }
  .v-mobile.v-tablet { display: block; }
  .v-tablet { display: block !important; }
  .v-tablet.v-desktop { display: block !important; }
  .v-desktop { display: none; }
  .bg-light-modules-mobile {background: white;}
}

@media only screen and (min-width: 1020px) {
  
  .pre-footer h2 { max-width: 570px;}
  .pre-footer .carita:after {width: 60px; height: 60px; margin-bottom: -15px;}
  
  
  
  .none-lg-wrap { flex-wrap: nowrap !important; }
  
  .pst-lg-relative { position: relative; }
  .pst-lg-absolute { position: absolute; }
  
  .txt-lg-center { text-align: center; }
  .txt-lg-left{ text-align: left; }
  .txt-lg-right { text-align: right; }
  
  .wi-lg-100 { width: 100% !important; }
  .wi-lg-auto { width: auto !important; }
  .hi-lg-100 { height: 100% !important; }
  .hi-lg-auto { height: auto !important; }
  
  .bg-light-modules-lg { background: var(--wb-bg-modules);}
  
  .rounded-lg-16 { border-radius: var(--radius-16); }
  .shadow-lg-1 { box-shadow: var(--box-shadow-1);  }
  .shadow-lg-2 { box-shadow: var(--box-shadow-2); }
  .shadow-lg-3 { box-shadow: var(--box-shadow-3); }
  
  .gap-lg--0 { gap: 0 !important; }
  .gap-lg--8 { gap: .5rem !important; }
	.gap-lg--12 { gap: 0.75rem !important; }
  .gap-lg--24 { gap: 1.5rem !important; }
  .gap-lg--32 { gap: 2rem !important; }
  .gap-lg--56 { gap: 3.5rem !important; }
  .none-lg-wrap { flex-wrap: nowrap !important; }
  .ds-lg-block {display:block;}
  .ds-lg-none { display: none !important; }
  .ds-lg-flex { display: flex !important; flex-wrap: wrap; gap: 0.8rem;}
  .flex-dir-lg-row { flex-direction: row; }
  .flex-dir-lg-column { flex-direction: column !important; }
  .jc-lg-center { justify-content: center; }
  .jc-lg-start { justify-content: flex-start; }
  .jc-lg-end { justify-content: flex-end;}
  .jc-lg-between { justify-content: space-between; }
  .jc-lg-around{ justify-content: space-around; }
  .jc-self-lg-center { justify-self: center; }
  .ai-lg-start { align-items: flex-start; }
  .ai-lg-end {  align-items: flex-end; }
  .ai-lg-center { align-items: center; }
  .ai-lg-stretch { align-items: stretch; }
  .ai-lg-baseline {align-items: baseline;}
  .ai-self-lg-center { align-self: center !important; }
  .ai-self-lg-start { align-self: start; }
  .ai-self-lg-end { align-self: end; }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
  .order-lg-3 { order: 3; }
  .order-lg-4 { order: 4; }
  .order-lg-5 { order: 5; }
  .pi-lg-center { place-items: center; }

  .v-mobile { display: none; }
  .v-mobile.v-tablet { display: none !important; }
  .v-tablet { display: block; }
  .v-desktop { display: block; }
  .bg-light-modules-mobile {background: white;}
}
 
 
 
 

/* BUTTON COUNTRIES AND SUBMENU */
.calculadoradefiniquito-countries--mobile { 
  margin-right: 30px;
}
@media only screen and (min-width: 1115px) {
  .calculadoradefiniquito-countries--mobile { display: none; }
}

.calculadoradefiniquito-countries--desktop { display: none; }
@media only screen and (min-width: 1115px) {
  .calculadoradefiniquito-countries--desktop { display: inline-block; }
}

.calculadoradefiniquito-countries {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.calculadoradefiniquito-countries svg {
  transition: transform .4s ease;
}
.calculadoradefiniquito-countries.show svg {
  transform: rotate(180deg);
}

.calculadoradefiniquito-countries__submenu {
  position: absolute;
  top: 40px;
  right: 0;
  width: 180px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 14px 0px rgba(43, 60, 106, 0.09);
  /* padding: 4px; */
  z-index: 5;
  transition: height .5s;
  height: 0;
  overflow: hidden;
}
.calculadoradefiniquito-countries.show .calculadoradefiniquito-countries__submenu {
  height: 205px;
}

@media only screen and (min-width: 767px) {
  .calculadoradefiniquito-countries__submenu {
    width: 200px;
  }
}

.calculadoradefiniquito-countries__wrap {
  border-radius: 16px;
  padding: 4px;
}

.calculadoradefiniquito-countries__link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.calculadoradefiniquito-countries__link span {
  color: var(--color-blue-calculadoradefiniquito);
  font-size: 1.125rem;
  font-family: var(--font-family-title);
}

.calculadoradefiniquito-countries__item {
  border-radius: 14px;
  text-align: initial;
  padding: 8px 12px;
}
.calculadoradefiniquito-countries__item:hover {
  background-color: var(--wb-bg-modules);
}

.calculadoradefiniquito-countries__submenu .calculadoradefiniquito-flag__xs {
  width: 20px;
  height: 20px;
}
 

.brand__logo {
  width: 70%;
}
.brand__logo p {
  margin-top: 1rem;
  font-family: var(--font-family-title);
  font-size: 1.5rem;
}
@media only screen and (min-width: 767px) {
  .brand__logo {
    width: auto;
  }
  .brand__logo p {
    margin-top: 0;
    padding-left: .25rem;
  }
}

.brand__rrss {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand__rrss a {
  display: inline-block;
}
.brand__rrss a .fill-rrss {
  transition: fill .3s ease-in;
}
.brand__rrss a:hover .fill-rrss {
  fill: var(--color-orange-calculadoradefiniquito);
}