<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# cookies
--------------------------------------------------------------*/

#cookie-notice {
	position: fixed;
	min-width: 100%;
	height: auto;
	z-index: 100000;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 20px;
	left: 0;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
	background-color: #565656;
}

#cookie-notice,
#cookie-notice * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

#notice-text a{
	color: #44aaee;
}
#notice-text a:hover{
	color: #3b8fc2;
}

#cookie-notice.animated {
	-webkit-animation-duration: 0.5s!important;
	animation-duration: 0.5s!important;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

#cookie-notice.animated.effect-none {
	-webkit-animation-duration: 0.001s!important;
	animation-duration: 0.001s!important
}

#cookie-notice .cookie-notice-container {
	display: block;
	color: #fff;
}

#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
}

.position-top {
	top: 0
}

.position-bottom {
	bottom: 0
}

.cookie-notice-container {
	padding: 40px;
	text-align: center;
	width: 100%;
	z-index: 2
}

.cookie-revoke-container {
	padding: 15px 30px;
	width: 100%;
	z-index: 1
}

.close-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -10px;
	width: 15px;
	height: 15px;
	opacity: .5;
	padding: 10px;
	outline: none
}

.close-icon:hover {
	opacity: 1
}

.close-icon:before,
.close-icon:after {
	position: absolute;
	content: ' ';
	height: 15px;
	width: 2px;
	top: 3px;
	background-color: #fff
}

.close-icon:before {
	transform: rotate(45deg)
}

.close-icon:after {
	transform: rotate(-45deg)
}

#cookie-notice .revoke-cookie {
	margin: 0
}

#cookie-notice .button {
	margin: 0 0 0 10px
}

.button.wp-default,
.button.bootstrap {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: .25px;
	line-height: 20px;
	margin: 0;
	text-align: center;
	text-transform: none;
	display: inline-block;
	cursor: pointer;
	touch-action: manipulation;
	white-space: nowrap;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
	padding: 8.5px 10px;
	line-height: 1
}

.button.wp-default:hover,
.button.bootstrap:hover {
	box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .05);
	text-decoration: none
}

.button.wp-default {
	color: #fff;
	background: #fbb03b
}

.button.bootstrap {
	color: #fff;
	background: #2a668a
}

.text-container {
	margin: 0 0 6px 0;
	width: 85%;
	text-align: left;
	padding: 6px 0;
}
.buttons-container {
	padding: 6px 0;
}

.text-container,
.buttons-container {
	display: inline-block;
	vertical-align: middle;
}

#cookie-notice.cookie-notice-visible.effect-none,
#cookie-notice.cookie-revoke-visible.effect-none {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

#cookie-notice.effect-none {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

#cookie-notice.cookie-notice-visible.effect-fade,
#cookie-notice.cookie-revoke-visible.effect-fade {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

#cookie-notice.effect-fade {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-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
	}
}

@media all and (max-width:900px) {
	.cookie-notice-container #notice-text {
		display: block;
		width: 95%;
	}
	.cookie-notice-container #notice-buttons {
		display: block;
		width: 100%;
	}
	#cookie-notice .button {
		margin: 0 5px 5px 5px
	}
}

@media all and (max-width:480px) {
	.cookie-notice-container,
	.cookie-revoke-container {
		padding: 15px 25px
	}
}
</pre></body></html>