.center {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}
.clear {
	clear: both;
}

@media (max-width: 959px) {
	.center {
		width: 760px;
	}
}

@media (max-width: 759px) {
	.center {
		width: 93%;
		margin: 0 3.5%;
	}
}

.cookie-warning {
	position: fixed;
	z-index: 99999;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1em;
	background: white url(../img/common/cookie-warning/bg.png) no-repeat right 100px bottom;
	border-top: 1px solid #ccc;
	
	display: flex;
	flex-direction: row;
	align-items: center;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all 0.3s;
}
.cookie-warning.visible {
	opacity: 1;
	visibility: visible;
}
	.cookie-warning .text {
		flex-grow: 1;
		margin-right: 1em;
		font-size: 14px;
		font-weight: 300;
	}
		.cookie-warning .text a {
			text-decoration: none;
			color: #00aeff;
		}
		.cookie-warning .text a:hover {
			text-decoration: underline;
		}
	.cookie-warning .button {
		flex-shrink: 0;
	}