@import url(https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&amp;family=Source+Sans+Pro:wght@300;400;700;900&amp;display=swap);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

:root {
  --color-blue-buk: #2f4daa;
  --color-white: #fff;
  --color-light-blue: #d9e3fc;
  --wb-bg-modules: #f6f8fe;
  --radius-btn: 69px;
  --bg-cta-2-hover: linear-gradient(180deg, #2f4daa 0%, #2e4176 100%);
}

h2 {
  font-size: 1.8rem;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.wrapper_module {
  max-width: 1200px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
}

.boxer {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

@media only screen and (min-width: 767px) {
  .buk-grid,
  .buk-md-grid {
    display: grid;
    gap: 1rem 0.5rem;
    grid-auto-flow: row;
    grid-template-columns: repeat(12, 1fr);
  }
}

@media only screen and (min-width: 1020px) {
  .buk-grid,
  .buk-lg-grid {
    display: grid;
    gap: 1rem;
    grid-auto-flow: row;
    grid-template-columns: repeat(12, 1fr);
  }
}

@media only screen and (min-width: 767px) {
  .buk-col,
  .buk-col-md-12 {
    grid-column: span 12 / span 12;
  }
}

@media only screen and (min-width: 767px) {
  .buk-col-md-10 {
    grid-column: span 10 / span 10;
  }
}

@media only screen and (min-width: 767px) {
  .buk-col-st-md-2 {
    grid-column-start: 2;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col,
  .buk-col-lg-12 {
    grid-column: span 12 / span 12;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-lg-10 {
    grid-column: span 10 / span 10;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-st-lg-2 {
    grid-column-start: 2;
  }
}

h1,
h2,
h3,
h5 {
  color: var(--color-blue-buk);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

/* p {
  font-size: 1.125rem;
  line-height: 1.3;
} */

p {
  font-size: 1rem;
  line-height: 1.5;
}

.txt-center {
  text-align: center;
}

.buk-mb-4 {
  margin-bottom: 2rem;
}

.buk-mb-6 {
  margin-bottom: 3rem;
}

.none-wrap {
  flex-wrap: nowrap !important;
}

.ds-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jc-center {
  justify-content: center;
}

.ai-center {
  align-items: center;
}

.gap--8 {
  gap: 0.5rem !important;
}

@media only screen and (min-width: 767px) {
  .gap-md--8 {
    gap: 0.5rem !important;
  }
}

@media only screen and (min-width: 1020px) {
  .gap-lg--8 {
    gap: 0.5rem !important;
  }
}

.buk-mt-1 {
  margin-top: 0.5rem;
}

@media only screen and (min-width: 1020px) {
  .buk-col-lg-8 {
    grid-column: span 8 / span 8;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-st-lg-3 {
    grid-column-start: 3;
  }
}

@media only screen and (min-width: 767px) {
  .txt-md-center {
    text-align: center;
  }
}

.buk-pb-3 {
  padding-bottom: 1.5rem;
}

@media only screen and (min-width: 1020px) {
  .buk-px-lg-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.radio-control__wrapper {
  background: #fff;
  border: 2px solid var(--color-blue-buk);
  border-radius: 57.5px;
  display: flex;
  height: auto;
  padding: 0.5rem;
  width: max-content;
}

.choice-document .radio-control label {
  background-color: #fff;
  border-radius: 86.25px;
  color: var(--color-blue-buk);
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 767px) {
  .choice-document .radio-control label {
    font-size: 1.25rem;
    padding: 0.813rem 2.313rem;
  }
}

.choice-document .radio-control label.active {
  background-color: var(--color-blue-buk);
  color: #fff;
}

.calc-values__fields input {
  border: 2px solid #e0e0e0;
  border-radius: 21px;
  color: #333;
  padding: 0.375rem 0.75rem;
}

@media only screen and (min-width: 767px) {
  .calc-values__fields input {
    font-size: 1.125rem;
    padding: 0.375rem 1.25rem;
    text-align: end;
  }
}

.choice-document .radio-control input[type="radio"] {
  appearance: none;
  border: none;
  height: 0;
  margin-left: 0;
  padding: 0;
  width: 0;
}

.calc-values {
  border-radius: 16px;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.15);
}

.bg-white {
  background: var(--color-white) !important;
}

.buk-mt-3 {
  margin-top: 1.5rem;
}

.buk-py-3 {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.calc-values__title {
  background: var(--color-light-blue);
  border-radius: 16px;
  color: var(--color-blue-buk) !important;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

.buk-mb-3 {
  margin-bottom: 1.5rem;
}

.buk-px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.calc-values__title p {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

@media only screen and (min-width: 767px) {
  .buk-col-md-6 {
    grid-column: span 6 / span 6;
  }
}

.buk-mb-2 {
  margin-bottom: 1rem;
}

.tooltip {
  cursor: pointer;
  display: inline-block;
  margin-left: 8px;
  position: relative;
}

.tooltip img {
  width: 20px;
  height: 20px;
}

.tooltip .tooltiptext {
  bottom: 150%;
}

.tooltip .tooltip-parche1,
.tooltip .tooltiptext {
  background-color: var(--wb-bg-modules);
  border-radius: 16px;
  box-shadow: 0 0 10px 4px rgba(43, 60, 106, 0.12);
  color: var(--wb-font-color-1);
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  max-width: 240px;
  min-width: 220px;
  opacity: 0;
  padding: 16px;
  position: absolute;
  text-align: left;
  transform: translateX(-68%);
  transition: opacity 0.5s;
  visibility: hidden;
  z-index: 100000;
}

.tooltip .tooltip-parche1:after,
.tooltip .tooltip-parche2:after,
.tooltip .tooltip-parche3:after,
.tooltip .tooltiptext:after {
  content: " ";
  left: 50%;
  position: absolute;
  top: 100%;
}

.tooltip-trigger:hover + .tooltip-parche1,
.tooltip-trigger:hover + .tooltip-parche2,
.tooltip-trigger:hover + .tooltip-parche3,
.tooltip-trigger:hover + .tooltiptext {
  visibility: visible;
}

.tooltip .tooltip-parche1:after,
.tooltip .tooltip-parche2:after,
.tooltip .tooltip-parche3:after,
.tooltip .tooltiptext:after {
  content: " ";
  left: 50%;
  position: absolute;
  top: 100%;
}

.tooltip:hover .tooltip-parche1,
.tooltip:hover .tooltip-parche2,
.tooltip:hover .tooltip-parche3,
.tooltip:hover .tooltiptext {
  opacity: 1;
}

.pst-relative {
  position: relative;
}

.calc-values input,
.calc-values select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  width: 100%;
}

.date-group input[type="date"],
.select-group .select-control {
  appearance: none;
  background: #fff;
  border: 2px solid hsla(0, 0%, 44%, 0.22);
  border-radius: 21px;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  width: 100%;
}

@media only screen and (min-width: 767px) {
  .date-group input[type="date"] {
    font-size: 1.063rem;
    padding: 0.375rem 1.25rem;
  }
}

.buk-my-3 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.date-group input[type="date"]:focus,
.date-group input[type="date"]:hover {
  border-color: var(--color-blue-buk);
  outline: 0;
}

.calc-values__fields input[type="number"]:not(:read-only),
.calc-values__fields input[type="text"]:not(:read-only) {
  cursor: pointer;
}

.calc-values__fields input[type="number"]:hover:not(:read-only),
.calc-values__fields input[type="text"]:hover:not(:read-only) {
  border-color: var(--color-blue-buk);
}

@media only screen and (min-width: 1020px) {
  .calc-values__title {
    border-radius: 67px;
  }
}

.d-flex {
  display: flex;
}

@media only screen and (min-width: 1020px) {
  .buk-px-lg-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-lg-4 {
    grid-column: span 4 / span 4;
  }
}

.buk-mt-2 {
  margin-top: 1rem;
}

.calc-values__fields [class*="buk-col"] {
  padding-bottom: 0;
  padding-top: 0;
}

.calc-values__fields input[readonly] {
  background: #f6f8fe;
  border: 2px solid #f6f8fe;
  cursor: auto;
}

.select-group .select-control:focus,
.select-group .select-control:hover {
  border-color: var(--color-blue-buk);
  border-radius: 16px;
  outline: 0;
}

.v-mobile {
  display: block;
}

@media only screen and (min-width: 767px) {
  .v-mobile {
    display: none;
  }
}

@media only screen and (min-width: 1020px) {
  .v-mobile {
    display: none;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-lg-6 {
    grid-column: span 6 / span 6;
  }
}

@media only screen and (min-width: 767px) {
  .buk-col-md-6 {
    grid-column: span 6 / span 6;
  }
}

@media only screen and (min-width: 767px) {
  .buk-col-md-3 {
    grid-column: span 3 / span 3;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-lg-3 {
    grid-column: span 3 / span 3;
  }
}

.buk-mx-1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.calc-values label {
  font-size: inherit;
}

@media only screen and (min-width: 767px) {
  .calc-values label {
    font-size: 1.125rem;
  }
}

@media only screen and (min-width: 767px) {
  .calc-values__fields input {
    font-size: 1.125rem;
    padding: 0.375rem 1.25rem;
    text-align: end;
  }
}

.calc-values input[type="radio"] {
  cursor: pointer;
  height: 17px;
  margin-left: 1rem;
  vertical-align: middle;
  width: auto;
  width: 17px;
}

.buk-mt-4 {
  margin-top: 2rem;
}

.btn {
  border-radius: var(--radius-btn);
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  padding: 0.688rem 1.875rem;
  text-align: center;
  transition: 0.3s;
  width: auto;
}

.btn--2 {
  font-weight: 700 !important;
  background: transparent;
  border: 2px solid var(--color-blue-buk);
  padding: 0.563rem 1.75rem !important;
  color: var(--color-blue-buk);
  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);
}

h3 {
  font-size: 1.5rem;
}

@media only screen and (min-width: 1020px) {
  h3 {
    font-size: 1.8rem;
  }
}

.buk-mt-7 {
  margin-top: 3.5rem;
}

.calc-values__title-details {
  background-color: var(--color-light-blue);
  border-radius: 16px 16px 0 0;
}

.buk-py-2 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.buk-px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.calc-values__title-details h3 {
  font-size: 1.2rem;
}

.calc-values--dropdown button {
  background: var(--color-light-blue);
  border: none;
  border-radius: 16px;
  color: var(--color-blue-buk);
  cursor: pointer;
  font-family: var(--font-family-title);
  font-size: 1.2rem;
  font-weight: 700;
  outline: none;
  padding: 1rem 1.5rem;
  position: relative;
  text-align: left;
  width: 100%;
}

@media only screen and (min-width: 1020px) {
  .calc-values--dropdown button {
    font-size: 1.2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.calc-values--dropdown button:after {
  background: url(https://www.buk.cl/hubfs/2023/Calculadoras/flecha.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  height: 25px;
  position: absolute;
  right: 3%;
  transform: rotate(180deg);
  transition: transform 0.5s;
  width: 25px;
}

@media only screen and (min-width: 1020px) {
  .calc-values--dropdown button:after {
    height: 32px;
  }
}

.calc-values--dropdown button.show:after {
  transform: rotate(0deg);
}

.calc-values__fields--dropdown {
  border-radius: 0 0 16px 16px;
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}

@media only screen and (min-width: 1020px) {
  .buk-py-lg-2 {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-px-lg-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media only screen and (min-width: 767px) {
  .calc-values--dropdown .buk-grid {
    row-gap: 1.5rem;
  }
}

.tooltip .tooltip-parche2 {
  bottom: 25px;
  transform: translateX(-73%);
}

.tooltip .tooltip-parche2,
.tooltip .tooltip-parche3 {
  background-color: var(--wb-bg-modules);
  border-radius: 16px;
  box-shadow: 0 0 10px 4px rgba(43, 60, 106, 0.12);
  color: var(--wb-font-color-1);
  font-family: var(--font-family-body);
  font-size: 14px;
  max-width: 250px;
  min-width: 235px;
  opacity: 0;
  padding: 16px;
  position: absolute;
  text-align: left;
  transition: opacity 0.5s;
  visibility: hidden;
  z-index: 100000;
}

.detail-title {
  color: var(--color-blue-buk);
  font-size: 1.2rem;
  font-weight: 700;
}

.calc-values__rst-total {
  border-radius: 16px;
}

.bg-blue-buk {
  background: var(--color-blue-buk);
}

@media only screen and (min-width: 767px) {
  .buk-col-md-8 {
    grid-column: span 8 / span 8;
  }
}

@media only screen and (min-width: 1020px) {
  .buk-col-st-lg-3 {
    grid-column-start: 3;
  }
}

.bg-blue-buk h3 {
  color: var(--color-white);
}

.calc-values__rst-total .input-total {
  background: #fff;
  border-radius: 5px;
  color: var(--color-blue-buk);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
}

@media only screen and (min-width: 767px) {
  .calc-values__rst-total .input-total {
    font-size: 2rem;
    padding: 0.375rem 1.25rem;
  }
}

.bg-blue-buk p {
  color: var(--color-white);
}

@media (max-width: 767px) {
  .buk-col,
  .buk-col-4 {
    grid-column: span 4 / span 4;
  }
  [class*="buk-col"] {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    position: relative;
  }
  .buk-grid {
    display: grid;
    gap: 1rem .5rem;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
}
}

@media only screen and (min-width: 1020px) {
  .buk-col-ed-lg-13 {
      grid-column-end: 13;
  }
}

.buk-modal__body,
.buk-modal__body p,
.fz-16 {
  font-size: 1rem;
}

.jc-between {
  justify-content: space-between;
}

.buk-modal {
  animation: 0.35s linear fadeOverlayModal;
  background: rgb(0 0 0 / 0.75);
  bottom: 0;
  display: none;
  left: 0;
  outline: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.buk-modal.buk-modal--show {
  display: block;
}

.buk-modal__dialog {
  align-items: center;
  display: flex;
  margin: 1.25rem auto;
  max-width: 550px;
  min-height: calc(100% - 3.5rem);
  position: relative;
  width: auto;
}

.buk-modal__content {
  animation: 0.4s linear fadeDownDialog;
  background-color: var(--wb-bg-modules);
  border-radius: 9px;
  padding: 1rem;
  width: 100%;
}

.buk-modal__header {
  align-items: center;
  border-bottom: 2px solid #70707038;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
}

.buk-pb-2 {
  padding-bottom: 1rem;
}

.buk-modal__header button {
  appearance: none;
  border: 2px solid #2f48a7;
  background-color: #fff0;
  border-radius: 4px;
  cursor: pointer;
  padding: 0.3rem;
}

.buk-mt-2 {
  margin-top: 1rem;
}

.buk-my-1 {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.buk-modal__body ul li {
  font-weight: 700;
  list-style: none;
}

.buk-modal__body ul li:not(:last-of-type) {
  padding-bottom: 0;
}

@keyframes fadeOverlayModal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeDownDialog {
  0% {
    opacity: 0;
    transform: translateY(-55px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}