/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

    This file contains rules for
    PAYMENT 
    that implement the UU design system specifically for Sitevision

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Set the text color of disabled input fields to black to get maximum contrast */
.payment-input:disabled {
    color: #000000;
}

/* Hide the valid feedback (only show invalid feedback) for the payment form */
.payment-valid-feedback {
    display: none !important;
}

/* Set the width of a select addon to 50% to make it fit in the payment form */
.payment-has-select-addon {
    width: 50% !important;
}