/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.custom-get-a-quote-form .custom-quote-submit{
	background-color: #0064e9;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    border-radius: 100px 100px 100px 100px;
    padding: 6px 50px 6px 50px;
    color: #FFF;
    border-color: #FFF;
	display: flex;
    align-items: center;
}
.custom-get-a-quote-form .custom-get-a-quote-form-main {
    display: grid;
    gap: 20px;
}
.custom-get-a-quote-form .flex_main{
    display: flex;
    width: 100%;
    gap: 20px;
}
.flex_main .field_div {
    width: 50%;
}
.custom-get-a-quote-form .field_div input:focus{
	background-color: #FFF;
}
.custom-get-a-quote-form .field_div input, .custom-get-a-quote-form .field_div textarea{
	background-color: #ffffff;
    border-radius: 10px 10px 10px 10px;	
	font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
	    color: #303030;
	min-height: 47px;
    padding: 6px 16px;
	border: 1px solid #69727d;
	outline: unset;
	
}
.custom-get-a-quote-form .field_div_full_row{
}
.invalid {
    border: 1px solid red !important;
    background-color: #0064e9;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Spinner inside button */
.custom-get-a-quote-form .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 5px;
}

/* Spinner overlay in middle of form */
.custom-get-a-quote-form .form-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.custom-get-a-quote-form .form-loader .spinner {
    width: 32px;               /* bigger spinner for overlay */
    height: 32px;
    border: 4px solid #0073aa; /* darker color to be visible */
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


/* Remove yellow autofill background */
.custom-get-a-quote-form .field_div input:-webkit-autofill,
.custom-get-a-quote-form .field_div input:-webkit-autofill:hover,
.custom-get-a-quote-form .field_div input:-webkit-autofill:focus,
.custom-get-a-quote-form .field_div input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* background color */
    -webkit-text-fill-color: #000 !important; /* text color */
    transition: background-color 5000s ease-in-out 0s; /* optional smooth fix */
}

/* For Firefox (optional) */
.custom-get-a-quote-form .field_div input:-moz-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
    -moz-text-fill-color: #000 !important;
}
