<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#potential-growth-tool .customDataLabels span {
    padding-left: 5px;
    padding-right: 5px;
}
#potential-growth-tool input[type=text]:focus {
    outline: none;
}

#potential-growth-tool .small-title {
    margin-bottom: 0;
}

#potential-growth-tool .prefix-input {
    font-family: "Sharp Grotesk Bold", Arial, "Arial Unicode MS", "sans-serif";
    font-size: 25px;
    padding: .25rem .5rem;
    border: .05rem solid #00143F;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

#potential-growth-tool .prefix-input input {
    font-family: "Sharp Grotesk Bold", Arial, "Arial Unicode MS", "sans-serif";
    font-size: 25px;
    border: 0;
    padding: 0;
    margin-left: .25rem;
    background: 0;
    width: calc(100% - 25px);
    font-weight: 700;
}

#potential-growth-tool .years-invested-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#potential-growth-tool .years-invested-title-row p {
    margin-bottom: 0;
}

#potential-growth-tool .years-invested-title-row .slider-num {
    font-family: "Sharp Grotesk Bold", Arial, "Arial Unicode MS", "sans-serif";
    font-weight: 700;
}

#potential-growth-tool .years-invested-title-row .invested-year {
    font-size: 25px;
}

#potential-growth-tool .slidetag {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 16px;
}

#potential-growth-tool .ending-amount-box {
    background-color: #FF7E58;
    border-radius: 5px;
    color: #FFF;
    padding: 15px;
    font-weight: 700;
}

#potential-growth-tool .ending-amount-box p {
    margin-bottom: 0;
    font-size: 16px;
}

#potential-growth-tool .ending-amount-box .ending-amount-result {
    font-family: "Sharp Grotesk Bold", Arial, "Arial Unicode MS", "sans-serif";
    color: #00143F;
    position: relative;
    padding-left: 25px;
    font-size: 50px;
}

@media(max-width: 1199px) {
    #potential-growth-tool .ending-amount-box .ending-amount-result {
        font-size: 40px;
    }
}

#potential-growth-tool .ending-amount-box .ending-amount-result::before {
    content: "\A";
    border-style: solid;
    border-width: 20px 0 20px 15px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: 0;
    top: calc(50% - 20px);
}

#potential-growth-tool #container {
    height: 280px
}

@media screen and (min-width: 840px) {
    #potential-growth-tool #container {
        height: 430px;
    }
}

#potential-growth-tool .slidecontainer {
    --valuePercent: 100%;
    display: flex;
    height: 25px;
    width: 100%;
}

#potential-growth-tool .slidecontainer .slider {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    width: 100%;
    margin: 0px;
    cursor: pointer;
}

/* Track */
#potential-growth-tool .slidecontainer .slider::-webkit-slider-runnable-track {
    max-width: 100%;
    border-radius: 2.5px;
    min-height: 1px;
    max-height: 5px;
    background-image: linear-gradient(#FF7E58, #FF7E58), linear-gradient(#00143F, #00143F);
    background-size: var(--valuePercent) 5px, 100% 2px;
    background-repeat: no-repeat no-repeat;
    background-position: left;
    cursor: pointer;
}

/* Thumb */
#potential-growth-tool .slidecontainer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    position: relative;
    height: 25px;
    width: 25px;
    bottom: 10px;
    border-radius: 100%;
    border: 5px solid #FF7E58;
    background-color: #fff;
    cursor: pointer;
}</pre></body></html>