@media screen {
	#cookie-hint {
		position: fixed;
		right: 0;
		left: 0;
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
		color: #333;
		font-family: Helvetica, Arial, sans-serif;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		background: #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-transition: -webkit-transform .5s linear;
		-moz-transition: -moz-transform .5s linear;
		transition: transform .5s linear;
		z-index: 100000;
	}
	#cookie-hint.cookie-hint--top {
		top: 0;
		-webkit-transform: translateY(-110%);
		-moz-transform: translateY(-110%);
		transform: translateY(-110%);
	}
	#cookie-hint.cookie-hint--bottom {
		bottom: 0;
		-webkit-transform: translateY(110%);
		-moz-transform: translateY(110%);
		transform: translateY(110%);
	}
	#cookie-hint.is--visible {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	#cookie-hint * {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#cookie-hint .cookie-hint--container {
		position: relative;
		max-height: 100vh;
		padding: 20px;
		text-align: left;
		-webkit-box-shadow: 0 0 10px 0 #666;
		box-shadow: 0 0 10px 0 #666;
		overflow-y: auto;
	}
	#cookie-hint .cookie-hint--title {
		margin: 0 0 10px;
		padding: 0;
		color: #333;
		font-family: Helvetica, Arial, sans-serif;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px;
		text-transform: none;
		letter-spacing: initial;
	}
	#cookie-hint p {
		margin: 0 0 10px;
		padding: 0;
		font-size: 14px;
		line-height: 20px;
	}
	#cookie-hint p:last-of-type {
		margin: 0;
	}
	#cookie-hint a {
		color: #1874cd;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		background: none;
		text-decoration: none;
		outline: 0;
		word-break: break-all;
	}
	#cookie-hint a:hover,
	#cookie-hint a:focus {
		color: #000;
	}
	#cookie-hint #cookie-hint--accept {
		display: block;
		height: 40px;
		margin: 20px 0 0;
		padding: 0 10px;
		line-height: 40px;
		text-align: center;
		color: #fff;
		background: #1874cd;
		border-radius: 4px;
		word-break: normal;
	}
	#cookie-hint #cookie-hint--accept:hover,
	#cookie-hint #cookie-hint--accept:focus {
		background-color: #1c86ee;
	}

	.cookie-hint--consent {
		margin: 20px 0 0;
	}
	.cookie-hint--consent-group {
		overflow: hidden;
	}
	.cookie-hint--consent-group + .cookie-hint--consent-group {
		margin: 20px 0 0;
	}
	.cookie-hint--consent .cookie-hint--consent-checkbox {
		float: left;
		position: relative;
		width: 60px;
		height: 20px;
	}
	.cookie-hint--consent .cookie-hint--consent-name {
		float: left;
		max-width: 120px;
		margin: 0 10px;
		color: #000;
		font-size: 14px;
		font-weight: 700;
		text-overflow: ellipsis;
		white-space: pre;
		cursor: pointer;
		-webkit-user-select: none;
		user-select: none;
		overflow: hidden;
	}
	.cookie-hint--consent .cookie-hint--consent-text {
		margin: 0 0 0 200px;
	}

	.cookie-hint--consent-checkbox * {
		cursor: pointer;
	}
	.cookie-hint--consent-checkbox input[type="checkbox"] {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		opacity: 0;
	}
	.cookie-hint--consent-checkbox .cookie-hint--on-off {
		display: block;
		width: 60px;
		height: 20px;
		border: 2px solid red;
		background: #fff;
	}
	.cookie-hint--consent-checkbox .cookie-hint--on,
	.cookie-hint--consent-checkbox .cookie-hint--off {
		width: 28px;
		height: 16px;
		background: none no-repeat scroll 50% 50%;
		background-size: cover;
	}
	.cookie-hint--consent-checkbox .cookie-hint--on {
		display: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 16'%3E%3Cpath fill='%23fff' d='M22.5 3l-1.3-1.3-10 10-4.4-4.4-1.3 1.4 5.7 5.6z'/%3E%3C/svg%3E");
		background-color: green;
	}
	.cookie-hint--consent-checkbox .cookie-hint--off {
		display: block;
		margin-left: 28px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 16'%3E%3Cpath fill='%23fff' d='M20.3 3L19 1.7l-5 5-5-5L7.7 3l5 5-5 5L9 14.3l5-5 5 5 1.3-1.3-5-5z'/%3E%3C/svg%3E");
		background-color: red;
	}
	.cookie-hint--consent-checkbox input[type="checkbox"]:checked + .cookie-hint--on-off {
		border-color: green;
	}
	.cookie-hint--consent-checkbox input[type="checkbox"]:checked + .cookie-hint--on-off .cookie-hint--on {
		display: block;
	}
	.cookie-hint--consent-checkbox input[type="checkbox"]:checked + .cookie-hint--on-off .cookie-hint--off {
		display: none;
	}

	.cookie-hint--consent-checkbox input[type="checkbox"]:disabled + .cookie-hint--on-off {
		opacity: 0.5;
	}

	#cookie-hint.is--wide {
		max-width: none;
	}
	#cookie-hint.is--wide .cookie-hint--container {
		padding: 20px 100px 20px 20px;
	}
	#cookie-hint.is--wide #cookie-hint--accept {
		position: absolute;
		right: 20px;
		bottom: 20px;
		width: 60px;
	}
}

@media screen and (max-width: 720px) {
	#cookie-hint .cookie-hint--container,
	#cookie-hint.is--wide .cookie-hint--container {
		padding: 10px;
	}
	#cookie-hint.is--wide #cookie-hint--accept {
		position: static;
		width: auto;
	}

	.cookie-hint--consent .cookie-hint--consent-name {
		max-width: none;
	}
	.cookie-hint--consent .cookie-hint--consent-text {
		clear: both;
		margin: 0;
		padding: 10px 0 0;
	}
}

@media print {
	#cookie-hint {
		display: none !important;
	}
}
