#cookiebanner {
	z-index: 2147483645;
	box-sizing: border-box;
	width: 1000%;
	max-width: 100%;
	min-height: 100px;
	max-height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	overflow: auto;
	display: none;
	border-top: 1px solid #c4c4c4;
	box-shadow: 0 6px 20px 0 rgb(0 0 0 / 19%);
	animation: .5s ease-out 0s 1 slideInFromBottom;
}

@keyframes slideInFromBottom{
	0% {
		transform:translateY(100%)
	}
	100% {
		transform:translateY(0)
	}
}

#cookiebanner {
	background-color: #fff;
}

#c-wrapper {
	position: relative;
	max-width: 950px;
	margin: 0 auto;
	padding: 0 0 0 0;
}

#c-left {
	display: flex;
}

#cookiebanner .c-logo, #c-content {
	flex: auto-fit;
}

#cookiebanner .c-header {
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 25px;
	margin-bottom: 4px;
}

#cookiebanner p {
	color: #484848;
	margin-top: 0;
    margin-bottom: 1rem;
}

#cookiebanner p.c-message {
	font-size: 1.2em;
}

#c-right {
	float: right;
}

#cookiebanner a.c-button {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: inline;
	text-decoration: none;
	font-size: 1.2em;
	padding: 10px 30px;
	margin: 0 10px 10px 0;
	border-radius: 8px;
	text-align: center;
	width: auto;
	float: left;
}

#cookiebanner a.c-button {
    background-color: #004c45;
    color: #fff;
}

#cookiebanner a.c-link {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    margin-right: 20px;
    float: left;
    padding: 12px 0 10px;
}

#cookiebanner a.c-link {
    color: #999;
}

#cookiebanner a {
    text-decoration: none;
}

#cookiebanner a {
    color: #000;
}