/* contact form css */
span.wpcf7-not-valid-tip {
	display: none!important;
}
.wpcf7-not-valid {
	border: 1px solid #FF0000!important;
	color: #FF0000!important;
}
.wpcf7-not-valid ::placeholder {
	color: #FF0000!important;
}
.wpcf7-display-none {
	display: none!important;
}
.wpcf7-form {
	position: relative;
}
.ajax-loader {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	background-image: none!important;
	background: #01000094;
	border-radius: 8px;
	display: none;
	margin: 0!important;
}
.ajax-loader.is-active {
	display: block;
}
.ajax-loader::before {
	content: '';
	display: block;
	border: 3px solid var(--theme-color-very-light);
	border-radius: 50%;
	border-top: 3px solid var(--theme-color-light);
	width: 36px;
	height: 36px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	background-image: none;
	position: absolute;
	top: calc(50% - 18px);
	left: calc(50% - 18px);
}
.wpcf7-response-output {
	display: none!important;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}