.gform_wrapper {
    font-family: "Dewi", Sans-serif;
}
.gform_heading {
    display: none;
}
.gform_wrapper h3 {
    margin-bottom: 0px !important;
}
.gfield_description {
    color: #5e5e5e;
    padding-top: 0px !important;
    margin-top: 0px !important;
}
.gsection {
    border-bottom: 0px !important;
}
.gsection_title {
    font-family: "IBM Plex Serif", Sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.gsection_description {
    padding: 0px !important;
    color: #888;
}
.gform_wrapper hr {
    border: 1px solid #e8e8e8 !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}
.gfield_label {
    font-weight: 500 !important;
}
.gform_wrapper input[type=email], .gform_wrapper input[type=number], .gform_wrapper input[type=password],  .gform_wrapper input[type=tel],.gform_wrapper input[type=text], .gform_wrapper input[type=url], .gform_wrapper textarea {
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    background: #f6f6f6;
}

.gfield_checkbox  .gform-field-label {
    font-size: 17px !important;
    margin-bottom: 5px !important;
    margin-top: 5px !important;
    margin-left: 5px !important;
}
.gform_button {
    display: none;
}
.gfield_description.instruction {
	display: none;
}	
.estimate-message {
	color: red;
	font-size: 13px;
}
input[type="checkbox"] {
	transform: scale(1.5);
	margin: 5px !important;		
}

/*============================ tooltip ============================*/
.tooltip {
	position: relative;		
}
.tooltip .gfield_label {
	position: relative;
	padding-right: 35px !important;
}
.tooltip .gfield_label::after {
	content: "?";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #ecedf8;
	color: #242748;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	line-height: 18px;
	font-family: Arial, sans-serif;
	pointer-events: none;
	cursor: pointer;
}
.tooltip .gfield_description {
    visibility: hidden;
	max-width: 13.125rem;
    background-color: #2e3649;
    color: #fff;
    text-align: center;
    position: absolute;
	left: 10px;	  
	bottom: 130%;
    z-index: 2;
    opacity: 0;
    transition: 0.2s ease;    
    font-size: 13px !important;
    border-radius: 10px;            
    box-shadow: 0 4px 10px rgb(18 25 97 / 8%);		
	padding: 0.625rem 1rem !important;    
}
.tooltip .gfield_description::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2e3649 transparent transparent transparent;
}
.tooltip .gfield_label:hover + .gfield_description,
.tooltip .gfield_description:hover {
    visibility: visible;
    opacity: 1;	  
}	