/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 999;
	opacity: 0;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
	color: #ecf0f1;
	background-color: #024a98;
}
.cookiealert.show {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 1000ms;
}
.cookiealert a {
	color: #badbed;
	font-weight: 600;
}
.cookiealert a:hover,.cookiealert a:active,.cookiealert a:focus {
	color: #fff;
}
.cookiealert .acceptcookies {
	margin-left: 10px;
	vertical-align: baseline;
}
.cookiealert button {
	background-color: rgba(255, 255, 255, .6);
	border: solid 4px rgba(255, 255, 255, .3);
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
}
.cookiealert button span {
	font-size: 1rem;
	font-weight: 600;
	color: #024a98;
	line-height: 1rem;
	text-transform: uppercase;
	display: block;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	padding: .5rem 1rem;
}
.cookiealert button:hover,.cookiealert button:active,.cookiealert button:focus {
	color: #fff;
	background-color: rgba(255, 255, 255, .6);
	border: solid 4px rgba(255, 255, 255, .1);;
	cursor: pointer;
}
.cookiealert button:hover span,.cookiealert button:active span,.cookiealert button:focus span {
	color: #fff;
}
