a.btn {
  line-height: 48px;
}
label {
  font-weight: normal;
}
#resultsPanelWrapper {
  padding-bottom: 120px;
}
.simulador-ahorro .buttons {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  gap: 10px;
  margin: 0 auto;
  margin-bottom: 20px;
  min-height: 108px;
}
.simulador-ahorro .buttons .button {
  flex: 1 0 45%;
  background-color: #efefef;
  color: #004ace;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
  -webkit-transition: all 250ms ease-in;
  -moz-transition: all 250ms ease-in;
  -ms-transition: all 250ms ease-in;
  -o-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
  height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.simulador-ahorro .buttons .button img {
  filter: invert(22%) sepia(51%) saturate(1614%) hue-rotate(178deg) brightness(94%) contrast(99%);
  max-width: 100px;
  display: block;
  max-height: 64px;
}
.simulador-ahorro .buttons .button.selected {
  background-color: #004ace;
  color: #fff;
  -webkit-transition: all 250ms ease-in;
  -moz-transition: all 250ms ease-in;
  -ms-transition: all 250ms ease-in;
  -o-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.simulador-ahorro .buttons .button.selected img {
  filter: invert(1);
}
.simulador-ahorro .forms .panel {
  max-width: 100%;
  background-color: #fff;
  padding: 0;
  width: 100%;
  display: none;
  box-sizing: border-box;
  box-shadow: none;
}
.simulador-ahorro .forms .panel .title {
  text-align: center;
  color: #004ace;
}
.simulador-ahorro .generic-form .form-item.has-error .smk-error-msg {
  color: red;
  font-size: 12px;
  display: block;
  position: absolute;
  top: 64px;
}
.simulador-ahorro .generic-form .form-row .form-column .form-item .time-control {
  width: 50%;
}
.simulador-ahorro .generic-form .form-row.wide {
  display: block;
}
.simulador-ahorro .generic-form .form-row.wide .form-column {
  display: block;
}
.simulador-ahorro .generic-form .form-row.wide .form-column .form-item {
  width: 100%;
  padding-top: 0;
}
.simulador-ahorro .generic-form .form-row.wide .form-column .form-item select {
  max-width: initial;
}
.simulador-ahorro .generic-form-buttons .primary-button {
  line-height: normal;
  margin: 5px;
}
.simulador-ahorro .generic-form-buttons .secondary-button {
  line-height: normal;
  margin: 5px;
}
.simulador-ahorro #resultsPanel .result {
  border: 1px solid #004ace;
  padding: 20px;
  border-radius: 10px;
}
.simulador-ahorro #resultsPanel .result .header {
  max-width: 750px;
  margin: 0 auto;
}
@media all and (max-width: 640px) {
  .simulador-ahorro #resultsPanel .result .header {
    font-size: 14px;
  }
}
.simulador-ahorro #resultsPanel .result .header .row {
  display: flex;
  padding: 5px;
  flex-flow: row wrap;
}
.simulador-ahorro #resultsPanel .result .header .row .column {
  width: 50%;
  text-align: right;
}
.simulador-ahorro #resultsPanel .result .header .row .column span {
  background-color: rgba(0, 99, 78, 0.25);
  font-weight: bold;
  padding: 5px;
  min-width: 150px;
  display: inline-block;
}
@media all and (max-width: 640px) {
  .simulador-ahorro #resultsPanel .result .header .row .column {
    width: 100%;
  }
  .simulador-ahorro #resultsPanel .result .header .row .column span {
    min-width: 100px;
  }
}
@media all and (max-width: 640px) {
  .simulador-ahorro #resultsPanel .result .header .row {
    padding: 0;
  }
  .simulador-ahorro #resultsPanel .result .header .row .column {
    padding: 5px;
  }
}
.simulador-ahorro #resultsPanel .result .data .title {
  color: #004ace;
  font-size: 24px;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}
@media all and (max-width: 640px) {
  .simulador-ahorro #resultsPanel .result .data .table {
    width: calc(100vw - 100px);
    overflow: scroll;
  }
}
.simulador-ahorro #resultsPanel .result .data .table table {
  margin: 0 auto;
  width: 100%;
}
.simulador-ahorro #resultsPanel .result .data .table table thead tr th {
  background-color: #004ace;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  text-align: center;
}
.simulador-ahorro #resultsPanel .result .data .table table tbody tr td {
  text-align: center;
  padding: 8px 10px;
}
.simulador-ahorro #resultsPanel .result .data .table table tbody tr:nth-child(odd) td {
  background-color: #dadada;
}
.simulador-ahorro #resultsPanel .result .data .pager {
  padding: 24px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.simulador-ahorro #resultsPanel .result .data .pager .page {
  min-width: 20px;
  padding: 10px;
  background-color: #dadada;
  text-align: center;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.simulador-ahorro #resultsPanel .result .data .pager .page.selected {
  background-color: #004ace;
  color: white;
}
.simulador-ahorro #resultsPanel .result .graph .title {
  color: #004ace;
  font-size: 24px;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}
