#mp-interactive-tool .characteristics-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#mp-interactive-tool .portfolio-chart-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-m);
}
#mp-interactive-tool .portfolio-chart-section .chart-inner {
    width: 100%;
    min-width: 0;
}
#mp-interactive-tool .fixed-tag {
    position: relative;
    margin-top: var(--space-xs);
    width: 100%;
    height: 16px;
    pointer-events: none;
    --moderate-pos: 20%;
    --balanced-pos: 40%;
    --growth-pos: 60%;
    --high-growth-pos: 80%;
}
#mp-interactive-tool .fixed-tag > div {
    position: absolute;
    bottom: 0;
    transform: translateX(calc(-1 * (50% - 19px)));
    line-height: 1;
    color: #00143F;
    white-space: nowrap;
    font-weight: 400;
    font-size: var(--font-size-base);
}
#mp-interactive-tool .fixed-tag > div.active {
    font-weight: 700;
}
#mp-interactive-tool .fixed-tag .moderate-point { left: var(--moderate-pos); }
#mp-interactive-tool .fixed-tag .balanced-point { left: var(--balanced-pos); }
#mp-interactive-tool .fixed-tag .growth-point { left: var(--growth-pos); }
#mp-interactive-tool .fixed-tag .high-growth-point { left: var(--high-growth-pos); }

/* Interior tick markers (exclude first and last) */
#mp-interactive-tool .slidecontainer {
    --valuePercent: 0%;
    display: flex;
    height: 40px;
    width: 100%;
    position: relative;
}

#mp-interactive-tool .slidecontainer .slider {
    -webkit-appearance: none;
    --shadow: none;
    appearance: none;
    background: transparent;
    width: 100%;
    margin: 0px;
    cursor: pointer;
}
/* Track */
#mp-interactive-tool .slidecontainer .slider::-webkit-slider-runnable-track {
    max-width: 100%;
    min-height: 38px;
    max-height: 38px;
    background-image: linear-gradient(90deg, #E7F5FF 0%, #001AFF 100%);
    background-repeat: no-repeat no-repeat;
    border-radius: 32px;
    background-position: left;
    cursor: pointer;
}


/* Thumb */
#mp-interactive-tool .slidecontainer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width:38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    filter: drop-shadow(0 0 8px rgba(0, 20, 63, 0.15));
    box-shadow: var(--shadow);
    cursor: pointer;
}
/* Firefox */
#mp-interactive-tool .slidecontainer .slider::-moz-range-thumb {
    width:38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 20, 63, 0.15);
    cursor: pointer;
    border: none;
}

#mp-interactive-tool .characteristics-container {
    display: grid;
    gap: var(--space-m);
    align-self: stretch;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background-color: #e7f5ff;
    width: 100%;
    height: 212px;
    box-sizing: border-box;
    border-radius: 10px;
    padding: var(--space-m);
}
#mp-interactive-tool .characteristics-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxs);
}
#mp-interactive-tool .characteristics-title {
    margin-bottom: var(--space-m);
}

#mp-interactive-tool .characteristics-box .result-num {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-sm);
    font-weight: var(--font-weight-bold);
}
#mp-interactive-tool .characteristics-box .result-label {
    margin-bottom: 0;
    font-size: var(--font-size-small);
}
#mp-interactive-tool .ssmp-form-select__select-activator:hover {
    color: #0014bf;
    cursor: pointer;
}
#mp-interactive-tool .ssmp-form-select__select-activator:hover .caret-down {
    background-color: #0014bf;
}
#mp-interactive-tool .ssmp-form-select__select-activator .ssmpsvg {
    transition: none;
}
#mp-interactive-tool .ssmp-form-select__select .caret-down {
    background-color: #00143F;
    fill: white;
    border-radius: 4px;
    margin-left: 4px;
    cursor: pointer; 
}
#mp-interactive-tool button.highcharts-a11y-proxy-button {
    cursor: default !important;
}
#mp-interactive-tool .richtext.smallcopy p {
    margin-bottom: 5px;
}
@media (max-width: 1024px) {
    #mp-interactive-tool .portfolio-chart-section {
        grid-template-columns: 1fr;
        gap: 0;
    }
    #mp-interactive-tool .characteristics-box {
        margin-bottom: var(--space-m);
    }
}
@media (max-width: 599px) {
    #mp-interactive-tool .fixed-tag > div {
        font-size: 12px;
    }
}

