/*
 * 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: 999999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: rgba(0, 0, 0, 0.8);    

}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookie-button-container {
	display: flex;
	align-self: center;
	justify-content: flex-end;
}

@media screen and (max-width: 768px) {
	.cookiealert .acceptcookies {
		margin-top: 10px;
	}

	.cookie-button-container {
		justify-content: center;
		width: 100%;
	}	
}

