@media (min-width: 1em) {
  *,
  :after,
  :before {
    box-sizing: border-box;
  }
  .ai_container *,
  .ai_modal-container * {
    font-family: "72 Brand","72 Brand Variable", "Arial", "Helvetica", sans-serif;
    color: #223548;
    margin: 0;
  }
  body {
    margin: 0;
  }
  svg {
    overflow: hidden;
  }
}


.ds--grid .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}
.ds--grid [data-col] {
  position: relative;
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
}
@media (min-width: 640px) {
  .ds--grid .row {
    margin-right: -16px;
    margin-left: -16px;
  }
  .ds--grid [data-col] {
    padding-right: 16px;
    padding-left: 16px
  }
}
@media (min-width: 980px) {
  .ds--grid .row {
    margin-right: -24px;
    margin-left: -24px;
  }
  .ds--grid [data-col] {
    padding-right: 24px;
    padding-left: 24px;
  }
}



/* Button */
@media (min-width: 1em) {
  .ai_button {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    font-family: "72 Brand","72 Brand Variable", "Arial", "Helvetica", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    padding: 8px 9px;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    background: #fff;
    transition: background .25s linear;
    transition-property: color, border, background;
  }
  .ai_button:focus {
    outline: .125rem solid #0057D2;
    outline-offset: .125rem;
  }
  .ai_button:hover {
    text-decoration: none;
  }
  .ai_button:hover:focus,
  .ai_button:active:focus {
    outline: none;
  }
  .ai_button:disabled {
    pointer-events: none;
    opacity: .4;
  }
  .ai_button-primary,
  .ai_button-primary:visited {
    color: #fff;
    background: #0057D2;
    border-color: #0057D2;
  }
  .ai_button-secondary,
  .ai_button-secondary:visited {
    color: #0040B0;
    background: #fff;
    border-color: #475E75;
  }
  .ai_button-tetriary,
  .ai_button-tetriary:visited {
    color: #0040B0;
    background: transparent;
    border-color: transparent;
  }
  .ai_button-primary:hover {
    color: #fff;
    background: #0040B0;
    border-color: #0040B0;
  }
  .ai_button-secondary:hover,
  .ai_button-tetriary:hover {
    color: #0040B0;
    background: #EAECEE;
    border-color: #475E75;
  }
  .ai_button-primary:active,
  .ai_button-secondary:active,
  .ai_button-tetriary:active {
    color: #0040B0;
    background: #fff;
    border-color: #0040B0;
  }
  .ai_button-primary svg,
  .ai_button-primary:hover svg {
    fill: #fff;
    transition: fill .25s linear;
  }
  .ai_button-primary:active svg {
    fill: #0040B0;
  }
  @media (min-width:980px) {
    .ai_button {
      padding: 11px 13px;
    }
  }
}
/* INPUT */
@media (min-width: 1em) {
  .ai_input-container {
    position: relative;
    width: 100%;
  }
  .ai_input-container form {
    width: 100%;
  }
  .ai_input {
    border: 1px solid #5B738B;
    box-sizing: border-box;
    font-family: "72 Brand","72 Brand Variable", "Arial", "Helvetica", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    height: 42px;
    padding: 0.5rem;
    width: 100%;
    color: #223548;
    border-radius: 4px;
  }
  .ai_input-container.ai_active .ai_input {
    border: 1px solid #0040B0;
  }
  .ai_input-label {
    max-width: calc(100% - 4rem);
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    transform: translateY(-50%);
    transition: top .3s ease;
    white-space: nowrap;
    z-index: 1;
    color: #475E75;
    left: 0.5rem;
    top: 21px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
  }
  .ai_required + .ai_input-label::after {
    content: " *";
    font-size: 16px;
  }
  .ai_input-container.ai_active .ai_input-label,
  .ai_input-container.ai_filled .ai_input-label {
    font-size: 12px;
    padding: 0 0.25rem;
    left: 0.25rem;
    top: 0;
  }
  .ai_input-container.ai_active .ai_input-label {
    color: #475E75;
  }
  .ai_input-container.ai_active .ai_input-label::before,
  .ai_input-container.ai_filled .ai_input-label::before {
    content: "";
    background-color: #fff;
    height: calc(50% + 2px);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
/* DROPDOWN */
@media (min-width: 1em) {
  .ai_dropdown-container {
    position: relative;
    width: 100%;
  }
  .ai_dropdown {
    border: 1px solid #5B738B;
    box-sizing: border-box;
    font-family: "72 Brand","72 Brand Variable", "Arial", "Helvetica", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    height: 42px;
    padding: 0.5rem;
    width: 100%;
    color: #223548;
    border-radius: 4px;
    background: white;
    text-align: left;
    cursor: pointer;
    position: relative;
  }
  .ai_dropdown::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    pointer-events: none;
    border-radius: 4px;
    right: -1px;
    top: -1px;
    border: 1px solid transparent;
  }
  .ai_active .ai_dropdown::before {
    border-left-color: #89D1FF;
  }
  .ai_dropdown[disabled] {
    pointer-events: none;
  }
  .ai_dropdown-more {
    font-size: 12px;
    color: #0070F2;
    padding-left: 8px;
  }
  .ai_dropdown-inner {
    font-size: 12px;
    line-height: 1;
    color: #223548;
    padding: 5px 24px 5px 8px;
    border: none;
    background: #EAECEE;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s linear;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 35%;
    position: relative;
    margin-right: 4px;
  }
  .ai_dropdown-inner:hover,
  .ai_dropdown-inner:focus {
    background: #D5D8DC;
    border: none;
    outline: none;
  }
  .ai_dropdown-inner::before,
  .ai_dropdown-inner::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    background: #223548;
    transition: background .2s linear;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
  }
  .ai_dropdown-inner::after {
    transform: translateY(-50%) rotate(135deg);
  }
  .ai_dropdown-arrow {
    width: 18px;
    height: 18px;
    fill: #475E75;
    position: absolute;
    right: 12px;
    top: 12px;
    pointer-events: none;
    transition: transform .2s linear;
    z-index: 12;
  }
  .ai_dropdown-container.ai_active .ai_dropdown-arrow {
    transform: rotate(180deg);
    fill: #0040B0;
  }
  .ai_dropdown-container.ai_active .ai_dropdown,
  .ai_dropdown:focus {
    border: 1px solid #0057D2;
  }
  .ai_dropdown-label {
    max-width: calc(100% - 4rem);
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    transform: translateY(-50%);
    transition: top .3s ease;
    white-space: nowrap;
    z-index: 1;
    color: #475E75;
    left: 0.5rem;
    top: 21px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
  }
  .ai_required .ai_dropdown-label::after {
    content: " *";
    font-size: 16px;
  }
  .ai_dropdown-container.ai_active .ai_dropdown-label,
  .ai_dropdown-container.ai_filled .ai_dropdown-label {
    font-size: 12px;
    padding: 0 0.25rem;
    left: 0.25rem;
    top: 0;
    color: #475E75;
  }
  .ai_dropdown-container.ai_active .ai_dropdown-label {
    /* color: #0070F2; */
  }
  .ai_dropdown-container.ai_active .ai_dropdown-label::before,
  .ai_dropdown-container.ai_filled .ai_dropdown-label::before {
    content: "";
    background-color: #fff;
    height: calc(50% + 2px);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }

  .ai_dropdown-list {
    max-height: 200px;
    overflow-y: scroll;
  }
  .ai_dropdown-list-wrapper {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 2px 8px 0px rgba(34, 54, 73, 0.3);
    color: #000;
    left: 0;
    top: 41px;
    padding: 2px;
    width: 100%;
    z-index: 5;
    border: 1px solid #5B738B;
    border-radius: 8px;
    z-index: 14;
  }
  .ai_dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    line-height: 1.5;
    padding: 9px 0px 9px 12px;
    cursor: pointer;
    margin-top: 2px;
    background-color: transparent;
  }
  .ai_dropdown-multi {
    position: relative;
    padding-left: calc(12px + 42px + 12px);
  }
  .ai_dropdown-multi.ai_selected {
    background-color: #ebf8ff;
  }
  .ai_dropdown-multi::before,
  .ai_dropdown-multi::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: calc(12px + 9px);
  }
  .ai_dropdown-multi::before {
    border: 1px solid #5b738b;
    border-radius: 4px;
    background: white;
  }
  .ai_dropdown-multi:not(.ai_selected)::after {
    display: none;
  }
  .ai_dropdown-multi.ai_selected::after {
    background: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjMDA3MGYyIj48cGF0aCBkPSJNMTg3IDQxNnEtMTIgMC0yMC05TDcxIDI5OXEtNy03LTctMTcgMC0xMSA3LjUtMTguNVQ5MCAyNTZxMTIgMCAxOSA5bDc3IDg3IDIxNy0yNDdxOC05IDE5LTl0MTguNSA3LjVUNDQ4IDEyMnEwIDEwLTYgMTZMMjA2IDQwN3EtNyA5LTE5IDl6Ij48L3BhdGg+PC9zdmc+");
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .ai_dropdown-item span {
    display: block;
  }
  .ai_dropdown-item_title {
    font-weight: 500;
  }
  .ai_dropdown-item_text {
    color: #475E75;
    padding-top: 8px;
    font-size: 14px;
  }
  .ai_dropdown-title {
    pointer-events: none;
    font-weight: 700;
    padding-bottom: 7px;
    border-bottom: 1px solid #A9B4BE;
  }
  .ai_dropdown-title:has(~ .ai_dropdown-item:not(.ai_dropdown-dn)) {
    
  }
  .ai_dropdown-list-wrapper:not(.ai_long) .ai_dropdown-item:first-child {
    margin-top: 0;
  }
  .ai_dropdown-item-empty {
    /* pointer-events: none; */
    display: none;
    font-size: 1rem;
    padding: 8px 0px 8px 10px;
  }
  .ai_empty .ai_dropdown-item-empty {
    display: block;
  }
  .ai_dropdown-item:hover,
  .ai_dropdown-item:focus {
    background-color: #eaeaea;
    outline: none;
    border: none;
  }
  .ai_dropdown-multi.ai_selected:hover,
  .ai_dropdown-multi.ai_selected:focus {
    background-color: #d1efff;
  }
  .ai_dropdown-container.ai_active .ai_dropdown-list-wrapper {
    display: block;
  }
  .ai_dropdown-list-input-container {
    position: relative;
    margin-left: 10px;
    margin-bottom: 16px;
    margin-top: 14px;
    width: calc(100% - 10px - 2px - 2px - 10px);
  }
  .ai_dropdown-list-wrapper input {
    display: block;
    margin: 0;
    background: white;
    text-overflow: ellipsis;
    width: calc(100%);
    border: 1px solid #5B738B;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    height: 42px;
    padding: 8px;
  }
  .ai_dropdown-list-wrapper input:focus {
    border: 1px solid #0057D2;
  }
  .ai_dropdown-list-wrapper svg {
    width: 18px;
    height: 18px;
    right: 12px;
    top: 12px;
    pointer-events: none;
    position: absolute;
    fill: #475E75;
  }
  .ai_dropdown-list-wrapper:not(.ai_short) .ai_dropdown-list::-webkit-scrollbar {
    background-color: #8396a8;
    background: transparent;
    border-radius: 8px;
    width: 12px;
  }
  .ai_dropdown-list-wrapper:not(.ai_short) .ai_dropdown-list::-webkit-scrollbar-thumb {
    background-color: #8396a8;
    border-radius: 8px;
  }
  .ai_dropdown-list-wrapper:not(.ai_short) .ai_dropdown-list::-webkit-scrollbar-corner {
    display: none
  }
  .ai_dropdown-dn {
    display: none;
  }
}
/* TOOLTIP */
@media (min-width: 1em) {
  .ai_input-container[data-tooltip] form {
    width: calc(100% - 16px - 12px);
  }
  [data-tooltip] .ai_dropdown {
    width: calc(100% - 16px - 12px);
  }
  [data-tooltip] .ai_dropdown-arrow {
    right: calc(16px + 12px + 12px);
  }
  [data-tooltip] .ai_dropdown-list-wrapper {
    width: calc(100% - 16px - 12px);
  }
  .ai_tooltip-wrapper {
    position: absolute;
    top: 13px;
    right: 0;
    width: 16px;
    height: 16px;
  }
  .ai_modal .ai_tooltip-wrapper {
    right: 25px;
    top: 0;
  }
  .ai_result-data .ai_tooltip-wrapper {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .ai_tooltip-container {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
    /* margin-top: 1px; */
    border-radius: 50%;
  }
  .ai_tooltip-container svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: #475E75;
  }
  .ai_tooltip {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #223548;
    padding: 16px;
    border: 1px solid #A9B4BE;
    box-shadow: 0px 2px 4px rgba(34, 54, 73, 0.2);
    border-radius: 8px;
    background-color: white;
    display: none;
    text-align: left;
    cursor: auto;

    position: absolute;
    z-index: 20;
    bottom: calc(100% + 9px);
    right: -13.5px;
    width: 300px;
  }
  [aria-expanded="true"] ~ .ai_tooltip-container .ai_tooltip {
    display: block;
  }
  .ai_tooltip::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(100% - 6px - 15px);
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid rgb(169, 180, 190);
    border-top: none;
    border-left: none;
    transform: translate(-50%, 55%) rotate(45deg);
  }
  @media (min-width: 980px) {
    .ai_data-item .ai_tooltip {
      bottom: auto;
      right: auto;
      width: 220px;
      top: -13.5px;
      left: calc(100% + 10px);
    }
    .ai_data-item .ai_tooltip::before {
      bottom: calc(100% - 6px - 15px);
      left: 0;
      transform: translate(-50%, 55%) rotate(135deg);
    }
  }
}












