/* Add here all your CSS customizations */

.fieldError {
  border: 1px solid red;
}

/* cookies*/
.cookieInfo {
	padding: 4px 0;
	/*opacity: 0.85;*/
	/*filter: alpha(opacity=85);*/
	color: white;
	background-color: rgba(119, 119, 119, 0.55);
	font-size: 12px;
	left: 0;
	position: fixed;
	text-align: center;
	bottom: 0;
	width: 100%;
	z-index: 100;
}
.cookieInfo a {
	color: #18B1FB;
}
.cookieInfo a:hover {
	color: #004F76;
}

.blink {
	animation: blink 2s steps(5, start) infinite;
	-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
	to {
		visibility: hidden;
	}
}
@-webkit-keyframes blink {
	to {
		visibility: hidden;
	}
}