/*
 * 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: rgba(20,20,20,0.8);
	min-height: 15px;
    font-size: 14px;
	line-height: 15px;
	padding: 15px 10px 15px 10px;
}
.cookiealert a.cookieConsentOK {
	border-style: solid;
  	border-color: white;
	background-color: #F1D600;
	color: #0032b2;
	display: inline-block;
	border-radius: 5px;
	padding: 10px 60px 10px 60px;
	cursor: pointer;
	float: left;
	margin: 0 5px 0 0px;
}
.cookiealert a.cookieConsentOK:hover {
	background-color: #FFE51A;
	color: #0072B2;
	transition: 0.4s ease;
}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
