.inner-gf-price-breakdown {
    width: 100%;
    max-width: 520px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.inner-gf-price-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.inner-gf-price-item:last-child {
    border-bottom: 0;
    background: #f5f5f5;
}

.inner-gf-price-label {
    text-align: left;
}

.inner-gf-price-value {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.inner-gf-price-item:last-child .inner-gf-price-label,
.inner-gf-price-item:last-child .inner-gf-price-value {
    font-size: 1.05em;
}

.total-inner-cost {
    font-size: 1.1em;
}

/* Mobile */
@media (max-width: 480px) {
    .inner-gf-price-item {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 10px 12px;
    }

    .inner-gf-price-breakdown {
        font-size: 14px;
    }
}



/* Gravity Forms - custom circular radio buttons */
.gform_wrapper .gfield_radio input[type="radio"].gfield-choice-input {
    appearance: none !important;
    -webkit-appearance: none !important;

    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    aspect-ratio: 1 / 1;

    padding: 0 !important;
    margin: 0;

    flex: 0 0 22px;

    border: 2px solid #888;
    border-radius: 50% !important;
    background: #fff;

    display: inline-grid;
    place-content: center;

    cursor: pointer;
    box-sizing: border-box !important;
}

/* Inner selected circle */
.gform_wrapper .gfield_radio input[type="radio"].gfield-choice-input::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5548ff;

    transform: scale(0);
    transition: transform 0.15s ease;
}

/* Selected */
.gform_wrapper .gfield_radio input[type="radio"].gfield-choice-input:checked {
    border-color: #5548ff;
}

.gform_wrapper .gfield_radio input[type="radio"].gfield-choice-input:checked::before {
    transform: scale(1);
}

/* Answer text */
.gform_wrapper .gfield_radio .gchoice label {
    font-weight: 400 !important;
    cursor: pointer;
}


/* Space between radio answers */
.gform_wrapper .gfield_radio .gchoice {
    margin-bottom: 7px;
}

/* No unnecessary space after the last answer */
.gform_wrapper .gfield_radio .gchoice:last-child {
    margin-bottom: 0;
}



.gform_wrapper .gfield--width-half {
    align-self: center;
}

/* Remove default UL vertical spacing */
.gform_wrapper ul.disc-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
}

/* Normalize list item */
.gform_wrapper ul.disc-list li {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.5;
}



.gform_wrapper a {
    color: #5548ff;
}

.gform_wrapper a:hover {
    color: #6284b3;
}


.gform_wrapper.gravity-theme fieldset {
    margin: 0 0 20px 0 !important;
}