.simulador-ahorro #resultsPanel .result .graph .container {
  max-width: 100%;
  margin: 0 auto;
}

/************************************************************************/
/* Toggle Buttons
/************************************************************************/
.toggle-group {
  position: relative;
}
.toggle-group .can-toggle {
  position: absolute;
  bottom: -3px;
  right: 125px;
}
.can-toggle {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.can-toggle *,
.can-toggle *:before,
.can-toggle *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.can-toggle input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.can-toggle input[type="checkbox"][disabled]~label {
  pointer-events: none;
}

.can-toggle input[type="checkbox"][disabled]~label .can-toggle__switch {
  opacity: 0.4;
}

.can-toggle input[type="checkbox"]:checked~label .can-toggle__switch:before {
  content: attr(data-unchecked);
  left: 0;
}

.can-toggle input[type="checkbox"]:checked~label .can-toggle__switch:after {
  content: attr(data-checked);
}

.can-toggle label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.can-toggle label .can-toggle__label-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 32px;
}

.can-toggle label .can-toggle__switch {
  position: relative;
}

.can-toggle label .can-toggle__switch:before {
  content: attr(data-checked);
  position: absolute;
  top: 0;
  text-align: center;
}

.can-toggle label .can-toggle__switch:after {
  content: attr(data-unchecked);
  position: absolute;
  z-index: 5;
  text-align: center;
  background: white;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.can-toggle input[type="checkbox"][disabled]~label {
  color: rgba(119, 119, 119, 0.5);
}

.can-toggle input[type="checkbox"]:focus~label .can-toggle__switch,
.can-toggle input[type="checkbox"]:hover~label .can-toggle__switch {
  background-color: #777;
}

.can-toggle input[type="checkbox"]:hover~label {
  color: #6a6a6a;
}

.can-toggle input[type="checkbox"]:checked:focus~label .can-toggle__switch,
.can-toggle input[type="checkbox"]:checked:hover~label .can-toggle__switch {
  background-color: #5fc054;
}

.can-toggle label .can-toggle__label-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.can-toggle label .can-toggle__switch {
  -webkit-transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
  background: #848484;
}

.can-toggle label .can-toggle__switch:before {
  color: #efefef;
}

.can-toggle label .can-toggle__switch:after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  color: #777;
}


.can-toggle input[type="checkbox"]:checked~label .can-toggle__switch:after {
  -webkit-transform: translate3d(65px, 0, 0);
  transform: translate3d(65px, 0, 0);
}

.can-toggle label {
  font-size: 14px;
}

.can-toggle label .can-toggle__switch {
  height: 36px;
  -webkit-flex: 0 0 134px;
  -ms-flex: 0 0 134px;
  flex: 0 0 134px;
  border-radius: 4px;
}

.can-toggle label .can-toggle__switch:before {
  left: 67px;
  font-size: 12px;
  line-height: 36px;
  width: 67px;
  padding: 0 12px;
}

.can-toggle label .can-toggle__switch:after {
  top: 2px;
  left: 2px;
  border-radius: 2px;
  width: 65px;
  line-height: 32px;
  font-size: 12px;
}


.can-toggle.can-toggle--size-small input[type="checkbox"]:checked~label .can-toggle__switch:after {
  -webkit-transform: translate3d(44px, 0, 0);
  transform: translate3d(44px, 0, 0);
}


.can-toggle.can-toggle--size-small label {
  font-size: 13px;
}

.can-toggle.can-toggle--size-small label .can-toggle__switch {
  height: 28px;
  -webkit-flex: 0 0 90px;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  border-radius: 2px;
}

.can-toggle.can-toggle--size-small label .can-toggle__switch:before {
  left: 45px;
  font-size: 10px;
  line-height: 28px;
  width: 45px;
  padding: 0 12px;
}

.can-toggle.can-toggle--size-small label .can-toggle__switch:after {
  top: 1px;
  left: 1px;
  border-radius: 1px;
  width: 44px;
  line-height: 26px;
  font-size: 10px;
}

