/**
 * ITSEPay Calculator UI States 
 */

/* The base style for your button */
#calc_btn {
    background-color: #000f9f;
    color: #ffffff;
    transition: background-color 0.2s ease-in-out;
}

/* The loading state triggered via JavaScript during calculation requests */
#calc_btn.is-loading {
    background-color: #475569 !important;
    cursor: not-allowed;
}