/*
* 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%;
height:160px;
text-align:left;

margin: 0 !important;
padding: 1.5rem 3rem 2rem 3rem;

/*padding:23px 20px 15px 45px;*/
z-index: 999999;
opacity: 0;
visibility: hidden;
border-radius: 0;
transform: translateY(100%);
transition: all 500ms ease-out;

font-family: "OpenSans","Open Sans", 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: normal;
font-style: normal;
font-size:1em;
/*
background: #223973;
color: #e0e0e0;

border-top: 1px solid #C1C0BD;
background: #EAE8E5;
color: #444444;
*/
background: #242424;
color: #e0e0e0;
}
.cookiealert .atext {
text-align:left;
margin:0 120px 0 0!important;
display:inline;
}

.cookiealert.show {
opacity: 1;
visibility: visible;
transform: translateY(0%);
transition-delay: 1000ms;
}

.cookiealert .atext a,.cookiealert .atext a:link, .cookiealert .atext a:visited {
text-decoration: underline;
color:#c0c0c0!important;
}
.cookiealert .atext a,.cookiealert .atext a:active, .cookiealert .atext a:hover {
text-decoration: none;
color:#d0d0d0!important;
}

/* Button */
.cookiealert .acceptcookies {
/*vertical-align: baseline;*/
vertical-align: top;
float:right;
margin:0 80px 30px 20px;
padding:10px 30px;
min-width:72px;
text-align:center;
display:inline;

background: #aaaaaa;
border-radius: 5px;
transition: all 0.4s;

color: #eeeeee!important;
font-weight:bold;
border: 3px solid #aaaaaa;
}

.cookiealert .acceptcookies:hover {
background: #bbbbbb!important;
color: #fff!important;
border: 3px solid #cccccc;
cursor:pointer!important;
}

