/** @license CookieJSR v1.0.13
 * file: cookiesjsr.min.css
 *
 * Copyright (c) Joachim Feltkamp, Hamburg, Germany.
 *
 * This source code is licensed under the CC BY-ND license found in the
 * LICENSE file in the root directory of this source tree.
 */
.cookiesjsr-btn {
	align-items: center;
	background-color: #222a56;
	border: 2px solid #fff;
	border: 2px solid var(--btn-border-color, #fff);
	color: #fff;
	color: var(--btn-font-color, #fff);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 15px;
	justify-content: center;
	margin: .625em;
	min-height: 42px;
	line-height: 48px;
	opacity: .95;
	padding: 0 20px;
	text-decoration: none;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all .3s ease;
	white-space: nowrap;
}

.cookiesjsr-btn:hover {
	opacity: 0.8;
}

.cookiesjsr-btn.invert {
	background-color: #F5F5F5;
	color: #222A56;
}

.cookiesjsr-btn.important {
	background-color: #fff;
	background-color: var(--btn-prime-bg-color, #fff);
	border-color: #222A56;
	color: #222A56
}

.cookiesjsr-btn.important.invert {
	background-color: #222A56;
	color: #fff;
}

.cookiesjsr-links {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0 -.75em;
	padding: 0
}

@media (min-width:576px) {
	.cookiesjsr-links.links--row {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: left
	}

}

.cookiesjsr-links.links--row li {
	margin: 0;
	padding-left: .75em;
	padding-right: .75em;
	position: relative
}

.cookiesjsr-links.links--row li a {
	display: inline-block;
	line-height: 2em;
	margin: 0;
	padding: 0
}

.cookiesjsr-links.links--row li:first-child:before {
	content: none
}

@media (min-width:576px) {
	.cookiesjsr-links.links--row li:before {
		background-color: #515151;
		content: "";
		height: .3em;
		left: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translate(-50%, -40%);
		transform: translate(-50%, -40%);
		width: .3em
	}

}

.cookiesjsr-btn.denyAll {
	display: none
}

@media (min-width:1200px) {
	.cookiesjsr-btn.denyAll {
		display: inline-block
	}

}

.cookiesjsr-switch {
	background-color: #fff;
	border: 2px solid #E5E5E5;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	height: 24px;
	margin: 0;
	padding: 0;
	position: relative;
	transition: background-color .1s ease-in-out;
	width: 45px;
	width: var(--switch-width, 45px)
}

.cookiesjsr-switch:focus-within:before {
	border: 1px dotted #eee;
	border-radius: 10px;
	content: "";
	height: 100%;
	position: absolute;
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
	width: 100%
}

.cookiesjsr-switch:after {
	background-color: #515151;
	border-radius: 50%;
	content: "";
	display: block;
	height: 14px;
	left: 3px;
	position: absolute;
	top: 3px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	transition: left .1s ease-in-out;
	width: 14px;
}

.cookiesjsr-switch.active {
	
}

.cookiesjsr-switch.active:after {
	left: 22px;
	background-color: #3B813E;
}

.cookiesjsr-switch input[type=checkbox] {
	opacity: 0;
	position: absolute
}

.cookiesjsr-banner {
	align-items: start;
	background-color: #222A56;
	bottom: 0;
	color: #fff;
	color: var(--banner-font-color, #fff);
	display: flex;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	left: 0;
	max-height: calc(100vh - 100px);
	overflow: auto;
	padding: 80px 60px 40px 60px;
	position: fixed;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
	width: 100vw;
	z-index: 10000
}

@media(max-width: 600px){
	.cookiesjsr-banner {
		padding: 60px 30px 30px 30px;
}
}

.cookiesjsr-banner.active {
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

.cookiesjsr-banner a {
	color: #fff;
	color: var(--link-list-font-color, #fff)
}

.cookiesjsr-banner--action,
.cookiesjsr-banner--info {
	width: 100%
}

@media (min-width:768px) {
	.cookiesjsr-banner--info {
		width: 100%
	}

	.cookiesjsr-banner--action{
		width: 40%;
	}

}

.cookiesjsr-banner--info {
	margin-bottom: 1.25em;
	margin-bottom: var(--default-margin, 1.25em);
	max-height: calc(100vh - 100px - 2.5em);
	overflow: auto;
	padding: 0 1.25em;
	padding: 0 var(--default-margin, 1.25em)
}

.cookiesjsr-banner--text {
	display: block;
	font-size: 14px;
	font-weight: 300;
	font-family: "Neue Haas Grotesk Text Pro", sans-serif;
	color: #E2E2E2;
}

.cookiesjsr-banner--links {
	font-size: .85em;
	margin-top: .5em
}

.cookiesjsr-banner--action {
	display: flex;
	flex-direction: column;
	padding: 0
}

@media (min-width:1200px) {
	.cookiesjsr-banner--action {
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

}

.cookiesjsr-banner button.denyAll {
	display: inline-block
}

.cookiesjsr-service-groups {
	display: block;
	list-style: none;
	margin: 0 0 -1px !important;
	max-height: 100%;
	overflow: auto;
	padding: 0 !important;
	position: static !important
}

.cookiesjsr-service-group {
	line-height: 1.5em;
	list-style: none;
	position: static !important
}

.cookiesjsr-service-group--tab {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #F1F1F1;
	border: 0;
	border-bottom: 7px solid #E2E2E2;
	color: #343434;
	cursor: pointer;
	display: block;
	font-weight: 500;
	margin: 0;
	min-height: 3em;
	padding: 1em 1.25em;
	padding: 1em var(--default-margin, 1.25em);
	text-align: left;
	text-decoration: none;
	width: 100%
}

.cookiesjsr-service-group--tab:last-child {
	border-bottom: 0
}

@media (min-width:768px) {
	.cookiesjsr-service-group--tab {
		padding: 1em 3.25em 1em 1.25em;
		width: calc(30% + 2em)
	}

}

.cookiesjsr-service-group--content {
	display: none
}

@media (min-width:768px) {
	.cookiesjsr-service-group--content {
		height: 100%;
		overflow: auto;
		position: absolute;
		right: 0;
		top: 0;
		width: 65%
	}

}

.cookiesjsr-service-group--intro {
	padding: 30px 1.25em;
	font-family: "Neue Haas Grotesk Text Pro", sans-serif;
	font-size: 14px;
}

.cookiesjsr-service-group.active .cookiesjsr-service-group--tab {
	border-bottom: 7px solid #a91539;
}

.cookiesjsr-service-group.active .cookiesjsr-service-group--content {
	color: #515151;
	display: block;
	font-weight: 400;
	line-height: 2;
}

.cookiesjsr-service-group--services {
	margin: 0 !important;
	padding: 0 0 0 20px !important;
}

.cookiesjsr-service {
	align-items: center;
	background-color: #F1F1F1;
	display: flex;
	transition: background-color .3s ease;
	margin-bottom: 10px;
}

.cookiesjsr-service--description {
	padding: .625em 1.25em;
	width: calc(100% - 2.5em - 45px)
}

.cookiesjsr-service--description h3 {
	color: #515151;
	font-size: 1.125em;
	font-weight: 400;
	margin: 0
}

.cookiesjsr-service--links a {
	font-size: .75em
}

.cookiesjsr-service--links a,
.cookiesjsr-service--links a:active,
.cookiesjsr-service--links a:hover,
.cookiesjsr-service--links a:visited {
	color: #515151
}

.cookiesjsr-service--action {
	padding: .625em 1.25em;
	width: calc(2.5em + 45px)
}

.cookiesjsr-service--always-on {
	color: #0a0;
	color: var(--switch-always-on-font-color, #0a0);
	display: flex;
	justify-content: flex-end;
	text-align: right;
	white-space: nowrap
}

.cookiesjsr-service--always-on span {
	padding: 0 .5em
}

.cookiesjsr-layer {
	background: #fff;
	background: var(--layer-header-bg-color, #fff);
	display: block;
	height: 100vh;
	left: 50%;
	line-height: 1.5em;
	max-width: 100%;
	overflow: hidden;
	padding: 3.5em 0 4.5em;
	padding: var(--layer-header-height, 3.5em) 0 var(--layer-footer-height, 4.5em);
	position: fixed;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100vw;
	z-index: 314160
}

@media (min-height:668px) {
	.cookiesjsr-layer {
		height: 80vh;
		max-height: 650px
	}

}

@media (min-height:992px) {
	.cookiesjsr-layer {
		height: 70vh
	}

}

@media (min-width:768px) {
	.cookiesjsr-layer {
		width: 860px
	}

}

.cookiesjsr-layer--overlay {
	background: rgba(0, 0, 0, .4);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 314159
}

.cookiesjsr-layer--header {
	align-items: center;
	background: #fff;
	display: flex;
	height: 4em;
	justify-content: space-between;
	left: 0;
	margin: 0;
	padding: 0 1.25em 7px 1.25em;
	padding: 0 var(--default-margin, 1.25em);
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}

.cookiesjsr-layer--header:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 7px;
	background: transparent linear-gradient(90deg, #A91539 0%, #222A56 100%) 0% 0% no-repeat padding-box;
}

.cookiesjsr-layer--title {
	color: #294368;
	font-weight: 600;
	font-size: 20px;
}

.cookiesjsr-layer--close {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: none;
	border: 0;
	cursor: pointer;
	height: 1em;
	padding: 0;
	text-indent: -999em;
	width: 1em;
	z-index: 102;
	position: relative;
}

.cookiesjsr-layer--close:before{
	content: '+';
	position: absolute;
	left: 0;
	top: -8px;
	font-size: 30px;
	line-height: 1;
	transform: rotate(45deg);
	text-indent: initial;
	color: #294368;
	font-weight: 300;
}

.cookiesjsr-layer--body {
	background: #fff;
	background: var(--layer-body-bg-color, #fff);
	bottom: 4.5em;
	bottom: var(--layer-footer-height, 4.5em);
	left: 0;
	position: absolute;
	right: 0;
	top: 4em;
}

.cookiesjsr-layer--footer {
	background: #fff;
	bottom: 20px;
	display: flex;
	height: 5.5em;
	justify-content: flex-end;
	right: 0;
	padding: 0 1.25em;
	position: absolute;
	width: 100%
}

@media (min-width:768px) {
	.cookiesjsr-layer--footer {
		width: 65%;
		flex-direction: column;
	}

}

.cookiesjsr-layer--label-all {
	color: #515151;
	font-weight: 500;
	font-size: 18px;
	display: none
}

@media (min-width:768px) {
	.cookiesjsr-layer--label-all {
		display: block;
		padding-bottom: 10px;
	}

}

.cookiesjsr-layer--actions {
	align-items: center;
	display: flex;
	margin: -.625em;
	width: calc(100% + 1.25em)
}

@media (min-width:768px) {
	.cookiesjsr-layer--actions {
		width: calc(70% + .625em)
	}

}

.cookiesjsr-layer button.allowAll{
	order: 1;
}

.cookiesjsr-layer button.denyAll{
	order: 2;
}

.cookiesjsr-layer button.save{
	order: 3;
}

.cookiesjsr-layer button.allowAll,
.cookiesjsr-layer button.denyAll {
	display: none
}

@media (min-width:576px) {
	.cookiesjsr-layer button.allowAll,
	.cookiesjsr-layer button.denyAll {
		display: inline-block
	}

}

@media (max-width:576px) {
	.cookiesjsr-layer button.save {
		margin-left: auto;
		padding: 0 2em;
		width: auto
	}

}

#cookiesjsr {
	--default-margin: 1.25em;
	--font-size-reset: 1rem;
	--btn-font-color: #fff;
	--btn-border-color: #fff;
	--btn-bg-color: #004c93;
	--btn-prime-font-color: #004c93;
	--btn-prime-border-color: #fff;
	--btn-prime-bg-color: #fff;
	--btn-inv-font-color: #004c93;
	--btn-inv-border-color: #004c93;
	--btn-inv-bg-color: #fff;
	--btn-prime-inv-font-color: #fff;
	--btn-prime-inv-border-color: #004c93;
	--btn-prime-inv-bg-color: #004c93;
	--link-list-font-color: #fff;
	--link-list-separator-color: #fff;
	--banner-logo-offset: 100px;
	--banner-bg-color: #004c93;
	--banner-font-color: #fff;
	--layer-header-height: 3.5em;
	--layer-header-bg-color: #fff;
	--layer-header-font-color: #000f37;
	--layer-body-bg-color: #fff;
	--layer-tab-bg-color: #fff;
	--layer-tab-font-color: #000f37;
	--layer-tab-active-bg-color: #004c93;
	--layer-tab-active-font-color: #fff;
	--layer-bg-dark: #004c93;
	--layer-font-light: #fff;
	--layer-font-dark: #000f37;
	--layer-border-color: #e4e5e6;
	--layer-footer-bg-color: #fff;
	--layer-footer-font-color: #000f37;
	--layer-footer-height: 4.5em;
	--switch-border-color: #e4e5e6;
	--switch-handle-color: #fff;
	--switch-bg-off: #fff;
	--switch-bg-on: #0a0;
	--switch-width: 45px;
	--switch-height: 20px;
	--switch-always-on-font-color: #0a0;
	--switch-always-on-bg-color: #fff
}

.cookiesjsr--app {
	font-size: 1rem;
	font-size: var(--font-size-reset, 1rem)
}

body .cookiesjsr--app,
body .cookiesjsr--app *,
body .cookiesjsr--app:after,
body .cookiesjsr--app:before {
	box-sizing: border-box
}

/* end: cookiesjsr.min.css */