/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


/* This styles the heading section of the form. */
.gform_heading {
    margin-bottom: 50px !important;
}
/* This styles all links in form. */
.gform_wrapper a {
    color: var(--black);
    text-decoration: underline;
}  
/* This styles the submit button. */
.gform_wrapper input[type=button], .gform_wrapper input[type=submit] {
    background-color: var(--primary) !important;
    color: var(--black) !important;
}
/* This styles is for the submit button on hover. */
.gform_wrapper input[type=button], .gform_wrapper input[type=submit]:hover {
    background-color: var(--primary-semi-light) !important;
}

/* This styles the previous button. */
.gform_wrapper .gform_previous_button.button, .gform_wrapper .gform_save_link.button {
    background-color: var(--primary-light) !important;
}

.gform_wrapper .gform_previous_button.button, .gform_wrapper .gform_save_link.button:hover {
    background-color: var(--primary) !important;
}

/* This styles the form description */
.gform_description {
    color: var(--primary-ultra-dark) !important;
}

/* This styles the required asterisk */
.gform_wrapper .gfield_required {
    color: var(--accent);
}
/* This styles Choises */
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li {border: 1px solid red !important;
}