#cookie-notice {
	position: fixed;
	min-width: 100%;
	height: auto;
	z-index: 100000;
	left: 0;
	font-weight: 400;
	font-family: "Fira Sans" -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue",
		sans-serif;
}
#cookie-notice,
#cookie-notice * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#cookie-notice.cn-animated {
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
#cookie-notice.cn-animated.cn-effect-none {
	-webkit-animation-duration: 0.001s !important;
	animation-duration: 0.001s !important;
}
#cookie-notice .cookie-notice-container {
	display: flex;
}
#cookie-notice.cookie-notice-hidden .cookie-notice-container {
	display: none;
}
#cookie-notice .cookie-revoke-container {
	display: block;
}
#cookie-notice.cookie-revoke-hidden .cookie-revoke-container {
	display: none;
}
.cn-position-top {
	top: 0;
}
.cn-position-bottom {
	bottom: 0;
}
.cookie-notice-container {
	display: flex;
	align-items: center;
	position: relative;
	width: 1320px;
	margin: 0 auto;
	padding: 16px 0;
}
.cn-notice-text {
	font-size: 14px;
	margin: 0 16px 0 0;
}
.cn-text-container {
	margin: 0 16px 0 0;
	font-family: "Fira Sans";
	font-size: 14px;
}

.cookie-revoke-container {
	padding: 15px 30px;
	width: 100%;
	z-index: 1;
}
.cn-close-icon {
	display: none;
}
.cn-button {
	width: 119px;
	height: 42px;
	margin: 0;
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
	z-index: 6;
}
.cn-button:after {
	position: absolute;
	content: "";
	width: 0;
	bottom: 0;
	left: auto;
	right: -15%;
	transition: 0.5s;
	transform: skewX(25deg);
	background: #173dad;
	height: 100%;
	z-index: -1;
}
.cn-button:first-child {
	margin-bottom: 16px;
	border-radius: 0;
	letter-spacing: 0;
}
.cn-button:nth-child(2) {
	background-color: transparent !important;
	border: 2px solid #198de0;
	color: #198de0;
}
.cn-button:nth-child(2):hover {
	border: 2px solid #173dad;
	color: #fff;
}
.cn-button:hover:after {
	width: 135%;
	transition: 0.5s;
	transform: skewX(25deg);
	left: -25%;
}

#cookie-notice .cn-revoke-cookie {
	margin: 0;
}
#cookie-notice .cn-button {
	display: block;
}
#cookie-notice .cn-button:not(.cn-button-custom) {
	font-family: "Fira Sans" -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue",
		sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	touch-action: manipulation;
	white-space: nowrap;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	text-decoration: none;
}

.cn-text-container,
.cn-buttons-container {
	display: inline-block;
}
#cookie-notice.cookie-notice-visible.cn-effect-none,
#cookie-notice.cookie-revoke-visible.cn-effect-none {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
#cookie-notice.cn-effect-none {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
#cookie-notice.cookie-notice-visible.cn-effect-fade,
#cookie-notice.cookie-revoke-visible.cn-effect-fade {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
#cookie-notice.cn-effect-fade {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
#cookie-notice.cookie-notice-visible.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-effect-slide {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}
#cookie-notice.cn-effect-slide {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}
#cookie-notice.cookie-notice-visible.cn-position-top.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-position-top.cn-effect-slide {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}
#cookie-notice.cn-position-top.cn-effect-slide {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@media (max-width: 1400px) {
	.cookie-notice-container {
		width: 1140px;
	}
}
@media (max-width: 1279px) {
	.cookie-notice-container {
		width: 720px;
	}
}
@media (max-width: 767px) {
	.cookie-notice-container {
		width: 343px;
		flex-direction: column;
		align-items: flex-end;
	}
	.cn-text-container {
		margin: 0 0 16px 0;
	}
}
@media (max-width: 374px) {
	.cookie-notice-container {
		width: 90%;
	}
}
