/* With some of the responsive updates to Gravity Forms, there have been some
styling changes that have broken our forms layouts.  These revert those styling
changes back to the way they were */


/** Used for the "Find your nearest Real Property Managemnt form under hero **/
@media only screen and (min-width: 641px) {
    .gform_wrapper .gform_body {
        /* width: calc(100% + 16px); ADDED WITH NEW GFORMS - DO NOT WANT */
        width: auto!important;
    }
    .gform_wrapper .gform_body {
        /* width: calc(100% + 16px);  ADDED WITH NEW GFORMS - DO NOT WANT*/
        width: auto!important;
    }
}

/** Applies to the top blue dropdown form **/
.gform_wrapper ul {
    margin: 0!important;
    list-style-type: none;
}
/** zip code entry box in top form **/
#field_2_3 {
    /* padding-right: 16px; ADDED WITH NEW GFORMS - DO NOT WANT */
    padding-right: 0;
}
body .gform_wrapper ul li.gfield {
    margin-top: 0!important;
    padding-top: 0;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first,
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last,
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle {
    padding-top: 0!important;
}



/** Applies to the footer form submit button **/
/** Overriding our own styles **/
#footer-top .gform_widget .gform_footer {
    bottom: 15px;
}
#footer-top .gform_widget .gfield:nth-child(1) {
    margin-right: 10px;
}
/** fix for bullets on gforms **/
#site-main .gform_wrapper ul li:before {
    background-color: transparent;
}
