/* CF7 Styles */
.wpcf7{
  direction: unset !important;
  position: relative;
}
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
.wpcf7 .ajax-loader {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d;
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-100%);
}
.wpcf7 .ajax-loader::before {
  content: '';
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes spin {
  from {
	transform: rotate(0deg);
  }

  to {
	transform: rotate(360deg);
  }
}

.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}
.wpcf7 form.submitting .wpcf7-submit{
  pointer-events: none;
}
/* End CF7 Styles */