.et_pb_contact_form_container {
	display: flex;
	flex-direction: column;
}

.et_pb_contact_field {
	position: relative;
}

.et_pb_contact_form_label {
	position: relative;
	clear: both;
}

.et_pb_contact_field_options_title:after, .et_pb_contact_form_label:after {
	color: #ff0038;
	padding-left: 2px;
}

.et_pb_contact_form_container .et_pb_contact_field[data-type=select]:after {
	display: none !important;
	content: "\"\"";
}

div[data-type=datetime-picker] {
	gap: 0;
}

input[name^=et_pb_contact_hp_field_] {
	position: absolute !important;
	bottom: 0 !important;
	right: 0 !important;
	opacity: 0 !important;
}

.et_pb_contact_spinner {
	border: 4px solid rgba(0, 0, 0, .1);
	border-radius: 50%;
	border-top: 4px solid #2ea3f2;
	width: 20px;
	height: 20px;
	animation: spin 1s linear infinite;
	vertical-align: middle;
	float: left;
	margin-bottom: 10px;
	display: none;
}

@keyframes spin {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes et_pb_spin {
	from {
		-webkit-transform: rotate(0);
	}
	
	to {
		-webkit-transform: rotate(359deg);
	}
}

@-moz-keyframes et_pb_spin {
	from {
		-moz-transform: rotate(0);
	}
	
	to {
		-moz-transform: rotate(359deg);
	}
}

@-o-keyframes et_pb_spin {
	from {
		-o-transform: rotate(0);
	}
	
	to {
		-o-transform: rotate(359deg);
	}
}

@keyframes et_pb_spin {
	from {
		transform: rotate(0);
	}
	
	to {
		transform: rotate(359deg);
	}
}

.et_pb_rating_container .half svg {
	position: absolute;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}