.can-toggle.can-toggle--size-large input[type="checkbox"]:checked~label .can-toggle__switch:after {
  -webkit-transform: translate3d(78px, 0, 0);
  transform: translate3d(78px, 0, 0);
}

.can-toggle.can-toggle--size-large label {
  font-size: 14px;
}

.can-toggle.can-toggle--size-large label .can-toggle__switch {
  height: 50px;
  -webkit-flex: 0 0 160px;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  border-radius: 4px;
}
.can-toggle.can-toggle--size-large label .can-toggle__switch:before {
  left: 80px;
  font-size: 14px;
  line-height: 50px;
  width: 80px;
  padding: 0 12px;
}
.can-toggle.can-toggle--size-large label .can-toggle__switch:after {
  top: 2px;
  left: 2px;
  border-radius: 2px;
  width: 78px;
  line-height: 46px;
  font-size: 14px;
}
.can-toggle.toggle-bl input[type="checkbox"][disabled]~label {
  color: rgba(68, 68, 68, 0.5);
}
.can-toggle.toggle-bl input[type="checkbox"]:focus~label .can-toggle__switch,
.can-toggle.toggle-bl input[type="checkbox"]:hover~label .can-toggle__switch {
  background-color: #efefef;
}
.can-toggle.toggle-bl input[type="checkbox"]:hover~label {
  color: #373737;
}
.can-toggle.toggle-bl input[type="checkbox"]:checked~label:hover {
  color: #62b125;
}
.can-toggle.toggle-bl label .can-toggle__label-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.can-toggle.toggle-bl label .can-toggle__switch {
  -webkit-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  background: #efefef;
}
.can-toggle.toggle-bl label .can-toggle__switch:before {
  color: #444;
}
.can-toggle.toggle-bl label .can-toggle__switch:after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  color: #fff;
  background-color: #004ace;
}
.can-toggle.toggle-bl input[type="checkbox"]:checked~label .can-toggle__switch:after {
  -webkit-transform: translate3d(58px, 0, 0);
  transform: translate3d(58px, 0, 0);
}
.can-toggle.toggle-bl label {
  font-size: 12px;
  font-weight: 500;
}
.can-toggle.toggle-bl label .can-toggle__switch {
  height: 38px;
  flex: 0 0 122px;
  border-radius: 4px;
}
.can-toggle.toggle-bl label .can-toggle__switch:before {
  left: 60px;
  font-size: 12px;
  line-height: 32px;
  width: 60px;
  padding: 0 10px;
}
.can-toggle.toggle-bl label .can-toggle__switch:after {
  top: 2px;
  left: 2px;
  border-radius: 4px;
  width: 58px;
  line-height: 32px;
  font-size: 12px;
}
/************************************************************************/
/* End Toggle Buttons
/************************************************************************/
.generic-form-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#monthly {
  display: block;
}
#amount {
  display: none;
}
#resultsPanelWrapper{
  display: none;
}
.result {
  display: flex;
  flex-direction: column;
}
.result .header {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  margin-bottom: 30px;
}
.data {
  display: none;
}
.title {
  color: rgb(52, 52, 52);
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 10px;
  padding: 0 0 3px;
  text-align: left;
}
.result .header .column {
  color: #45484a;
  font-weight: 600;
  font-size: 14px;
}
.result .header .column span {
  color: #45484a;
  font-weight: 400;
}
.generic-form-buttons.mt-3 {
  margin-top: 30px;
}
.row.middle-row {
  padding: 8px 15px;
  .column {
    font-size: 1.15rem;
  }
}
.row.accent-row {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
}
.row.accent-row-blue {
  margin-top: 15px;
	padding: 20px;
	background: #a8d9fd46;
	border-radius: 10px;
    display: flex;
    .col-6 {
      display: flex;
      gap: 5px;
      flex-direction: column;
      .column {
        font-size: 1.25rem;
        h3 {
          font-size: 1.4286rem;
        }
        color: #323232;
      }
    }
}
.wrapper-form-input {
  width: 100%;
}
.wrapper-form-input .simulador-ahorro {
  width: 75%;
  margin: 0 auto;
}
.wrapper-form-input h3[class*="frm_pos_"] {
  color: #4c505d;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 15px 0 3px;
}
.wrapper-form-input .form-field > h4 {
  font-size: 19.2px;
  color: rgb(47, 53, 77);
  font-weight: 500;
  padding-top: 20px;
  border-top: 2px solid #e6e6e6;
  margin-bottom: 20px;
}