.fav_form { position: relative }
.fav_form-hidden { display: none !important; }
.fav_form-send { cursor: pointer; }

.fav_form-input-error { color: #ff0000 !important; }
.fav_form-input-error::placeholder { color: #ff0000 !important; }
.fav_form-input-error::-webkit-input-placeholder { color: #ff0000 !important;  }
.fav_form-input-error::-moz-placeholder { color: #ff0000 !important;  }
.fav_form-input-error:-moz-placeholder { color: #ff0000 !important;  }
.fav_form-input-error:-ms-input-placeholder { color: #ff0000 !important;  }

.fav_form-error > span {
	display: block;
	margin: 0 0 20px 0;
	background-color: #ffeeee;
	border: 0;
	border-left: 4px solid #ff0000;
	font-size: 16px;
	font-weight: 400;
	padding: 13px 20px 13px 24px;
	line-height: 1.4;
	letter-spacing: -.11px;
	color: #252525;
}

.fav_form-message > span {
	display: block;
	margin: 10px 0;
	background-color: #dbfbdc;
	border: 0;
	border-left: 4px solid #3caa53;
	font-size: 16px;
	font-weight: 400;
	padding: 13px 20px 13px 24px;
	line-height: 1.4;
	letter-spacing: -.11px;
	color: #252525;
}

.fav_form-pattern {
	width: 100%;
	height: 100%;
	z-index: 1;
	display: none;
	position: absolute;   
	background: rgba(255, 255, 255, 0.3);
	left: 0;
	top: 0;
}

.fav_form-pattern::after { 
	content: '';  
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100px;
	height: 15px;
	margin: auto;
	position: absolute;
	display: inline-block;    
	background: url('./loading.svg');
	background-size: cover;
	background-position: center;
}

.fav_form-pattern-active {
    width: 100%;
    height: 100%;
	z-index: 1;
	display: block;
    position: absolute;   
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    top: 0;
}