/* Adjust style of form buttons when disabled/enabled
 * to go with bookings.js 
*/

/* Disabled state */
.gform_next_button[disabled], .gform_button[disabled] {
    background-color: rgb(151, 167, 166) !important;
    cursor: not-allowed !important;
    opacity: 0.75;
}

/* Hover only when ACTIVE */
.gform_next_button:not(:disabled):hover,
.gform_submit_button:not(:disabled):hover {
    background-color: rgb(151, 167, 166) !important;
    opacity: 1;
}

