.calculator-result ul {
    display: flex;
    text-align: left;
    justify-self: center;
    list-style-type: disc;
    unicode-bidi: isolate;
  /*  padding-left: 5.5rem;
    padding-right: 2rem;*/
    line-height: 18px;
    justify-content: space-between;
}

@media (max-width: 800px) {
    .calculator-result ul {
        flex-direction: column;
        padding-left: 3.5rem;
        padding-right: 0rem;
    }
}

.calculator-result ul li {
    position: relative;
    /*padding: 0 1rem;*/
    padding-right: 2rem;
    flex: 1; /* makes each li grow equally */
}

    .calculator-result
    ul li:first-child {
       /* min-width: 218px;*/
    }

    .calculator-result
    ul li:last-child {
        /* min-width: 212px;*/
    }

    .calculator-result ul li::marker {
        color: var(--bitdirect-yellow);
    }


    .calculator-result ul li label {
        color: var(--bitdirect-navy);
        font-family: Poppins;
        font-size: 1.05em;
        font-weight: 600;
    }

    .calculator-result ul li p {
        color: var(--bitdirect-gray);
        font-family: Poppins;
        font-size: 1.05em;
        margin-top: 15px !important;
        font-weight: 600;
        white-space: normal; /* ensure wrapping */
        word-break: break-word; /* break long words/URLs if necessary */
        margin-top: 5px;
    }


/*ul.calculator-result {
    display: flex;*/
/*    flex-direction: column;*/
/*text-align: left;
    justify-self: center;
    align-content: center;
    list-style-type: disc;
    unicode-bidi: isolate;
    max-width: 980px;
    line-height: 18px;*/
/*margin-left: 15px;*/
/*justify-content: space-between;
}*/



ul.calculator-result li::marker {
    color: var(--bitdirect-yellow);
}


ul.calculator-result li label {
    color: var(--bitdirect-navy);
    font-family: Poppins;
    font-size: 1.25em;
    font-weight: 600;
}

ul.calculator-result li p {
    color: var(--bitdirect-gray);
    font-family: Poppins;
    font-size: 1.05em;
    margin-top: 2px;
    font-weight: 600;
    white-space: normal; /* ensure wrapping */
    word-break: break-word; /* break long words/URLs if necessary */
}
