/*
 * Checkout form styles for Symbol API plugin.
 *
 * These rules hide the payment section initially and style the custom
 * "Book now" button and error highlighting. Adapted from the legacy
 * Symbol API plugin.
 */

#payment {
    display: none;
}

/* Custom checkout button styling */
#symbolTestButton {
    background: #ffb900 !important;
    padding: 25px;
    border: none !important;
    color: #fff;
    text-transform: capitalize;
    font-size: 25px;
    border-radius: 10px;
    letter-spacing: normal;
    width: 100%;
    cursor: pointer;
}

/* Highlight invalid inputs */
.field-error,
.woocommerce .input-text.field-error,
.checkout-guest-input .field-error,
.woocommerce select.field-error,
.woocommerce input.field-error,
.woocommerce textarea.field-error {
    border: 1px solid red !important;
}