/* Validation */
.error,
.error .msg_empty {
	display: none;
}
.form-col.field-error {
	*margin-bottom: -10px;
}
.form-col.field-error .field-label {
	margin-top: 5px;
	margin-bottom: 1px;
}
.form-col .error,
.form-col .error-empty {
	display: none;
	color: red;
	font-size: 12px !important;
	font-weight: 500;
	line-height: normal;
	margin-top: 0;
	position: relative;
	*top: -4px;
	margin-bottom: 0;
	text-align: left;
}
.form-col.field-error .error,
.form-col.field-error .error-empty {
	display: inline-block;
}
.form-col.field-error-empty .error-empty {
	display: inline-block;
}
.form-col.field-error .radio-wrapper + p.error {
	margin-top: -7px;
}
.form-col.field-error .two_columns + p.error {
	margin-top: 7px;
}
.form-col abbr.required {
	color: red;
}
.form-col [class*="error"]:before {
	content: '*';
	font-size: 14px;
	margin-right: 3px;
	position: relative;
	top: 3px;
}

.form-col[class*="field-error"] .select2-selection--single,
.form-col[class*="field-error"] .radio + label:before,
.form-col[class*="field-error"] input,
.form-col[class*="field-error"] textarea,
.form-col[class*="field-error"] select {
	border: 1px solid red !important;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255,0,0,0.75) !important;
	-moz-box-shadow: 0px 0px 5px 0px rgba(255,0,0,0.75) !important;
	box-shadow: 0px 0px 5px 0px rgba(255,0,0,0.75) !important;
}


.form-col input[data-type="zip"].valid {
	background-image: url(../img/icons/check-icon.svg);
	background-size: 21px 18px;
	/* background-color: #FFFFFF; */
	background-repeat: no-repeat;
	background-position-x: 94%;
	background-position-x: calc(100% - 15px);
	background-position-y: center;
	outline: none;
}
.zipcodeform .form-col input[data-type="zip"].valid {
	background-position-x: calc(100% - 60px);
}
.contact_page .zipcodeform .form-col input[data-type="zip"].valid,
.article_page .zipcodeform .form-col input[data-type="zip"].valid {
	/* background-image: url(../img/icons/check-circle.svg); */
	/* background-size: 28px 28px; */
}

.form-col.valid .field-label,
.form-col.processing .field-label {
	position: relative;
}
.form-col.processing .field-label input:disabled,
.form-col.processing .field-label select:disabled {
	background-color: #f2f2f2;
	background-image: none;
}
.form-col.processing .field-label:after {
	content: '';
	border: 3px solid #ccc;
	border-radius: 15px;
	border-top: 3px solid #F6921E;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	position: absolute;
	width: 20px;
	height: 20px;
	right: 11px;
	bottom: 12px;
	background-color: transparent;
}
form#form_page .form-col.processing .field-label:after {
	right: 8px;
	bottom: 7px;
}
.form-col.processing .field-select,
.form-col.processing .select2-container--default .select2-selection--single .select2-selection__arrow b {
	background-image: none;
}
@-webkit-keyframes spin {
  	0% { -webkit-transform: rotate(0deg); }
  	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  	0% { transform: rotate(0deg); }
  	100% { transform: rotate(360deg); }
}



/* Zip Form */
.zipcodeform .form-col.field-error .error {
	background-color: #fff;
	border-radius: 4px;
	width: max-content;
	padding: 4px 10px;
	position: absolute;
	left: 50%;
	top: auto;
	bottom: -8px;
	-webkit-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	box-shadow: 0px 2px 3px 1px rgb(0 0 0 / 25%);
	z-index: 1;
}
.zipcodeform .form-col.field-error .error:before {
	content: '';
	display: block;
	position: absolute;
	top: -5px;
	left: 48%;
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	background: #fff;
	box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.08);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	z-index: -1;
}
/*
.section-zip .zipcodeform .form-col.field-error .error {
	background-color: white;
	padding: 5px 10px 4px;
	border-radius: 4px;
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
}
.section-zip .zipcodeform .form-col.field-error .error:after {
	content: "";
	position: absolute;
	top: -5px;
	left: 17px;
	width: 10px;
	height: 10px;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.section-zip .form-col input[data-type="zip"].valid {
	background: url(../img/icons/check-icon.svg) no-repeat 100% center;
	background-size: 21px 18px;
	background-color: #fff;
	background-position-x: 95%;
	background-position-x: calc(100% - 16px);
	outline: none;
}
/* Zip Form END */


