/*
Theme Name: WpResidence
Theme URI: https://themeforest.net/user/wpestate
Description:WP Residence is a premium & responsive WordPress theme designed for Real Estate companies and independent agents.
Version: 5.0.9
Author: wpestate
Author URI: https://www.wpestate.org
Text Domain: wpresidence
Tags: white, one-column, two-columns,left-sidebar, right-sidebar, fluid-layout , custom-menu, theme-options, translation-ready
License:
License URI: 
---------------------------------------------------------------*/ 

/*
Staring with version 5.0 we swithc to Bootstrap 5.3 and Scss code. The compiled css code is /public/css/main.css
Please review this document https://help.wpresidence.net/article/wpresidence-theme-5-0-scss-css-and-bootstrap-integration-documentation/ for more details
*/

.wpcf7-form-control-wrap {
    textarea {
	border: 1px solid #dde4e9;
    width: 100%;
    background: #ffffff00 !important;
    border-style: solid;
    border-color: #ece1ce;
    border-width: 1px;
    font-size: 16px !important;
    font-family: 'Geologica';
    font-weight: 100;
    border-radius: 26px !important;
    margin: 5px;
    padding: 15px !important;
    text-transform: none !important;
		color: white;
        // Makes textareas full width of their container
    }

    input {
        	border: 1px solid #dde4e9;
			width: 100%;
			background: #ffffff00 !important;
			border-style: solid;
			border-color: #ece1ce;
			border-width: 1px;
			font-size: 16px !important;
			font-family: 'Geologica';
			font-weight: 100;
			border-radius: 26px !important;
			margin: 5px;
			padding: 15px !important;
			text-transform: none !important;
			color: white;
        // Makes text inputs full width of their container

        &[type="checkbox"] {
            width: 15px;
            // Sets a specific width for checkbox inputs
        }
    }

    textarea {
        border: 1px solid #dde4e9;
        // Adds a border to textareas
    }
}

input[type=checkbox]:checked:before {
    position: static !important;
}