/* validation */
.error{
	display: none;
}
.form-col.field-error .error{
	display: block;
	color: red;
    font-size: 0.9em !important;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
}
.design_dark-blue .form-col.field-error .error{
	color: #F23527;
}
.agent-form .form-col.field-error .error {
	text-indent: 15px;
}
.agent-form .col-select .form-col.field-error .error {
	display: block;
	float: none;
	text-indent: initial;
	width: 100%;
	max-width: 217px;
	margin-left: auto;
	margin-right: auto;
}
.field-error input,
.field-error textarea,
.field-error select,
.field-error .container-yes,
.field-error .container-no,
.field-error .container-radio,
.field-error .select2-container--default .select2-selection--single {
	border-color: red !important;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(255,0,0,0.75);
	-moz-box-shadow: 0px 0px 7px 0px rgba(255,0,0,0.75);
	box-shadow: 0px 0px 7px 0px rgba(255,0,0,0.75);
}

input[disabled],
select[disabled]{
	background-color: #fff;
    cursor: not-allowed;
}
button[disabled]{
    cursor: not-allowed;
}
.form-col.processing .field-label{
  	position: relative;
}
.form-col.processing .field-label:after{
    content: '';
    border: 3px solid #ccc;
    border-radius: 15px;
    border-top: 3px solid #ff8927;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 190px;
    bottom: -31px;
    background-color: white;
	z-index: 1;
}
.col-state .form-col.processing .field-label:after {
    left: 111px;
}
.agent-form .form-col.processing .field-label:after,
.agent-form .col-state .form-col.processing .field-label:after {
	left: initial;
	top: 6px;
	right: -245px;
	bottom: initial;
}
@media (max-width: 767px) {
	.form-col.processing .field-label:after,
	.col-state .form-col.processing .field-label:after{
		left: auto;
		right: 15px;
	}
	
	.agent-form .form-col.field-error .error {
		text-indent: 15px;
		float: left;
		margin-top: 5px;
		width: 100%;
		text-align: center;
	}
}
/* LOADER */
@-webkit-keyframes spin {
  	0% { -webkit-transform: rotate(0deg); }
  	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  	0% { transform: rotate(0deg); }
  	100% { transform: rotate(360deg); }
}
/* LOADER END */

.form-col-agreement.field-error label,
.form-col-agreement.field-error label a {
    color: red;
}
/* validation END */