/*======================================
Theme Name: Fab Finds Estate Sales Child Theme by Rob Hurwich
Theme URI: https://www.hscooperative.com/
Description: Divi Child Theme
Author: Rob Hurwich
Author URI: https://www.hscooperative.com/
Author Email: rob@hscooperative.com
Template: Divi
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
======================================*/

 /* ===== NOTES ==================================================================
 * 
 * 
 * 
 * =============================================================================== */

/*add your custom CSS below this line*/

/* STYLING OF THE FOOTER CONTACT FORM */

/* Reduce vertical margin between rows */
.footer-form .wpforms-field-container .wpforms-field {
    padding-bottom: 4px !important; /* Adjust this value to control row spacing */
	padding-top: 4px !important;
}

/* Reduce size of placeholder text and make it darker */
/* Target placeholder with more specificity */
.footer-form input::placeholder,
.footer-form textarea::placeholder {
    font-size: 13px !important; /* Adjust font size */
	color: #40403f !important; /* Adjust to desired color */
	opacity: 1 !important;
}

/* Reduce font size for user-entered text */
.footer-form input,
.footer-form textarea {
    font-size: 13px !important; /* Adjust to your preferred size */
	color: #000 !important; /* Ensure the text is a solid black for readability */
}

/* Reduce horizontal spacing between fields on the same row */
.footer-form .wpforms-one-half {
    margin-left: 1px !important; /* Adjust spacing between fields */
	margin-right: 1px !important;
	padding-right: 1px !important;
} 

/* Ensure the fields align flush with the container */
.footer-form .wpforms-one-half {
    width: calc(50% - 2px) !important; /* Adjust width dynamically to account for margin */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.footer-form .wpforms-one-half:last-child {
    margin-right: 0 !important; /* Remove any right margin from last field */
}

/* STYLING OF BUTTON ON BOTH CONTACT FORMS */

/* Regular button color */
.form-button {
    background-color: #d33939 !important; /* Regular background color */
    font-size: 16px; /* Adjust font size if needed */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover button color */
.form-button:hover {
    background-color: #d95252 !important; /* Hover background color */
}

/* STYLING OF THE CONTACT PAGE CONTACT FORM */

/* Reduce vertical margin between rows */
.contact-form .wpforms-field-container .wpforms-field {
    padding-bottom: 4px !important; /* Adjust this value to control row spacing */
	padding-top: 4px !important;
}


/* Hides the "No Results Found" message in the blog module */
.et_pb_blog_0 .entry {
    display: none !important;
}


