#gform_6 h3 {
    color: #25215D;
    font-family: "Aleo", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    margin: 20px 0 0;
}

.growth-confirmation {
    font-family: 'Segoe UI', Roboto, sans-serif;
    max-width: 700px;
    margin: 0 auto;
    color: #1A1A1A;
}

.growth-confirmation .toggle {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 10px;
}

.growth-confirmation .toggle-switch {
    width: 40px;
    height: 20px;
    background: #9C27B0;
    border-radius: 999px;
    margin-right: 10px;
    position: relative;
}

.growth-confirmation .toggle-switch::after {
    content: '';
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 22px;
}

.growth-confirmation .chart-box {
    background: #F9F7FB;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.growth-confirmation .chart-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.growth-confirmation .chart-pie {
    flex: 0 0 60%;
    max-width: 60%;
}

.growth-confirmation .chart-aside {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.growth-confirmation .chart-aside #weekly-amount-display {
    color: #25215D;
    font-family: "Aleo", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 110%;
}

.growth-confirmation .chart-legend {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.growth-confirmation .chart-legend li {
    display: flex;
    align-items: center;
}

.growth-confirmation .chart-legend span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.growth-confirmation #gap-line {
    margin-top: 40px;
    color: #1C1C1C;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.growth-confirmation #gap-line strong {
    color: #25215D;
    font-family: "Aleo", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
}

.growth-confirmation .tip-section h3 {
    color: #1C1C1C;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.growth-confirmation .tip-section ul {
    padding-left: 2em;
}

.growth-confirmation .tip-section li {
    margin-bottom: 14px;
}

.growth-confirmation .btn-group {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 50px 0;
}

.growth-confirmation .bottom-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.toggle-switch-wrapper {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 28px;
}

.toggle-switch-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
    outline: none!important;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: #cdcccd;
    border-radius: 999px;
    transition: .2s;
}

.toggle-slider::after {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 5px;
    top: 5px;
    background-color: white;
    border-radius: 50%;
    transition: .2s;
}

.toggle-switch-wrapper input:checked + .toggle-slider {
    background-color: #9C27B0;
}

.toggle-switch-wrapper input:checked + .toggle-slider::after {
    transform: translateX(17px);
}

#gform_submit_button_6 {
    display: none;
}