.form-wrapper {
	position: relative;
}

.form-wrapper .ajax-loader {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.7);
	background-image: url('../images/preloader.svg');
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 10;
}

.ajax-response.error {
	margin-top: 1em;
	margin-bottom: 1em;
	padding: .75rem .5rem;
  border: none;
	border-left: 4px solid #dc3545;
	background: #fff;
	color: #dc3545;
  box-shadow: none;
}

.ajax-response.success { 
	margin-top: 1em;
	margin-bottom: 1em;
	padding: .75rem .5rem;
  border: none;
	border-left: 4px solid #28a745;
	background: #fff;
	color: #28a745;
}