.parsley-error {
	position: relative;
}
.parsley-error:hover {
	z-index:100;
}
.parsley-errors-list {
	position: absolute;
	top:100%;
	left:0;
	right:auto;
	z-index:10;
	background: rgba(255,255,255, 0.8);
	box-shadow: 0 6px 14px -2px #ccc;
	margin-bottom:5px;
}
.parsley-errors-list>* {
	/*display: none;*/
	padding:3px 10px;
	color: var(--primary-text-color);
	font-weight: 400;
	background:var(--yellow);
	font-size:11px;
	white-space: nowrap;
}
.parsley-errors-list>*+* {
	padding-top:0;
}
.parsley-errors-list:hover>* {
	display: block;
}
.parsley-error .parsley-errors-list:after {
	content: ' ';
	position: absolute;
	right: -30px;
	bottom:100%;
	top:auto;
	left:auto;
	z-index:30;
	width:24px;
	height:24px;
	/*background: url(/images/field_error.svg) right 0 no-repeat;*/
	cursor: help;
	margin-bottom: 3px;
	background-size:90%;
}