.cost-calculator__result {
    display: none;

    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;

    row-gap: 90px;
}

.cost-calculator__content.showing-result *:not(.show-result) {
    display: none;
}

/* Wrapper */

.cost-calculator__result-wrapper {
    width: 100%;
    max-width: 600px;
    height: 300px;

    padding: 0 80px;

    border-radius: 40px;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;
    row-gap: 35px;

    overflow-y: auto;
}

.cost-calculator__result-cost {
    font-weight: 700;
}

.cost-calculator__result-title {
    font-weight: 500;
    text-align: center;
}

