@charset "utf-8";
/* CSS Document */

/*
* COOKIE BOX
******************************************************/
.cookiebox {
	display: block;
	background: rgba(0,0,0,.7);
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 9;
}
.cookiebox.ok{
	display: none;
}
.cookie-content {
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 16px 0;
	max-width: 980px;
	margin: auto;
}
.cookie-text {
	color: #fff;
	max-width: 810px;
	font-size: 1.3rem;
}
.cookie-link {
	color: #fff;
	font-size: 1.3rem;
	margin-top: 0.8em;
}
.cookie-link a {
	color: #fff;
	text-decoration: underline;
}
.cookie-link a:hover {
	color: #fff;
	text-decoration: none;
}
.cookie-consent-button {
	display: block;
	background: #763F49;
	color: #ffffff;
	width: 100px;
	height: 40px;
	line-height: 40px;
	margin: auto 0;
	padding: 0 20px;
	text-align: center;
	cursor: pointer;
}
@media screen and (min-width:769px) and (max-width:1080px) {
	.scrolltop {
		display: none!important;
	  }
}
@media screen and (max-width:768px) {
	.cookie-content {
		padding: 16px 8px;
		max-width: inherit;
	}
	.cookie-consent-button {
		margin: 0;
		position: absolute;
		bottom: 10px;
		right: 10px;
		font-size: 1.4rem;
		width: 90px;
		height: 30px;
		line-height: 30px;
	}
}