/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	max-width: 300px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
	border: 1px solid #DC3C3C;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #000000;
    background: #FBFBFB;
}

.cookiealert.show {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
	background: #DC3C3C;
    margin-left: 10px;
    vertical-align: baseline;
}