.dt_api {
  --dt-primary: #4194af;
  --dt-secondary: #c6c9c9;
  --dt-cta-color: #c4b049;
  --dt-text-color: #1b4363;
  --dt-white: #ffffff;
  --dt-transparent-color: #c5b9ac85;
  --dt-tile-bg-color: var(--dt-white);
  --dt-font-family: "Montserrat", sans-serif;
  --dt-font-weight-normal: 400;
  --dt-font-weight-bold: 700;
  --dt-inset-shadow-color: rgba(135, 133, 133, 0.4);
  --dt-tile-radius: 10px;
  --dt-chart-bar-radius: 5px;
  --dt-chart-anim-duration: 0.5s;
  --dt-label-fi-color:	var(--dt-primary);
  --dt-label-mkt-color:	var(--dt-secondary);
  --dt-bar-label-fi-color:	var(--dt-white);
  --dt-bar-label-mkt-color:	var(--dt-white);
}

/* prettier-ignore */
/* prettier-ignore-end */
.loading-overlay {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: white;
}

.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

@media (prefers-reduced-motion: no-preference) {
  @-webkit-keyframes dt-bounce {
    0%, 100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes dt-bounce {
    0%, 100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  .bounce1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--dt-primary);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: dt-bounce 2s infinite ease-in-out;
            animation: dt-bounce 2s infinite ease-in-out;
  }
  .bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--dt-primary);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: dt-bounce 2s infinite ease-in-out;
            animation: dt-bounce 2s infinite ease-in-out;
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
  }
}
.dt_api {
  font-family: var(--dt-font-family);
  font-weight: 300;
  font-style: normal;
  color: var(--dt-text-color);
  background-color: #f2f2f2;
  /* prettier-ignore */
}
.dt_api .footer_row,
.dt_api .sec_dt_credit a,
.dt_api .footnotes p {
  color: var(--dt-primary);
}
.dt_api * {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dt_api p {
  font-size: var(--dt-font-family);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.dt_api a {
  color: inherit;
  font-weight: var(--dt-font-weight-normal);
}
.dt_api h1, .dt_api h2, .dt_api h3, .dt_api h4, .dt_api h5, .dt_api h6 {
  font-family: var(--dt-font-family);
  font-weight: var(--dt-font-weight-bold);
  color: var(--dt-text-color);
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.dt_api .button {
  text-decoration: none;
  font-family: var(--dt-font-family);
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 2px solid var(--dt-text-color);
  border-radius: 999px;
  padding: 0.45em 1.2em 0.45em;
  text-transform: capitalize;
  background-color: var(--dt-text-color);
  color: var(--dt-white);
  font-style: normal;
  font-weight: var(--dt-font-weight-bold);
}
.dt_api .button:hover, .dt_api .button:focus {
  background-color: var(--dt-white);
  color: var(--dt-cta-color);
  outline: 0;
}
.dt_api .button.button-outline {
  background-color: var(--dt-white);
  color: var(--dt-text-color);
}
.dt_api .button.button-outline:hover, .dt_api .button.button-outline:focus {
  background-color: var(--dt-text-color);
  color: var(--dt-white);
}
.dt_api .button.button-outline.button-primary {
  color: var(--dt-primary);
  border-color: var(--dt-primary);
}
.dt_api .button.button-outline.button-primary:hover, .dt_api .button.button-outline.button-primary:focus {
  background-color: var(--dt-primary);
  color: var(--dt-white);
}
.dt_api .button.button-link {
  background-color: transparent;
  border-color: transparent;
  color: var(--dt-text-color);
}
.dt_api .button.button-link:hover, .dt_api .button.button-link:focus {
  background-color: rgba(0, 0, 0, 0.05);
}
.dt_api .txt_block {
  display: inline-block;
}
.dt_api .prod_links_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
.dt_api .row.products_nav {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  margin: 1rem auto;
}
.dt_api .products_nav a {
  display: none;
  vertical-align: top;
  width: 40%;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: var(--dt-font-weight-normal);
}
.dt_api .products_nav a span {
  font-size: 1rem;
}
.dt_api .products_nav a img {
  max-width: 60%;
  margin-bottom: 0.5rem;
}
.dt_api .products_nav a.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dt_api.single_market .market_ids select {
  display: none;
}
.dt_api .products_wrap {
  overflow: hidden;
  padding: 1rem;
}
.dt_api .market_wrap {
  display: grid;
  gap: 1rem;
}
.dt_api .productcontainer[data-underperformance] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dt_api .productcontainer {
  display: grid;
  grid-template-columns: 1fr -webkit-min-content;
  grid-template-columns: 1fr min-content;
}
.dt_api .productcontainer > div {
  grid-column: span 2;
}
.dt_api .footnote_modal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.93);
  padding: 0;
  overflow-y: auto;
  border-radius: var(--dt-tile-radius);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.dt_api .footnote_modal .modal_close {
  -ms-flex-item-align: center;
      align-self: center;
  border-color: var(--dt-text-color);
  background-color: var(--dt-white);
  color: var(--dt-text-color);
  font-weight: var(--dt-font-weight-normal);
  text-transform: uppercase;
}
.dt_api .footnote_modal .modal_close:hover, .dt_api .footnote_modal .modal_close:focus {
  background-color: var(--dt-text-color);
  color: var(--dt-white);
}
.dt_api .productcontainer {
  background-color: var(--dt-white);
  background-color: var(--dt-tile-bg-color);
  padding: 1rem;
  border-radius: var(--dt-tile-radius);
  position: relative;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dt_api .productcontainer.template {
  display: none !important;
}
.dt_api .productcontainer.footnote_modal_active .footnote_modal {
  padding: 1rem;
  height: 100%;
}
.dt_api .prodname,
.dt_api .non_outperformer_message {
  text-transform: capitalize;
  font-size: 1.75rem;
  font-weight: 300;
}
.dt_api .header {
  padding-block: 0 0.5rem;
}
.dt_api .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 0.875rem;
  font-weight: var(--dt-font-weight-normal);
}
.dt_api .headline .highlight {
  font-size: 2.5rem;
  font-weight: var(--dt-font-weight-bold);
  color: var(--dt-primary);
}
.dt_api .headline .savings_amt {
  text-transform: capitalize;
}
.dt_api .rate_bars,
.dt_api .rate_bars_labels {
  max-width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.dt_api .rate_bars .rate_bar,
.dt_api .rate_bars .bar_label,
.dt_api .rate_bars_labels .rate_bar,
.dt_api .rate_bars_labels .bar_label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}
.dt_api .rate_bar {
  background-color: var(--dt-secondary);
  color: var(--dt-white);
}
.dt_api .rate_bar.fi {
  background-color: var(--dt-primary);
}
.dt_api.chart_vertical .productcontainer .rate_bars {
  height: 140px;
}
.dt_api.chart_vertical .productcontainer .rate_bars .rate_bar {
  height: 0;
  -webkit-transition: height var(--dt-chart-anim-duration) ease-out;
  transition: height var(--dt-chart-anim-duration) ease-out;
  border-radius: var(--dt-chart-bar-radius) var(--dt-chart-bar-radius) 0 0;
}
.dt_api.chart_vertical .productcontainer .rate_bars .rate_bar .rate {
  padding: 0 0.5rem;
  font-size: 1.5rem;
}
.dt_api.chart_vertical .productcontainer.type_loan .rate_bar.fi {
  border-top-right-radius: 0;
}
.dt_api.chart_vertical .productcontainer.type_deposit .rate_bar.mkt {
  border-top-left-radius: 0;
}
.dt_api.chart_vertical .productcontainer.bars_active.type_loan .rate_bar.mkt, .dt_api.chart_vertical .productcontainer.bars_active.type_deposit .rate_bar.fi {
  height: 100%;
}
.dt_api.chart_vertical .productcontainer.bars_active.type_loan .rate_bar.fi, .dt_api.chart_vertical .productcontainer.bars_active.type_deposit .rate_bar.mkt {
  height: 70%;
}
.dt_api .rate .apy_apr {
  display: none;
}
.dt_api .bar_label {
  color: var(--dt-text-color);
  font-family: var(--dt-font-family);
  font-size: 12px;
  text-align: left;
  line-height: 1.375;
  font-weight: var(--dt-font-weight-normal);
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  opacity: 0;
}
.dt_api .bar_label .rate {
  padding-right: 18px;
  display: inline-block;
}
.dt_api .bar_label .btn-footnote {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: none;
  margin: -3px -4px 0 -14px;
  padding: 0;
}
.dt_api .bar_label .btn-footnote .tooltip-info-icon {
  width: 14px;
  height: 14px;
  font-size: 11px;
}
.dt_api .productcontainer.bar_labels_active .bar_label {
  opacity: 1;
}
.dt_api .bar_label {
  padding: 0.25rem 0.5rem 0.25rem 0;
}
.dt_api .bar_label .rate {
  font-weight: var(--dt-font-weight-bold);
}
.dt_api .rate_bars .rate_bar .rate {
  display: inline-block;
  font-weight: var(--dt-font-weight-bold);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.dt_api .rate_bars .rate_bar .rate_fi {
  color: var(--dt-white);
}
.dt_api .rate_bars .rate_bar .rate_mkt {
  color: var(--dt-text-color);
}
.dt_api .productcontainer.bar_labels_active .rate_bars .rate_bar .rate {
  opacity: 1;
}
.dt_api.chart_horizontal .sec_chart {
  display: grid;
  grid-template-columns: 100px 1fr;
}
.dt_api.chart_horizontal .rate_bars {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  height: auto;
  max-width: 100%;
}
.dt_api.chart_horizontal .rate_bars .rate_bar {
  height: 50%;
  width: 0;
  border-radius: 0 var(--dt-chart-bar-radius) var(--dt-chart-bar-radius) 0;
  -webkit-transition: width var(--dt-chart-anim-duration) ease-out;
  transition: width var(--dt-chart-anim-duration) ease-out;
}
.dt_api.chart_horizontal .rate_bars_labels {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.dt_api.chart_horizontal .rate_bars {
  min-height: 80px;
}
.dt_api.chart_horizontal .rate_bars .rate_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.dt_api.chart_horizontal .rate_bars .rate_bar .rate {
  padding-inline: 0.5rem;
}
.dt_api.chart_horizontal .bar_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dt_api.chart_horizontal .productcontainer.type_loan .rate_bar.fi {
  border-top-right-radius: var(--dt-chart-bar-radius);
  border-bottom-right-radius: 0;
}
.dt_api.chart_horizontal .productcontainer.type_deposit .rate_bar.mkt {
  border-top-right-radius: 0;
}
.dt_api.chart_horizontal .productcontainer.bars_active.type_loan .rate_bars .rate_bar.fi {
  width: 70%;
}
.dt_api.chart_horizontal .productcontainer.bars_active.type_loan .rate_bars .rate_bar.mkt {
  width: 100%;
}
.dt_api.chart_horizontal .productcontainer.bars_active.type_deposit .rate_bars .rate_bar.fi {
  width: 100%;
}
.dt_api.chart_horizontal .productcontainer.bars_active.type_deposit .rate_bars .rate_bar.mkt {
  width: 70%;
}
.dt_api .select_mkt {
  margin-top: 0.25rem;
  margin-left: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  top: -0.2em;
}
.dt_api .select_mkt .empty {
  display: none;
}
.dt_api .products_nav label,
.dt_api .products_nav .prod_classes_wrap h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1rem;
}
.dt_api .prod_classes_wrap h4,
.dt_api .prod_classes_wrap h2 {
  color: var(--dt-primary);
  font-weight: 700;
  text-decoration: none;
}
.dt_api .prod_classes_wrap a {
  color: var(--dt-primary);
  font-weight: 700;
  text-decoration: none;
  font-weight: 700;
  color: var(--dt-secondary);
}
.dt_api .prod_classes_wrap a span {
  display: block;
  font-size: 1rem;
}
.dt_api .products_nav label {
  display: inline-block;
  width: auto;
}
.dt_api .select_mkt {
  display: inline-block;
  width: auto;
  display: block;
  margin: 1rem auto 2rem;
}
.dt_api .market_ids label {
  color: var(--dt-secondary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0 1rem;
}
.dt_api .prod_classes_wrap {
  padding: 1rem;
  background-color: var(--dt-tile-bg-color);
  overflow: hidden;
}
.dt_api.single_market .prod_classes_wrap {
  padding-top: 2rem;
}
.dt_api .prod_classes_wrap a {
  padding: 0.625rem;
}
.dt_api .prod_classes_wrap a:hover, .dt_api .prod_classes_wrap a:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.dt_api .prod_classes_wrap a.active {
  color: var(--dt-primary);
  background-color: var(--dt-white);
  border-right: 1px solid var(--dt-transparent-color);
}
.dt_api .prod_classes_wrap a.active:first-of-type {
  border-right: 1px solid var(--dt-bg-color);
}
.dt_api .prod_classes_wrap a.active:last-of-type {
  border-right: none;
}
.dt_api .sec_cta {
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dt_api .sec_dt_credit,
.dt_api .dt_note {
  font-size: 0.875rem;
}
.dt_api .sec_dt_credit a,
.dt_api .dt_note a {
  font-weight: var(--dt-font-weight-bold);
}
.dt_api .dt_credit {
  font-size: 0.75rem;
}
.dt_api .dt_credit a {
  font-weight: var(--dt-font-weight-bold);
}
.dt_api .btn-footnote {
  width: 45px;
  height: 45px;
  margin: -15px -15px 0 0;
  display: grid;
  place-content: center;
}
.dt_api .tooltip-info-icon {
  padding: 0;
  border: 1.5px solid;
  margin: 0px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: relative;
  display: grid;
  place-content: center;
  text-transform: none;
  font-size: 14px;
  font-weight: var(--dt-font-weight-bold);
  vertical-align: middle;
  padding-bottom: 1px;
  border-color: var(--dt-text-color);
  color: var(--dt-text-color);
}
.dt_api .select-selected:after {
  content: "";
  background-image: url(../img/icon_dropdown_arrow.svg);
  background-repeat: no-repeat;
  display: inline-block;
  right: 5px;
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  transition: -webkit-transform 0.2s ease;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 34px;
  height: 34px;
}
.dt_api .select-selected.select-arrow-active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/*
  Then, if the user has NO PREFERENCE for motion, we can OVERRIDE the
  animation definition to include both the motion and non-motion properties.
*/
@media (prefers-reduced-motion: reduce) {
  .dt_api .bar_label {
    opacity: 1;
  }
  .dt_api.chart_horizontal .productcontainer.type_loan .rate_bars .rate_bar.fi {
    width: 70%;
  }
  .dt_api.chart_horizontal .productcontainer.type_loan .rate_bars .rate_bar.mkt {
    width: 100%;
  }
  .dt_api.chart_horizontal .productcontainer.type_deposit .rate_bars .rate_bar.fi {
    width: 100%;
  }
  .dt_api.chart_horizontal .productcontainer.type_deposit .rate_bars .rate_bar.mkt {
    width: 70%;
  }
}/*# sourceMappingURL=styles.css.map */