@media (min-width: 1em) {
  .ai_col_data {
    z-index: 1;
  }
  .ai_col_result:has(.ai_tooltip-container[aria-expanded="true"]) {
    z-index: 2;
  }
  .ai_col_data,
  .ai_col_result {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ai_container {
    word-break: break-word;
  }
  .ai_cta-container {
    margin-top: 40px;
    display: flex;
  }
  .ai_cta {
    margin-right: 24px;
  }
  .ai_col_result {
    margin-top: 40px;
  }
  .ai_col_allocation {
    margin-top: 20px;
    margin-bottom: 32px;
    width: 100%;
  }
  .ai_number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0070F2;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 12px;
  }
  .ai_bullet svg {
    display: block;
    width: 14px;
    height: 11px;
    fill: #223548;
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 6px;
  }
  .ai_data-item {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    align-content: flex-end;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .ai_data-item:last-child {
    margin-bottom: 0;
  }
  .ai_data-item_title {
    display: block;
    color: black;
    width: 100%;
    padding-right: 28px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
  }
  .ai_data-item_title span {
    color: black;
  }
  .ai_legend-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ai_legend {
    position: relative;
    margin-bottom: 8px;
  }
  .ai_legend:last-child {
    margin-bottom: 0;
  }
  .ai_cube {
    position: absolute;
    width: 16px;
    height: 12px;
    left: 0;
    top: 3px;
  }
  @keyframes chart_height {
    0% {
      max-height: 0px;
    }
    100% {
      max-height: 200px;
    }
  }
  @keyframes opacity_in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .ai_column-text {
    display: flex;
    justify-content: space-around;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .ai_column-text p {
    max-width: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
    color: #223548;
    padding: 0 12px;
  }
  .ai_modal-container {
    position: absolute;
    z-index: 5000;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
  .ai_modal {
    background: white;
    margin-bottom: 240px;
    padding: 32px 24px 64px;
  }
  .ai_modal,
  .ai_modal-title_container {
    position: relative;
    width: calc(100% - 0px);
  }
  .ai_print-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .ai_print-container button.ai_button {
    margin-bottom: 16px;
  }
  .ai_print-container svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
  }
  .ai_modal .ai_print-container {
    display: none;
  }
  .ai_modal-title_container {
    padding: 32px;
    background: white;
    border-bottom: 1px solid #D5DADD;
  }
  .ai_modal-close {
    position: absolute;
    width: 12px;
    height: 12px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    top: 42px;
    right: 24px;
    cursor: pointer;
  }
  .ai_modal-close::before,
  .ai_modal-close::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #475E75;
    transition: background .2s linear;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .ai_modal-close:hover::before,
  .ai_modal-close:hover::after {
    background: #727272;
  }
  .ai_modal-close::after {
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .ai_modal-item {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 16px;
  }
  .ai_title-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
  }
  .ai_title-container > * {
    position: relative;
    padding-right: 22px;
    width: 100%;
  }
  .ai_title-line {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
  }
  .ai_title-line_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: black;
  }
  p.ai_result-content_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #223548;
    margin-bottom: 32px;
  }
  .ai_result-content_note {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #223548;
    padding-top: 12px;
  }
  .ai_bullet {
    display: flex;
    margin-bottom: 20px;
  }
  .ai_bullet-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    color: #223548;
  }
  .ai_bullet-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #223548;
  }
  .ai_legend p {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #223548;
    padding-left: 24px;
  }
  .ai_result-graph_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    color: black;
    margin-bottom: 24px;
  }
  .ai_modal-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    color: black;
    margin-bottom: 20px;
    padding-right: 30px;
  }
  .ai_modal_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: black;
    margin-bottom: 8px;
  }
  .ai_modal_title-top {
    margin-bottom: 0;
  }
  .ai_modal_title-sub {
    font-size: 18px;
    margin-bottom: 0;
  }
  .ai_modal3-ready .ai_modal_title {
    margin-bottom: 24px;
  }
  .ai_modal_subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: #223548;
    margin-top: 24px;
    margin-bottom: 20px;
  }
  .ai_modal-item_title {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color:#475E75;
    width: 100%;
    padding-right: 40px;
    align-self: flex-start;
  }
  .ai_modal-item_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #223548;
  }
  .ai_result-primary {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .ai_result-secondary {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .ai_result-list,
  .ai_result-graph {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ai_result-primary-number {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    color: #A100C2;
    margin-bottom: 8px;
  }
  .ai_result-primary-number span,
  .ai_result-secondary-number span {
    color: inherit;
  }
  .ai_result-currency {
    text-transform: uppercase;
  }
  .ai_result-primary-number .ai_result-number {
    font-weight: 700;
    font-size: 40px;
  }
  .ai_result-primary-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    color: black;
  }
  .ai_result-secondary-number {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: #A100C2;
    margin-bottom: 8px;
  }
  .ai_result-secondary-number .ai_result-number {
    font-weight: 700;
    font-size: 28px;
  }
  .ai_result-secondary-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1;
    color: black;
  }
  .ai_modal-data {
    background: #F5F6F7;
    border-radius: 12px;
    padding: 24px;
    padding-bottom: 0;
    margin-bottom: 64px;
  }
  .ai_modal-disclamer {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #475E75;
    margin: 32px 0 24px;
  }
  .ai_result-graph_breakdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
  }
  .ai_result-graph_years-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .ai_result-graph_years-container {
    position: relative;
    /* width: 100%; */
    /* max-width: 394px; */
    height: 180px;
    border-bottom: 1px solid #223548;
    border-left: 1px solid #223548;
    border-top: 1px solid #A9B4BE;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
  }
  .ai_result-graph_years-column {
    width: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: 1px;
  }
  .ai_result-graph_years-column span:nth-child(1) {
    background: #7858FF;
    outline: 1px solid white;
  }
  .ai_result-graph_years-Y-label {
    position: absolute;
    top: 0;
    left: -18px;
    font-size: 12px;
    line-height: 1;
    color: #223548;
    transform: translate(-50%, -50%);
  }
  .ai_result-graph_years-Y-label.ai_top {

  }
  .ai_result-graph_years-Y-label.ai_bottom {
    top: auto;
    bottom: -6px;
    transform: translate(-50%, 0);
  }
  .ai_result-graph_years-Y-label:nth-child(2) {

  }
  .ai_result-graph_years-separator {
    position: absolute;
    left: 0;
    top: calc(100% / 5);
    width: 100%;
    background: #A9B4BE;
    border-bottom: 1px solid #A9B4BE;
  }
  .ai_result-graph_years-separator:nth-child(2) {
    top: calc(100% / 5 * 2);
  }
  .ai_result-graph_years-separator:nth-child(3) {
    top: calc(100% / 5 * 3);
  }
  .ai_result-graph_years-separator:nth-child(4) {
    top: calc(100% / 5 * 4);
  }
  .ai_result-graph_years-separator.ai_top {
    /* background: #223548; */
  }
  .ai_result-graph_breakdown-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .ai_result-graph_breakdown svg {
    width: 180px;
    height: 180px;
    fill: transparent;
    stroke-width: 40px;
    transform: rotate(-90deg);
    transform-origin: 50%;
    stroke: #A6E0FF;
  }
  .ai_result-graph_legend {
    display: flex;
    align-items: center;
    margin-right: 24px;
  }
  .ai_result-graph_legend:last-child {
    margin-right: 0;
  }
  .ai_result-graph_legend-circle {
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    background: transparent;
  }
  .ai_result-graph_legend-text {
    font-size: 14px;
    line-height: 1.5;
    color: #223548;
  }
  .ai_result-graph_years {
    margin-bottom: 24px;
    padding-left: 30px;
  }
  .ai_result-list {
    margin-bottom: 24px;
  }
  .ai_result-list ul {
    padding-left: 20px;
  }
  .ai_result-list li {
    padding: 4px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #223548;
  }
  .ai_result-list_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    color: black;
    margin-bottom: 4px;
  }
  .ai_result-graph_years-story {
    /* max-width: 394px; */
    display: flex;
    justify-content: space-around;
    margin-bottom: 12px;
  }
  .ai_result-graph_years-story span {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
    color: #223548;
  }
  .ai_result-graph_breakdown-value {
    font-size: 14px;
    color: black;
    position: absolute;
    top: 0;
    left: calc(50% + 10px);
  }
  .ai_link,
  .ai_link:hover,
  .ai_link:focus,
  .ai_link:active,
  .ai_link:visited {
    color: #0057D2;
    text-decoration: underline;
  }
  .ai_link:hover,
  .ai_link:focus {
    color: #002A86;
  }
  .ai_link:hover svg,
  .ai_link:focus svg {
    fill: #002A86;
  }
  .ai_link:active {
    color: #00144A;
  }
  .ai_link:active svg {
    fill: #00144A;
  }



  .ai_modal-bgcolor {
    background: #5D36FF;
  }
  .ai_modal-anvilcolor {
    fill: #9B76FF;
  }
  div:has(>.ai_filler-svg) {
    position: relative;
    overflow: hidden;
  }
  div:has(>.ai_filler-svg) > *:not(svg) {
    position: relative;
  }
  .ai_filler-svg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .ai_modal2-data div {
    position: relative;
    z-index: 100;
  }
  .ai_modal2-data {
    background: #5D36FF;
    padding: 120px 16px 32px;
    width: 100%;
  }
  .ai_modal2_title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
  }
  .ai_modal2_numbers {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
  }
  .ai_modal2_numbers .ai_result-number {
    font-size: 48px;
  }
  .ai_inherit {
    font-family: inherit;
    color: inherit;
    font-weight: inherit;
  }
  .ai_modal-anvil {
    fill: #9B76FF;
    position: absolute;
    bottom: calc(100% - 120px);
    left: 0;
    width: 100%;
    min-width: 862px;
  }
  .ai_modal2-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ai_modal2_title2 {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
  }
  .ai_modal2_numbers2 {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
  }
  .ai_modal3-data {
    padding: 24px 16px;
    width: 100%;
    height: calc(100% - 20px);
    border-radius: 10px;
    background: #F5F6F7;
    margin-top: 20px;
  }
  .ai_modal3-data[data-bg="transparent"] {
    background: transparent;
    position: relative;
  }
  .ai_modal .ai_result-graph {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ai_modal .ai_result-graph_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: black;
    margin-bottom: 24px;
  }
  .ai_modal .ai_result-graph_years-wrapper {
    justify-content: center;
    padding-right: 30px;
  }
  .ai_modal .ai_result-graph_breakdown-container {
    justify-content: center;
  }
  .ai_modal .ai_result-graph_legend-circle[style*="#7858FF"] {
    border: 6px solid #7858FF;
  }
  .ai_modal .ai_result-graph_legend-circle[style*="#A6E0FF"] {
    border: 6px solid #A6E0FF;
  }
  .ai_modal .ai_result-graph_legend-circle[style*="#0070F2"] {
    border: 6px solid #0070F2;
  }
  .ai_modal .ai_result-graph_years,
  .ai_modal .ai_result-graph_breakdown {
    margin-bottom: 32px;
  }
  .ai_modal-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
  }
  .ai_modal .ai_result-graph_years-container,
  .ai_modal .ai_result-graph_years-story {
    max-width: 2000px;
  }
  .ai_modal_list {
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
    break-inside: avoid;
  }
  .ai_modal_list-item {
    color: #223548;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
  }
  .ai_modal_list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
    width: 4px;
    height: 4px;
    background: #223548;
    border-radius: 50%;
    border: 2px solid #223548;
  }
  .ai_modal_footer {
    background: #5D36FF;
    height: 88px;
  }
  .ai_modal_footer .ai_modal-anvil {
    bottom: auto;
    top: 0;
  }
  .ai_modal-links {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
  }
  .ai_modal-links div {
    width: 100%;
    margin: 2px 0;
  }
  .ai_modal-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
  .ai_modal-link svg {
    width: 6px;
    height: 10px;
    fill: #0057D2;
    margin-left: 8px;
  }
  .ai_svg-diamond {
    display: none;
    width: 148px;
    height: 148px;
    position: absolute;
    right: 32px;
    top: calc(50% - 74px);
  }
  .ai_modal3-ready {
    break-inside: avoid;
  }
  .ai_modal_additional-margin {
    margin-top: 16px;
  }
}



