@charset "utf-8";
/* CSS Document */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
    background: #000;
  }
.cookiealert.show {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
  	padding: 10px;
    text-align: center;
}

.cookiealert a {
    text-decoration: underline;
  	color: #328bc3;
}
.cookiealert-btn{
  	background: #328bc3;
  	padding: 5px 15px;
  }
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
