/* Local fee disclosure (AB#32098) - note + modal presentation */
@media (max-width: 767px) {
    /* centre the note under the price text on mobile */
    .local-fee-note {
        display: block;
        float: none;
        text-align: center;
    }

    /* Bootstrap 3 top-aligns modal dialogs; centre this one vertically on mobile */
    #localFeeModal .modal-dialog {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        width: 90%;
    }
}