@media (min-width: 640px) {
  .ds--grid .row:has(.ai_result-secondary) {
    margin-right: -12px;
    margin-left: -12px;
  }
  .ds--grid [data-col].ai_result-secondary {
    padding-right: 12px;
    padding-left: 12px;
  }
  .ai_modal_additional-margin {
    margin-top: 24px;
  }
  .ai_svg-diamond {
    display: block;
  }
  .ai_modal3-ready {
    flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .ai_modal2-data {
    padding: 140px 32px 32px;
  }
  .ai_modal-anvil {
    bottom: calc(100% - 135px);
  }
  .ai_modal2_numbers .ai_result-number,
  .ai_modal2_numbers {
    font-size: 50px;
  }
  .ai_modal2-item {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .ai_modal3-data {
    padding: 24px 32px;
  }




  .ai_result-primary {
    margin-bottom: 24px;
  }
  .ai_result-secondary {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .ai_data-item_title {
    width: auto;
  }
  .ai_modal {
    padding: 32px 32px 48px;
  }
  .ai_result-numbers .row {
    align-items: flex-end;
  }
  .ai_modal-close {
    top: 44px;
    right: 44px;
  }
  .ai_bullet-title {
    font-size: 20px;
  }
  .ai_modal-data {
    padding: 32px;
    padding-bottom: 0;
    position: relative;
    display: flex;
    justify-content: center;
  }
  .ai_modal,
  .ai_modal-title_container {
    width: 640px;
  }
  .ai_modal-item {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .ai_col_result {
    margin-top: 48px;
  }
  .ai_result-graph_years,
  .ai_result-graph_breakdown,
  .ai_result-list {
    margin-bottom: 32px;
  }
  .ai_result-numbers {
    margin-bottom: 8px;
  }
  .ai_modal .ai_result-primary {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ai_modal .ai_result-numbers {
    margin-bottom: 16px;
  }
  .ai_print-container {
    flex-direction: row;
  }
  .ai_print-container button.ai_button {
    margin-bottom: 0;
    margin-right: 16px;
  }
}
@media (min-width: 980px) {
  .ai_result-secondary {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
  .ai_cta {
    margin-right: 16px;
  }
  .ai_data-wrapper::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0px, rgba(60,60,60,.2) 30px, rgba(60,60,60,.2) calc(100% - 90px), transparent calc(100% - 50px));
    background: #D5DADD;
    top: 0;
    right: 0;
  }
  .ai_col_result {
    margin-top: 0;
  }
  .ai_col_data,
  .ai_col_result {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ai_modal,
  .ai_modal-title_container {
    width: 680px;
    max-width: 680px;
  }
  .ai_modal-title_container {
    margin-top: 120px;
  }
  .ai_result-graph_years,
  .ai_result-graph_breakdown,
  .ai_result-list {
    margin-bottom: 40px;
  }
  .ai_result-numbers {
    margin-bottom: 16px;
  }
  .ai_result-primary-number {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 4px;
  }
  .ai_result-primary-number .ai_result-number {
    font-size: 56px;
  }
  .ai_modal .ai_result-list {
    margin-bottom: 32px;
  }
  .ai_title-container > * {
    width: auto;
  }
  .ai_print-container {
    flex-direction: column;
  }
  .ai_print-container button.ai_button {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .ai_result-secondary {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
  .ai_modal3-col {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
  .ai_modal3-col:nth-child(2n) {
    padding-left: 12px;
  }
  .ai_modal3-col:nth-child(2n + 1) {
    padding-right: 12px;
  }
  .ai_modal2-item {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
  }


  .ai_result-primary {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .ai_result-graph {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ai_col_allocation {
    margin-top: 35px;
  }
  .ai_modal {
    padding-top: 0;
  }
  .ai_column-text p {
    padding: 0 20px;
  }
  .ai_modal,
  .ai_modal-title_container {
    width: 1000px;
    max-width: 1000px;
  }
  .ai_modal .ai_result-primary {
    flex: 0 0 34%;
    max-width: 34%;
    margin-bottom: 24px;
    padding-right: 0;
  }
  .ai_print-container {
    flex-direction: row;
  }
  .ai_print-container button.ai_button {
    margin-bottom: 0;
    margin-right: 16px;
  }
}
@media (min-width: 1600px) {
  .ai_modal,
  .ai_modal-title_container {
    width: 1160px;
    max-width: 1160px;
  }
}
@media print {
  @page {
    /* size: a3; */
  }
  body {
    /* min-width: 80em !important; */
    /* min-width: 1160px !important; */
    width: 1160px !important;
  }
  .ai_modal-cta,
  .ai_modal-close,
  .ai_modal .ai_tooltip-wrapper {
    display: none;
  }
  .ai_modal {
    margin-bottom: 0px;
    padding-top: 0;
  }
  .ai_modal-title_container {
    margin-top: 0px;
    border-bottom: 2px solid #D5DADD;
  }
  .ai_modal, .ai_modal-title_container {
    width: 93%;
    max-width: 100%;
  }
  body .ai_modal-container {
    min-height: 100vh;
    align-items: start;
  }
  .ai_modal-title {
    margin-bottom: 0;
  }
  .ai_filler-svg {
    display: block;
  }
  .ai_modal3-col {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
  .ai_modal3-col:nth-child(2n) {
    padding-left: 12px;
  }
  .ai_modal3-col:nth-child(2n + 1) {
    padding-right: 12px;
  }
}


.ai_focus:focus {
  outline: 0.125rem solid #0057D2;
  outline-offset: 0.125rem;
}
.ai_focus:focus:active,
.ai_focus:focus:hover {
  outline: none;
}