

:root {
	/*--button-orange: #ec691b;*/
	/*--hover-orange: #d65712;*/
	/*--button-blue: #0c487d;*/
	/*--hover-blue: #003562;*/

	--theme-orange: #ec691b;
	--theme-blue: #003562;
	--theme-light: #f5f5f5;
}


@-webkit-keyframes up_and_down {
	0% {-webkit-transform: translateY(0px);transform: translateY(0px);}
	45% {-webkit-transform: translateY(-20px);transform: translateY(-20px);}
	100% {-webkit-transform: translateY(0px);transform: translateY(0px);}
}
@keyframes up_and_down {
	0% {-webkit-transform: translateY(0px);transform: translateY(0px);}
	45% {-webkit-transform: translateY(-20px);transform: translateY(-20px);}
	100% {-webkit-transform: translateY(0px);transform: translateY(0px);}
}

.relative {
	position: relative;
}


div.pagination.basic .prev,
div.pagination.basic .next {
	display: none !important;
}

div.pagination {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 5px;
}

div.pagination > a,
div.pagination > span {
	color: #999;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	min-width: 34px;
	min-height: 34px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

div.pagination > a {
	color: #999;
	background: #f7f7f7;
}

div.pagination > a:hover {
	color: #000;
}

div.pagination > .dots {

}
div.pagination > .current {

}





/* SVG */

svg {
	width: 100%;
	height: 100%;
}


/* Icons */

i.icon {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-style: normal;
}

i.icon:not([class*="size"]) {
	width: 32px;
	height: 32px;
}

i.icon:not(.default) svg,
i.icon:not(.default) svg path {
	fill: currentColor;
}

i.icon svg.fill,
i.icon svg.fill path {
	fill: currentColor;
}

i.icon svg.stroke,
i.icon svg.stroke path {
	stroke: currentColor;
}






[data-scrollbar]::-webkit-scrollbar-track {
	background: transparent;
}

[data-scrollbar*="bg-black"]::-webkit-scrollbar-track {
	background: #000;
}

[data-scrollbar*="bg-white"]::-webkit-scrollbar-track {
	background: #fff;
}

[data-scrollbar*="bg-blue"]::-webkit-scrollbar-track {
	background: #003562;
}

[data-scrollbar*="bg-orange"]::-webkit-scrollbar-track {
	background: #ec691b;
}

[data-scrollbar*="bg-light"]::-webkit-scrollbar-track {
	background: #f5f5f5;
}

[data-scrollbar]::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 10px 10px #888;
}

[data-scrollbar*="is-white"]::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 10px 10px #fff;
}

[data-scrollbar*="is-black"]::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 10px 10px #000;
}

[data-scrollbar*="is-blue"]::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 10px 10px #003562;
}

[data-scrollbar*="is-orange"]::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 10px 10px #ec691b;
}

[data-scrollbar*="is-light"]::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 10px 10px #f5f5f5;
}

[data-scrollbar]:not([data-scrollbar*="vertical"])::-webkit-scrollbar { width: 2px; }
[data-scrollbar*="vertical"]::-webkit-scrollbar { height: 2px; }

[data-scrollbar*="width-1"]::-webkit-scrollbar { width: 1px; }
[data-scrollbar*="width-2"]::-webkit-scrollbar { width: 2px; }
[data-scrollbar*="width-3"]::-webkit-scrollbar { width: 3px; }
[data-scrollbar*="width-4"]::-webkit-scrollbar { width: 4px; }

[data-scrollbar*="height-1"]::-webkit-scrollbar { height: 1px; }
[data-scrollbar*="height-2"]::-webkit-scrollbar { height: 2px; }
[data-scrollbar*="height-3"]::-webkit-scrollbar { height: 3px; }
[data-scrollbar*="height-4"]::-webkit-scrollbar { height: 4px; }








/* General */
body {
	color: #000;
	background: transparent;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4em;
}

h1, h2, h3, h4 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 1.3em;
	margin-bottom: 15px;
}
h1 {
	font-size: 32px;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 22px;
}
.wrapper {
	padding: 60px 0;
}
.wrapper.smaller {
	padding: 50px 0;
}
.wrapper.minimal {
	padding: 35px 0;
}
.wrapper.highlight {
	background-color: #f5f5f5;
}

.wrapper.no-top {
	padding-top: 0 !important;
}
.wrapper.no-bottom {
	padding-bottom: 0 !important;
}
.container {
	padding: 0 20px;
}
.row.minimal {
	margin: 0;
}
.row.minimal > div {
	padding: 0;
}
.row.small {
	margin: 0 -8px;
}
.row.small > div {
	padding: 0 8px;
}
.row.medium {
	margin: 0 -20px;
}
.row.medium > div {
	padding: 0 20px;
}



.row-options {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.row-options > .col-option {
	padding-left: 5px;
	padding-right: 5px;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

@media all and (min-width: 501px) {

	.row-options > .col-option > .option-item {
		margin: 0 !important;
		height: 100%;
	}

	.row-options > .col-option {
		padding-bottom: 5px;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

}

@media all and (min-width: 768px) {

	.row-options > .col-option {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

}

@media all and (min-width: 992px) and (max-width: 1199px) {

	.row-options > .col-option {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

}








a {
	color: inherit;
}
a:hover {
	color: inherit;
}
article a:not(.button) {
	color: inherit;
	text-decoration: none;
}
.nowrap {
	white-space: nowrap;
}
.shadowed {
	box-shadow: 0.188em 0.25em 2.188em rgba(0,0,0,0.16);
}
.form-anchor {
	display: block;
	transform: translateY(-110px);
	-webkit-transform: translateY(-110px);
}
.scroll-up {
	cursor: pointer;
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #003562;
	position: fixed;
	right: 25px;
	bottom: 0;
	z-index: 800;
	opacity: 0;
	transform: translateX(100px);
	-webkit-transform: translateX(100px);
	-webkit-transition: all 0.2s, opacity 0.3s linear;
	transition: all 0.2s, opacity 0.3s linear;
}
.scroll-up:hover {
	background: #0c487d;
}
body.scrolled:not(.page-home) .scroll-up,
body.scrolled-far.page-home .scroll-up {
	transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}
.scroll-up > img {
	display: inline-block;
	width: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}



/* Buttons */
.button {
	cursor: pointer;
	display: inline-block;
	position: relative;
	color: #606060;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	text-align: center;
	line-height: 1.4em;
	padding: 7px 16px 8px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border: 1px solid transparent;
	margin-right: 5px;
	transition: 0.2s;
	outline: none;
}
.button:not(.disabled):hover,
.button:not(.disabled):focus {
	color: #202020;
	background: #f5f5f5;
	text-decoration: none;
	outline: none;
}
.button.discrete {
	color: #606060;
	border: none;
	background: none;
	box-shadow: none;
	text-decoration: underline;
	padding: 5px 0;
}
.button.discrete:hover,
.button.discrete:focus {
	color: #003562;
	text-decoration: none;
	background: none;
	border: none;
}
.button.light {
	border: 1px solid #e0e0e0;
}
.button.light:not(.disabled):hover,
.button.light:not(.disabled):focus {
	border: 1px solid #d0d0d0;
}
.button.medium {
	font-size: 15px;
	padding: 10px 20px;
}
.button.large {
	font-size: 16px;
	padding: 12px 22px;
}
.button.orange {
	color: #fff;
	background: #ec691b;
}
.button.orange:hover,
.button.orange:focus {
	color: #fff;
	background: #d65712;
	text-decoration: none;
	outline: none;
}
.button.blue {
	color: #fff;
	background: #003562;
}
.button.blue:hover,
.button.blue:focus {
	color: #fff;
	background: #0c487d;
	text-decoration: none;
	outline: none;
}
.button.disabled {
	cursor: not-allowed;
	opacity: 0.3;
}


/* Sliders */
.slider .slick-arrow {
	display: inline-block;
	width: 55px;
	height: 55px;
	position: absolute;
	top: 50%;
	z-index: 50;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-size: 0;
	border: none;
	outline: none;
	color: transparent;
	background-color: rgba(0,0,0,0.7);
	background-image: url('/images/caret-right-white.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
	opacity: 0.5;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.slider .slick-arrow:hover {
	opacity: 1;
}
.slider .slick-arrow.slick-prev {
	left: 0px;
	border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	-webkit-border-radius: 0 50px 50px 0;
	background-image: url('/images/caret-left-white.png');
	background-position: 14px center;
}
.slider .slick-arrow.slick-next {
	right: 0px;
	border-radius: 50px 0 0 50px;
	-moz-border-radius: 50px 0 0 50px;
	-webkit-border-radius: 50px 0 0 50px;
	background-position: right 14px center;
}



/* Forms */
.alert {
	display: block;
	padding: 16px 20px 16px;
	border-width: 1px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.alert.compact {
	font-size: 14px;
	padding: 10px 15px 10px;
}
.alert.zero {
	margin: 0 !important;
}
.alert.no-bottom {
	margin-bottom: 0 !important;
}
.alert > b {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
.alert > strong {
	display: block;
	margin-bottom: 10px;
}
.alert em {
	font-weight: 600;
}
.alert.alert-inline {
	display: inline-block;
}
.alert.alert-danger {
	color: #721c24;
	background-color: #f3cdd1;
	border-color: #ce9195;
}
.alert.alert-success {
	color: #155724;
	background-color: #cbecd3;
	border-color: #9cc3a5;
}
.alert ul {
	padding-left: 20px;
	line-height: 1.4em;
}
form.form {
	position: relative;
	margin-bottom: 0px;
}
form.form .field {
	margin-bottom: 18px;
}
form.form.small .field {
	margin-bottom: 15px;
}
form.form .actions {
	margin-top: 24px;
}
form.form .field label.label {
	color: #082b4c;
	font-size: 13px;
	font-weight: 600;
	margin: 0px 0 3px;
}
form.form .field label.label > em {
	color: #ec691b;
	font-size: 12px;
	display: inline-block;
	float: right;
}
form.form .field .file-input,
form.form .field input[type="text"],
form.form .field input[type="email"],
form.form .field input[type="password"],
form.form .field select,
form.form .field textarea {
	display: block;
	width: 100%;
	color: #003562;
	background: #f5f5f5;
	border: 1px solid #e7e7e7;
	padding: 8px 11px 9px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-webkit-transition: 0.3s;
	-webkit-appearance: none !important;
	transition: 0.2s;
	outline: none;
}
form.form.small .field input[type="text"],
form.form.small .field input[type="email"],
form.form.small .field input[type="password"],
form.form.small .field textarea {
	height: auto;
	padding: 8px 10px 10px;
}
form.form.small .field select {
	height: auto;
	padding: 8px 10px 10px;
}
form.form .field input[type="text"]:focus,
form.form .field input[type="email"]:focus,
form.form .field input[type="password"]:focus,
form.form .field select:focus,
form.form .field textarea:focus {
	outline: none;
	border-color: #ec691b;
}
form.form .field.error input[type="text"],
form.form .field.error input[type="email"],
form.form .field.error input[type="password"],
form.form .field.error select,
form.form .field.error textarea {
	outline: none;
	border-color: #d62b2b;
	background: #fff6f6;
	color: #900;
}
form.form .field textarea {
	height: 150px !important;
}
form.form .field .set label.radio input,
form.form .field .set label.checkbox input {
	margin-right: 12px;
}
form.form .anchor {
	display: block;
	transform: translateY(-145px);
	-webkit-transform: translateY(-145px);
}
form.form .field textarea::-webkit-input-placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field textarea::-moz-placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field textarea:-ms-input-placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field textarea::placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field textarea:-ms-input-placeholder {
	color: rgba(0,0,0,0.3);
}
form.form .field textarea::-ms-input-placeholder {
	color: rgba(0,0,0,0.3);
}
form.form .field input::-webkit-input-placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field input::-moz-placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field input:-ms-input-placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field input::placeholder {
	opacity: 1;
	color: rgba(0,0,0,0.3);
}
form.form .field input:-ms-input-placeholder {
	color: rgba(0,0,0,0.3);
}
form.form .field input::-ms-input-placeholder {
	color: rgba(0,0,0,0.3);
}
form.form .field-recaptcha {
	display: none;
	position: relative;
	margin: 0;
}
form.form-posted .field-recaptcha {
	display: block;
}
form.form .field-recaptcha .g-recaptcha {
	display: inline-block;
	width: 302px;
	height: 78px;
	transform: scale(0.78);
	-webkit-transform: scale(0.88);
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
}
form.form .file-input {
	display: block;
	position: relative;
	overflow: hidden;
}
form.form .file-input::before {
	content: ' ';
	display: inline-block;
	background-image: url(/images/icon-attachment.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px;
	position: absolute;
	top: 14px;
	right: 16px;
	width: 30px;
	height: 30px;
}
form.form .file-input > input {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	z-index: 20;
}
form.form .file-input > span {
	display: inline-block;
	position: absolute;
	top: 16px;
	left: 22px;
	z-index: 10;
}



form.form label.checkbox.is-theme,
form.form label.radio.is-theme {
	position: relative;
	padding-left: 24px;
}

form.form label.checkbox.is-theme > input[type="checkbox"],
form.form label.checkbox.is-theme > input[type="radio"],
form.form label.radio.is-theme > input[type="checkbox"],
form.form label.radio.is-theme > input[type="radio"] {
	position: absolute;
	inset: 0;
	opacity: 0;
}

form.form label.checkbox.is-theme:not(.active):not(.checked)::after,
form.form label.radio.is-theme:not(.active):not(.checked)::after {
	opacity: 0;
}

form.form label.checkbox.is-theme::before,
form.form label.checkbox.is-theme::after,
form.form label.radio.is-theme::before,
form.form label.radio.is-theme::after {
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
}

form.form label.radio.is-theme::before,
form.form label.radio.is-theme::after {
	width: 17px;
	height: 17px;
}

form.form label.checkbox.is-theme::before,
form.form label.radio.is-theme::before {
	border: 1px solid #003562;
	background: #003562;
}

form.form label.checkbox.is-theme:not(.active):not(.checked)::before,
form.form label.radio.is-theme:not(.active):not(.checked)::before {
	border: 1px solid #a6a6a6;
	background-color: #fff;
}

form.form label.checkbox.is-theme::after,
form.form label.radio.is-theme::after {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
	background-image: url('/images/svg/check-bold.svg');
	filter: invert( 1 );
}







form.form label.checkbox.is-theme::before,
form.form label.checkbox.is-theme::after {
	border-radius: 3px;
}

form.form label.radio.is-theme::before,
form.form label.radio.is-theme::after {
	border-radius: 999px;
}




/*form.form label.checkbox.is-theme::before,*/
/*form.form label.checkbox.is-theme::after {*/
/*	border: 1px solid #eee;*/

/*}*/

/*form.form label.radio.is-theme::before,*/
/*form.form label.radio.is-theme::after {*/
/*	border: 1px solid #003562;*/
/*	background: red;*/

/*}*/








form.form label.checkbox.theme {

}
form.form label.radio.theme {

}







/* Help Icons */

.help-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 12px;
	min-width: 12px;
}

.help-icon:not(.default) {
	border-radius: 999px;
	width: 18px;
	height: 18px;
}

.help-icon.is-blue {
	background-color: #003562;
	color: #fff;
}

.help-icon > .icon {
	width: 11px !important;
	height: 11px !important;
}

.help-icon.with-circle > .icon {
	width: 9px !important;
	height: 9px !important;
}






/* Help Sections */

.help-section {
	display: inline-flex;
}

.help-section .help-contents {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 165;
	transform-origin: 0 0;
	padding-top: 32px;
}

.help-section:not(:hover):not(.hover):not(.active) .help-contents {
	transform: scale( 0 );
}

.help-section .help-message {
	display: inline-block;
	position: relative;
	font-size: 14px;
	min-width: 110px;
	min-height: 32px;
	padding: 4px 9px;
	border-radius: 3px;
	border: 1px solid #e0e0e0;
	background: #ffffff;
}

.help-section.compact .help-message {
	padding: 7px 10px;
	line-height: 1.25em;
	font-size: 12px;
}

.help-section.space .help-message {
	padding: 9px 13px;
}

.help-section.full-width .help-contents {
	width: 100%;
}

.help-section.full-width .help-message {
	width: 100%;
}

.help-section .help-message p:first-child {
	margin-top: 0;
}

.help-section .help-message p:last-child {
	margin-bottom: 0;
}

.help-section .help-message:not(.no-underline) a:not(.button):not(.no-underline) {
	text-decoration: underline !important;
}

.help-section.theme .help-icon {
	color: #a6a6a6;
}


.help-section.theme .help-icon.with-circle {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	border: 1px solid currentColor;
	background-color: rgba(255,255,255,0);
}




.help-section.theme.active .help-icon,
.help-section.theme.hover .help-icon,
.help-section.theme:hover .help-icon {
	color: #003562;
}

.help-section.theme.active .help-icon.with-circle,
.help-section.theme.hover .help-icon.with-circle,
.help-section.theme:hover .help-icon.with-circle {
	background-color: #003562;
	border-color: #003562;
	color: #fff;
}

.help-section.theme .help-message {
	padding-right: 13px;
	background-color: #003562;
	border-color: #003562;
	color: #fff;
}

.help-section.theme .help-message::before {
	content: ' ';
	display: inline-block;
	position: absolute;
	left: -1px;
	top: -7px;
	width: 0;
	height: 0;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #003562;;
}




/*.help-section.theme .help-message {*/
/*	color: #898989;*/
/*	border-color: #ddd;*/
/*	background-color: #dddddd;*/
/*	border-radius: 0 4px 4px 4px;*/
/*	font-weight: 600;*/
/*	font-size: 12px;*/
/*}*/






@media all and (min-width: 768px) {

	.help-section.is-inline .help-contents {
		padding-left: 26px;
		padding-top: 0;
		left: auto;
	}

	.help-section.is-inline.with-circle .help-contents {
		padding-left: 32px;
	}

	.help-section.is-inline.theme .help-message::before {
		left: -7px;
		top: 7px;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-right: 8px solid #003562;;
	}

}



:root {
	--font-size-h1: 32px;
	--font-size-h2: 28px;
	--font-size-h3: 22px;
}

@media all and (max-width: 500px) {

	:root {
		--font-size-h1: 26px;
		--font-size-h2: 22px;
		--font-size-h3: 18px;
	}

}






/* Content */
.title {
	margin-bottom: 20px;
}
.title > h1 {
	font-size: var(--font-size-h1);
}
.title > h2 {
	font-size: var(--font-size-h2);
}
.title > h3 {
	font-size: var(--font-size-h3);
}

.title > h1,
.title > h2,
.title > h3 {
	font-weight: 600;
}

.title > .subtitle {
	display: block;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
}

.title.main {
	text-align: center;
	margin-bottom: 45px;
}
.title.main.bottom {
	margin-bottom: 30px;
}
.title.main > h1,
.title.main > h2,
.title.main > h3 {
	display: block;
	text-transform: uppercase;
}
.title.main > .subtitle {
	text-transform: uppercase;
	font-weight: 200;
}
.title.uppercase > h1,
.title.uppercase > h2,
.title.uppercase > h3 {
	text-transform: uppercase;
}
.title.main .label {
	display: inline-block;
	background: #eee;
	vertical-align: 1px;
	padding: 10px 10px;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1em;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin: 6px 3px;
}
.title.main .label.orange {
	color: #fff;
	background: #ec691b;
}
.title.main .label.blue {
	color: #fff;
	background: #003562;
}
.article {
	line-height: 1.5em;
}
.article p {
	margin: 0 0 15px;
}
.article a:not(.button) {
	text-decoration: underline;
}
.article p:last-child {
	margin-bottom: 0px;
}

.article.inline-links p a:not(.button) {
	display: inline-block;
	vertical-align: top;
}

.article h3 {
	font-size: 28px;
	font-weight: 700;
}
.article h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 20px 0 0;
}
.article em {
	font-weight: 400;
}
.img-auto img,
.article.img-auto img {
	height: auto !important;
}
.article.default strong {
	font-weight: 600;
}
.article:not(.default) strong {
	display: inline-block;
	font-size: 16px;
	margin-bottom: 2px;
}
.article ul,
.article ol {
	padding-left: 20px;
	margin-bottom: 15px;
}
.article table {
	width: 100%;
	margin-bottom: 0px;
}
.article table tr td {
	line-height: 1.4em;
	padding: 4px 15px 4px 0;
}
.article table tr:not(:last-child) td {
	padding-right: 18px;
}
.article iframe {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.article-intro {
	font-size: 17px;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5em;
	text-align: center;
	padding: 7px 0 9px;
	margin-bottom: 30px;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	color: #000;
}

.article-divided {
	color: #000;
}

.article-intro.gray {
	color: #808080;
}

.article-divided.gray {
	color: #808080;
}

@media all and (min-width: 500px) {

	.article-divided {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 40px;
		-moz-column-gap: 40px;
		column-gap: 40px;
	}

}

@media all and (max-width: 499px) {

	.article-divided {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-gap: 40px;
		-moz-column-gap: 40px;
		column-gap: 40px;
	}

}


.article-date {
	display: block;
	position: relative;
	font-size: 14px;
	font-weight: 800;
	margin-top: 30px;
}
.article-date > span {
	color: #50aab2;
	font-size: 16px;
	display: inline-block;
	margin-left: 10px;
}
.article-row:not(.no-margin) {
	margin-bottom: 40px;
}
.article-row.half-bottom:not(.no-margin) {
	margin-bottom: 20px;
}
.article-row .article-content {
	padding-right: 60px;
}
.article-row .article-form,
.article-row .article-image {
	padding-left: 40px;
}
.article-row .article-image .image {
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	overflow: hidden;
}
.article-row .article-image .image > img {
	display: inline-block;
	width: 100%;
}



/* Breadcrumbs */
.breadcrumbs-wrapper {
	display: block;
	position: relative;
	padding: 10px 0;
	background: #f5f5f5;
}
.breadcrumbs-wrap ul.breadcrumbs {
	display: block;
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
.breadcrumbs-wrap ul.breadcrumbs > li {
	display: inline-block;
	position: relative;
	vertical-align: top;
	margin-right: 30px;
}
.breadcrumbs-wrap ul.breadcrumbs > li:not(:last-child)::before {
	display: inline-block;
	content: ' ';
	width: 16px;
	height: 16px;
	background: url(/images/arrow-right.png) no-repeat;
	background-position: center;
	background-size: 16px;
	position: absolute;
	top: 50%;
	right: -34px;
	margin-top: 1px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
}
.breadcrumbs-wrap ul.breadcrumbs > li > a {
	color: #999;
	display: block;
	padding: 6px 0;
}
.breadcrumbs-wrap ul.breadcrumbs > li > a:hover {
	text-decoration: underline;
}
.breadcrumbs-wrap ul.breadcrumbs > li.active > a {
	color: #333;
	font-weight: 600;
}





/* Header */
.header-wrapper {
	display: block;
	position: sticky;
	pointer-events: none;
	top: 0;
	z-index: 1000;
	min-height: 230px;
}
.header-wrapper > * {
	pointer-events: auto;
}
.header-wrapper .header-wrap {
	position: relative;
	z-index: 20;
}
.header-wrapper .header-wrap.pull-usp {
	background-color: #fff;
	box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0.12);
	transition: 0.3s;
}
body.docked .header-wrapper .header-wrap.pull-usp {
	margin-top: -37px;
}



/* Header - USP */

.header-wrapper .usp-wrap {
	display: block;
	position: relative;
	background: #fff;
	box-shadow: 0px 0px 7px rgba(0,0,0,0.12);
	z-index: 5;
	transition: 0.3s;
}

.header-wrapper .usp-wrap.is-light {
	background: #f5f5f5;
	border-bottom: 1px solid #dadada;
}

.header-wrapper .usp-wrap .usp-list:not(.usp-table) ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
}

.header-wrapper .usp-wrap .usp-list.flex-end ul {
	justify-content: end;
}

.header-wrapper .usp-wrap .usp-list ul {
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 7px 0;
}

.header-wrapper .usp-wrap .usp-list.max-height ul {
	height: 37px;
	overflow: hidden;
}

.header-wrapper .usp-wrap .usp-list ul > li {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	vertical-align: middle;
	font-size: 13px;
	line-height: 23px;
	text-align: center;
	white-space: nowrap;
}

.header-wrapper .usp-wrap .usp-list ul > li strong {
	font-weight: 600;
}

.header-wrapper .usp-wrap .usp-list ul > li > a {
	display: inline-flex;
	position: relative;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0 8px;
	color: #707070;
}

.header-wrapper .usp-wrap .usp-list ul > li > a:hover,
.header-wrapper .usp-wrap .usp-list ul > li > a:focus {
	color: #003562;
}

.header-wrapper .usp-wrap .usp-list ul > li > a > i.icon {
	width: 18px;
	height: 18px;
}

.header-wrapper .usp-wrap .usp-list.usp-flex ul {
	display: flex;
	justify-content: space-between;
}
.header-wrapper .usp-wrap .usp-list.usp-flex ul > li {
	flex: 1;
	display: flex;
	align-items: center;
	white-space: nowrap;
}


.header-wrapper .usp-wrap .usp-list.usp-dots ul > li:not(:first-child)::after {
	content: ' ';
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	-moz-border-radius: 999px;
	-webkit-border-radius: 999px;
	background: #777;
	position: absolute;
	top: 50%;
	left: -2px;
	transform: translateY(-50%);
	z-index: 5;
}

.header-wrapper .usp-wrap .usp-list ul > li > span {
	display: inline-block;
	vertical-align: middle;
}
.header-wrapper .usp-wrap .usp-list ul > li > span > strong {
	display: inline-block;
	font-weight: 600;
	margin-left: 2px;
}
.header-wrapper .usp-wrap .usp-list ul > li > .stars-rating {
	display: inline-block;
	vertical-align: -6px;
	margin-left: 3px;
	line-height: 1em;
	height: 18px;
	min-width: 90px;
}

.stars-rating.static > .jq-star {
	cursor: auto
}





/* Header - Content */

body.ready .header-wrapper .header-wrap .logo-wrap::after {
	transition: 0.25s;
}

.header-wrapper .header-wrap > .container {
	display: block;
	position: relative;
	min-height: 90px;
	height: 110px;
	transition: 0.3s;
}
body.docked .header-wrapper .header-wrap > .container {
	height: 94px;
}
.header-wrapper .header-wrap .logo-wrap {
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 250px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 5;
}
.header-wrapper .header-wrap .logo-wrap > .logo {
	display: block;
}
.header-wrapper .header-wrap .logo-wrap > .logo > img {
	display: block;
	width: 100%;
}
.header-wrapper .header-wrap .logo-wrap::after {
	content: ' ';
	display: block;
	position: absolute;
	pointer-events: none;
	background: white;
	opacity: 0;
	inset: 0;
	left: auto;
	width: 80%;
}

.header-wrapper .header-wrap .header-buttons {
	display: flex;
	align-items: center;
	justify-content: end;
	flex-wrap: wrap;
	position: relative;
	text-align: right;
	padding-top: 26px;
	transition: 0.3s;
}

body.docked .header-wrapper .header-wrap .header-buttons {
	padding-top: 24px;
}

.header-wrapper .header-wrap .header-menu {
	display: inline-flex;
	justify-content: start;
	flex-wrap: wrap;
	margin-right: 15px;
}

.header-wrapper .header-buttons > .button {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 1.4em;
	padding: 12px 18px 26px;
	margin: 0 0 0 7px;
	min-width: 175px;
}
body.docked .header-wrapper .header-buttons > .button {
	padding: 12px 18px 11px;
}
.header-wrapper .header-buttons > .button > span {
	display: block;
	font-size: 17px;
	white-space: nowrap;
	transition: 0.3s;
}
.header-wrapper .header-buttons > .button > small.lowercase {
	text-transform: none;
}

.header-wrapper .header-buttons > .button .badge {
	position: absolute;
	top: 50%;
	right: -14px;
	font-style: normal;
	font-weight: 700;
	font-size: 13px;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	transform: translateY(-50%);

	color: #fff;
	background: #023562;
	background: #ffffff;
	color: #d65713;
}

body.docked .header-wrapper .header-buttons > .button.active > span,
body.docked .header-wrapper .header-buttons > .button:hover > span {
	transform: translateY(-7px) scale(0.95);
	-webkit-transform: translateY(-7px) scale(0.95);
}

.header-wrapper .header-buttons > .button > small {
	display: block;
	font-size: 7.7pt;
	white-space: nowrap;
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	text-transform: uppercase;
	transition: 0.3s;
}
body.docked .header-wrapper .header-buttons > .button > small {
	opacity: 0;
}

body.docked .header-wrapper .header-buttons > .button.active > small,
body.docked .header-wrapper .header-buttons > .button:hover > small {
	opacity: 1;
	bottom: 2px;
}


/* Menu */
.header-menu .menu-wrap {
	position: relative;
}
.header-menu .menu-wrap > .menu {
	display: block;
	list-style: none;
	white-space: nowrap;
	padding: 0;
	margin: 0;
}
.header-menu .menu-wrap > .menu > li {
	display: inline-block;
	position: relative;
	vertical-align: top;
}
.header-menu .menu-wrap > .menu > li > a {
	display: block;
	padding: 12px 12px 13px;
	transition: 0.2s;
}
.header-menu .menu-wrap > .menu > li > a:hover,
.header-menu .menu-wrap > .menu > li > a:focus {
	color: #003562;
}

.header-menu .menu-wrap > .menu > li:hover > a {
	/*background: #0c487d;*/
}
.header-menu .menu-wrap > .menu > li > a > span {
	display: block;
}

.header-menu .menu-wrap > .menu > li.active > a {
	color: #023562;
	font-weight: 600;
}



/* Menu */
body.ready .menu-wrapper {
	transition: 0.3s;
}
.menu-wrapper {
	color: #fff;
	background: #003562;
}
.menu-wrapper .menu-wrap {
	position: relative;
}
.menu-wrapper .menu-wrap.mobile-only {
	display: none;
}
.menu-wrapper .menu-wrap > .menu {
	display: inline-flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 -15px;
	padding: 0;
}
.menu-wrapper .menu-wrap > .menu > li {
	display: inline-flex;
	position: relative;
	vertical-align: top;
}
.menu-wrapper .menu-wrap > .menu > li > a {
	display: block;
	white-space: nowrap;
	padding: 12px 15px 13px;
	transition: 0.2s;
}
.menu-wrapper .menu-wrap > .menu:not(:hover) > li.active > a {
	background: #0c487d;
}
.menu-wrapper .menu-wrap > .menu > li:hover > a {
	background: #0c487d;
}





/* Menu - Dropdown */
.menu-wrapper ul.menu > li > ul {
	display: block;
	list-style: none;
	white-space: nowrap;
	background: #0c487d;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 0 15px;
	margin: 0;
	z-index: 30;
	border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform: translateY(100%) scaleY(0);
	-webkit-transform: translateY(100%) scaleY(0);
	opacity: 0;
	transition: 0.3s;
}
.menu-wrapper ul.menu > li.has-dropdown:hover > ul {
	transform: translateY(100%) scaleY(1);
	-webkit-transform: translateY(100%) scaleY(1);
	opacity: 1;
}
.menu-wrapper ul.menu > li > ul > li {
	display: block;
}
.menu-wrapper ul.menu > li > ul > li > a {
	display: block;
	color: #c4d4e2;
	color: #a8c1d8;
	padding: 3px 18px;
	transition: 0.2s;
}
.menu-wrapper ul.menu > li > ul > li:hover > a,
.menu-wrapper ul.menu > li > ul > li.active > a {
	color: #fff;
}



/* Maps */

.maps-wrapper {
	display: block;
	position: relative;
}
.maps-wrapper .container {
	position: relative;
}
.maps-wrapper .maps-wrap {
	display: block;
	position: relative;
	min-height: 485px;
	z-index: 15;
}
.maps-wrapper .openmaps {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	min-height: 400px;
	overflow: hidden;
	z-index: 10;
}
.maps-wrapper .openmaps > iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.maps-wrapper .maps-content > .maps-block {
	display: inline-block;
	width: 275px;
	max-width: 100%;
	padding: 28px 30px 22px;
	background: #fff;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
	position: absolute;
	left: 20px;
	top: 75px;
	z-index: 35;
}
.maps-wrapper .maps-content > .maps-block .buttons {
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 0;
	white-space: nowrap;
	transform-origin: 100% 0%;
	transform: rotate(-90deg);
}
.maps-wrapper .maps-content > .maps-block .buttons > .button {
	border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
}
.maps-wrapper .maps-block > .logo {
	display: block;
	width: 210px;
	margin: 0 auto 21px;
}
.maps-wrapper .maps-block > .article {
	color: #606060;
	font-size: 14px;
	line-height: 1.45em;
	margin-bottom: 15px;
}
.maps-wrapper .maps-block > .article a {
	text-decoration: none !important;
}
.maps-wrapper .maps-block > .article p {
	margin: 10px 0;
}
.maps-wrapper .maps-block > .openingtimes table {
	width: 100%;
	margin: 0;
}
.maps-wrapper .maps-block > .openingtimes table td {
	font-size: 14px;
	padding: 2px 5px;
	position: relative;
}
.maps-wrapper .maps-block > .openingtimes table tr.active td {
	color: #ec691b;
	font-weight: 600;
	padding: 8px 5px 8px 0;
}
.maps-wrapper .maps-block > .openingtimes table tr.active td::before {
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 4px;
	right: -10px;
	left: -15px;
	bottom: 4px;
	z-index: 2;
	background: #f5f5f5;
	border-radius: 3px;
}
.maps-wrapper .maps-block > .openingtimes table td > span {
	display: block;
	position: relative;
	z-index: 5;
}
.maps-wrapper .maps-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 40;
}
.maps-wrapper .maps-bottom ul {
	display: inline-block;
	list-style: none;
	padding: 0 13px;
	margin: 0;
	background: #fff;
	border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
}
.maps-wrapper .maps-bottom ul > li {
	display: inline-block;
	vertical-align: top;
}
.maps-wrapper .maps-bottom ul > li > a {
	display: block;
	padding: 8px 5px;
	font-size: 13px;
}


.maps-wrapper.before-gradient::before {
	content: ' ';
	pointer-events: none;
	position: absolute;
	inset: 0;
	bottom: 0;
	z-index: 20;
	height: 20px;
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}







/* Footer */
.footer-wrapper {
	color: #fff;
	background: #003562;
	text-align: left;
}
.footer-wrapper .footer-block {
	position: relative;
	margin-bottom: 40px;
}
.footer-wrapper .footer-block .title.main {
	margin-bottom: 15px;
	text-align: left;
}
.footer-wrapper .footer-block .title.main h2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0;
}

@media all and (min-width: 1200px) {

	.footer-wrapper .footer-navigation {
		padding-left: 40px;
	}

}

@media all and (max-width: 1199px) {

	.footer-wrapper .footer-navigation {
		width: 710px;
		max-width: 100%;
	}

}


@media all and (min-width: 768px) and (max-width: 1199px) {

	.footer-wrapper .footer-social {
		margin-top: 50px;
	}

}

@media all and (max-width: 767px) {

	.footer-wrapper .footer-social {
		margin-top: 20px;
	}

}

@media all and (max-width: 575px) {

	.footer-wrapper .row > .col-menu {
		width: 100%;
	}

}

.footer-wrapper .menu-wrap ul {
	display: block;
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-wrapper .menu-wrap ul > li {
	display: block;
}
.footer-wrapper .menu-wrap ul > li > a {
	display: inline-block;
	padding: 2px 0;
}








/* Background */
.background-wrapper {
	display: block;
	position: relative;
	overflow: hidden;
}

.background-wrapper,
.background-wrapper .background {
	min-height: 500px;
}

.background-wrapper .background {
	display: block;
	position: relative;
}
.background-wrapper .container {
	display: block;
	position: relative;
}
.background-wrapper .background-content {
	display: block;
	position: relative;
	height: 100%;
}
.background-wrapper .background-content > .content-wrap {
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	width: 620px;
	max-width: 100%;
	padding: 25px 25px 23px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin: 120px 0 110px;
}
.background-wrapper .background-content > .content-wrap .article {
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 10px;
	line-height: 1.4em;
}
.background-wrapper .background-content > .content-wrap .article h1,
.background-wrapper .background-content > .content-wrap .article h2 {
	font-size: 24px;
	font-weight: 600;
}
.background-wrapper .background-content > .content-wrap .article p:first-child {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: uppercase;
}
.background-wrapper .background-content > .content-wrap .button {
	margin: 15px 5px 0 0;
	text-transform: uppercase;
}
.background-wrapper .scroll-down {
	display: inline-block;
	cursor: pointer;
	width: 70px;
	height: 70px;
	position: absolute;
	bottom: 15px;
	left: 50%;
	border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 20;
}
.background-wrapper .scroll-down > img {
	display: block;
	-webkit-animation: infinite ease-in-out up_and_down 2s;
	animation: infinite ease-in-out up_and_down 2s;
}






/* Steps to follow */
.steps-wrapper .steps-wrap {
	margin-top: 45px;
}
.steps-wrap > .row {
	margin: 0 -35px;
}
.steps-wrap > .row > div {
	position: relative;
	padding: 0 35px;
}
.steps-wrap .step-wrap:not(.step-1)::before {
	display: inline-block;
	content: ' ';
	width: 38px;
	height: 38px;
	background: url('/images/arrow-right.png') no-repeat;
	background-position: center;
	background-size: 38px;
	position: absolute;
	top: 50%;
	left: -34px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	opacity: 0.7;
}
.steps-wrap .step-wrap {
	display: block;
	position: relative;
	height: 100%;
}
.steps-wrap .step-item {
	display: block;
	position: relative;
	background: #f8f8f8;
	padding: 45px 20px 25px 102px;
	box-shadow: 0 0 12px 1px rgba(0,0,0,0.15);
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	height: 100%;
}
.steps-wrap.flat .step-item {
	box-shadow: none;
	border: 2px solid #edeff1;
}
.steps-wrap .step-item .step {
	color: #fff;
	background: #003562;
	display: inline-block;
	padding: 6px 13px 8px 14px;
	border-radius: 5px 0 5px 0;
	-moz-border-radius: 5px 0 5px 0;
	-webkit-border-radius: 5px 0 5px 0;
	position: absolute;
	top: 0px;
	left: 0px;
	min-width: 84px;
	text-align: center;
}
.steps-wrap.flat .step-item .step {
	top: -2px;
	left: -2px;
}
.steps-wrap .step-item .image {
	display: inline-block;
	width: 80px;
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 10px;
}
.steps-wrap .step-item .image::before {
	content: ' ';
	background: #edeff1;
	display: inline-block;
	width: 72px;
	height: 72px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	border-radius: 6px;
}
.steps-wrap.flat .step-item .image::before {
	border: 2px solid #dfe2e6;
	width: 74px;
	height: 74px;
}
.steps-wrap .step-item .image > img {
	position: relative;
	z-index: 15;
}
.steps-wrap .step-item .content article {
	display: block;
	position: relative;
}
.steps-wrap .step-item .content article h3 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 0;
}
.steps-wrap .step-item .content article h3 > em {
	font-size: inherit;
	font-weight: inherit;
	font-style: normal !important;
}
.steps-wrap .step-item .content article p {
	margin: 10px 0;
	font-size: 15px;
}
.steps-wrap .more-wrap {
	margin-top: 50px;
}
.steps-wrap .more-wrap .more-text {
	text-align: right;
}
.steps-wrap .more-wrap .more-text > p {
	font-size: 17px;
	line-height: 1.5em;
	margin: 0;
}
.steps-wrap .more-wrap .more-button .button {
	text-transform: uppercase;
}






/* Videos */

.videos-wrap {

}

.video-item {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	width: 480px;
	max-width: 100%;
}

.video-item .video-thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 1.5;
	width: 100%;
}

.video-item .video-thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-item .video-thumb.with-scale img {
	transform: translate(-50%, -50%) scale(1.3);
}

.video-item .video-logo {
	display: inline-block;
	width: 80px;
	height: 55px;
}

.video-item .video-content {
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
	align-items: center;
	gap: 0 15px;
}




/* Status Icons */
.status-icons {
	display: inline-flex;
	vertical-align: middle;
	position: relative;
}

.status-icons > .icon {
	display: inline-block;
	width: 18px;
}

.status-icons .icon:not(:last-child) {
	position: absolute;
	top: 0;
	left: 0;
}

.status-icons:not([data-status="1"]) .icon.icon-positive { opacity: 0; }
.status-icons:not([data-status="0"]) .icon.icon-negative { opacity: 0; }





/* Action Buttons */
.action-buttons {
	display: inline-flex;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 8px;
}
.action-buttons .action-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 16px;
	height: 16px;
}






/* Television */
.television-wrapper {
	color: #fff;
	background: #003562;
}
.television-wrapper .television-image {
	display: block;
	position: relative;
}
.television-wrapper .television-image > img {
	display: inline-block;
	width: auto;
	max-height: 230px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.television-wrapper .television-article {
	display: block;
	position: relative;
	margin-top: 15px;
}
.television-wrapper .television-article > .article {
	color: #fff;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.6em;
	width: 450px;
	max-width: 100%;
	margin-bottom: 23px;
}
.television-wrapper .television-article > .article h1,
.television-wrapper .television-article > .article h2 {
	color: inherit;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
}
.television-wrapper .television-article .brands {
	display: block;
	position: relative;
	white-space: nowrap;
}
.television-wrapper .television-article .brands > .item {
	display: inline-block;
	vertical-align: top;
	margin-right: 16px;
}
.television-wrapper .television-article .brands > .item > img {
	display: block;
	width: auto;
	max-height: 64px;
}



/* News */
.news-wrap {
	display: block;
	position: relative;
}
.news-wrap .news-item {
	display: block;
	position: relative;
	padding: 25px 25px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #fff;
}
.news-wrap .row-eq-height > div {
	padding-bottom: 30px;
}
.news-wrap .row-eq-height .news-item {
	height: 100%;
}
.news-wrap .news-item > .image {
	display: inline-block;
	width: 175px;
	max-width: 40%;
	max-height: 320px;
	position: relative;
	float: right;
	margin-top: -5px;
	margin-right: -5px;
	margin-left: 16px;
	margin-bottom: 14px;
}
.news-wrap .news-item.has-image {
	padding-left: 215px;
}
.news-wrap .news-item.has-image > .image {
	display: inline-block;
	width: 175px;
	max-width: 40%;
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.news-wrap .news-item > .image > img {
	display: block;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.news-wrap .news-item > article h2,
.news-wrap .news-item > article h3 {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.25em;
}
.news-wrap .news-item > article p {
	margin-bottom: 0;
}
.news-wrap .more {
	margin-top: 22px;
}
.news-wrap .more > .button {
	margin: 0;
}
.news-detail .article-image {
	display: block;
}
.news-detail .article-image .image {
	display: inline-block;
	height: 250px;
	width: 400px;
	max-width: 100%;
}



/* Questions and news home */
.questions-wrapper {
	display: block;
	position: relative;
	background: #eee;
}
.questions-wrapper.white {
	background: #fff;
}
.questions-wrapper .title.uppercase {
	margin-bottom: 22px;
}
.questions-wrapper .title.uppercase > h2,
.questions-wrapper .title.uppercase > h3 {
	font-size: 24px;
}
.questions-wrap {
	display: block;
	position: relative;
}
.questions-wrap:not(.full) {
	padding-left: 35px;
}
.questions-wrap .more {
	margin-top: 13px;
}
.questions-wrap .questions-list h3 {
	cursor: pointer !important;
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35em;
	padding: 17px 0 17px 45px;
	transition: 0.2s;
	margin: 0;
}
.questions-wrap .questions-list h3:not(:first-child) {
	border-top: 2px solid #fff;
}
.questions-wrap .questions-list h3.active {
	color: #003562;
}
.questions-wrap .questions-list.preview {
	margin-top: -10px;
}
.questions-wrap .questions-list.preview h3 {
	display: none;
	margin: 0;
}
.questions-wrap .questions-list.preview h3 > a {
	display: block;
	padding-right: 25px;
}
.questions-wrap .questions-list.preview h3:nth-child(1),
.questions-wrap .questions-list.preview h3:nth-child(3),
.questions-wrap .questions-list.preview h3:nth-child(5),
.questions-wrap .questions-list.preview h3:nth-child(7),
.questions-wrap .questions-list.preview h3:nth-child(9) {
	display: block;
}
.questions-wrap .questions-list.preview p:nth-child(10) {
	padding: 0 0 18px !important;
}
.questions-wrap .questions-list p {
	display: none;
	padding: 0 0 26px 48px;
	margin: -5px 0 0;
}
.questions-wrap .questions-list h3::before {
	content: ' ';
	display: inline-block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #5e5e5e;
	background-image: url('/images/icon-plus-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 15px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: 0.2s;
}
.questions-wrap .questions-list h3.active::before {
	background-color: #003562;
	background-image: url('/images/icon-minus-white.png');
}



/* Reviews */
body.page-home .reviews-wrapper:not(.default) {
	padding-top: 20px;
}
.reviews-wrapper .title.main {
	margin-bottom: 27px;
}
.reviews-wrapper .title.main > h2,
.reviews-wrapper .title.main > h3 {
	font-size: 24px;
}
.reviews-wrapper .review-information .average span {
	display: inline-block;
	width: 70px;
	height: 70px;
	color: #fff;
	background: #003562;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	font-size: 34px;
	text-align: center;
	border-radius: 999px;
	overflow: hidden;
	padding: 11px 0;
}
.reviews-wrap:not(.static) .row {
	margin: 0 -20px;
}
.reviews-wrap:not(.static) .row > div {
	padding: 0 20px;
}
.reviews-wrap .review-item {
	display: block;
	position: relative;
	background: #eeeeee;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 25px 30px;
	overflow: hidden;
	height: 100%;
}
.reviews-wrap.static .review-item {
	height: auto;
	width: 100%;
	margin-bottom: 25px;
	padding: 20px;
}
.reviews-wrap .review-item .author .name {
	font-size: 17px;
	font-weight: 600;
	display: inline-block;
	margin-right: 6px;
}
.reviews-wrap .review-item .author .rating {
	display: inline-block;
	vertical-align: -2px;
}
.reviews-wrap .review-item .date {
	color: #999;
	font-size: 14px;
	font-weight: 100;
	margin: 3px 0 18px;
}
.reviews-wrap .review-item .score {
	color: #fff;
	background: #ec691b;
	display: inline-block;
	padding: 11px 15px 10px;
	border-radius: 0 0 0 5px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 36px;
	line-height: 1em;
	min-width: 65px;
	text-align: center;
}
.reviews-wrap .review-item .score.blue {
	background: #003562;
}
.reviews-wrap .review-item .story {
	color: #888;
}
.reviews-wrap .more {
	margin-top: 28px;
	text-align: center;
}
.reviews-wrap.static {
	padding-right: 35px;
}



/* Reviews - Form */
.reviews-wrapper .form-wrap .field-rating {
	display: block;
	position: relative;
	min-height: 45px;
	margin: 0;
}
.reviews-wrapper .form-wrap .field-rating .label {
	line-height: 1.5em;
}
.reviews-wrapper .form-wrap .field-rating .label > em {
	display: block;
	float: none;
}
.reviews-wrapper .form-wrap .field-rating .stars-rating {
	display: inline-block;
	position: absolute;
	top: 3px;
	right: 12px;
}
.reviews-wrapper .form-wrap .actions {
	margin-top: 14px;
}
.reviews-wrapper .form-wrap > h2 {
	display: block;
	color: #003562;
	font-size: 23px;
	font-weight: 400;
	margin: 0 0 15px;
}





/* Social media */
.socialmedia-buttons {
	display: block;
	position: relative;
	overflow: hidden;
}
.socialmedia-buttons > .buttons {
	display: inline-block;
	position: relative;
}
.socialmedia-buttons > .buttons::before,
.socialmedia-buttons > .buttons::after {
	content: ' ';
	height: 2px;
	width: 500px;
	background: #fff;
	position: absolute;
	top: 20px;
	left: -25px;
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
}
.socialmedia-buttons > .buttons::after {
	left: auto;
	right: -25px;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
}
.socialmedia-buttons .button {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0 1px;
}
.socialmedia-buttons .button > img {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	transition: 0.4s;
	width: 24px;
}
.socialmedia-buttons .button.icon-insta > img {
	width: 23px;
}
.socialmedia-buttons .button.icon-linkedin > img {
	width: 22px;
	margin-top: -1px;
}
.socialmedia-wrapper {
	color: #fff;
	background: #003562;
}
.socialmedia-wrapper .center {
	text-align: center;
}
.socialmedia-wrapper .komo-branding {
	text-align: center;
}
.socialmedia-wrapper .komo-branding > p {
	font-size: 20px;
	font-weight: 300;
	margin: 35px 0 20px;
}
.socialmedia-wrapper .komo-branding > .brands {
	display: inline-block;
	background: #fff;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 7px 11px 7px 10px;
	overflow: hidden;
}
.socialmedia-wrapper .komo-branding > .brands > .item {
	display: inline-block;
	vertical-align: middle;
}
.socialmedia-wrapper .komo-branding > .brands > .item > img {
	display: block;
	max-height: 50px;
	max-width: 60px;
	margin: 0 3px;
}
.socialmedia-wrapper .komo-branding > .brands > .item-politie > img {
	width: 40px;
}
.socialmedia-wrapper .komo-branding > .brands > .item-skg > img {
	width: 50px;
}
.socialmedia-wrapper .komo-branding > .brands > .item-ral > img {
	width: 35px;
}
.socialmedia-wrapper .komo-branding > .brands > .item-veka > img {
	width: 40px;
}
.socialmedia-wrapper .komo-branding > .brands > .item-passiefhuis > img {
	width: 44px;
}
.socialmedia-wrapper .komo-branding > .brands > .item-ce > img {
	width: 40px;
}



/* Projects */
.projects-wrapper {
	display: block;
	position: relative;
}
.projects-wrap .projects-back {
	margin: 18px 0 0;
}
.projects-wrap .projects-list {
	display: block;
}
.projects-wrap .projects-list.is-right {
	padding-left: 40px;
}
.projects-wrap .projects-list:not(.is-right) {
	padding-right: 40px;
}

.projects-wrap .projects-article {
	margin-bottom: 25px;
}

.projects-wrap .projects-list > h2 {
	display: block;
	color: #fff;
	background: #003562;
	font-size: 18px;
	font-weight: 400;
	padding: 10px 15px 10px;
	margin: 0;
}
.projects-wrap .projects-list > ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
}
.projects-wrap .projects-list > ul > li {
	display: block;
	margin-top: 2px;
}
.projects-wrap .projects-list > ul > li > a {
	display: block;
	background: #f5f5f5;
	padding: 7px 14px 7px;
	line-height: 1.3em;
	font-size: 14px;
	transition: 0.2s;
	max-height: 52px;
	overflow: hidden;
}
.projects-wrap .projects-list > ul > li.active > a {
	color: #fff;
	background: #ec691b;
	font-weight: 600;
}
.projects-wrap .projects-list > ul:hover > li.active > a {
	color: #ec691b;
	background: #f5f5f5;
}
.projects-wrap .projects-list > ul > li > a:hover,
.projects-wrap .projects-list > ul > li > a:focus {
	color: #003562;
	background: #fff !important;
	padding-left: 20px;
}

/* Projects - Gallery */
.projects-gallery {
	display: block;
	position: relative;
	font-size: 0;
}
.projects-gallery > .row {
	margin: 0 -10px;
}
.projects-gallery > .row > div {
	padding: 0 10px;
}
.projects-gallery .project-item {
	display: block;
	position: relative;
	font-size: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	overflow: hidden;
}
.projects-gallery .project-item > .image {
	display: block;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	overflow: hidden;
	height: 220px;
}
.projects-gallery .project-item > .image > img {
	display: block;
	transition: 0.3s;
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
}
.projects-gallery .project-item > .content {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	transition: 0.35s;
}
.projects-gallery .project-item > .content > span {
	display: block;
	position: relative;
	color: #003562;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 600;
	padding: 11px 16px 11px;
}
.projects-gallery .project-item > .image > img {
	-webkit-transform: scale(1.01) translateX(-50%) translateY(-50%);
	transform: scale(1.01) translateX(-50%) translateY(-50%);
}
.projects-gallery.hover .project-item:hover > .image > img {
	-webkit-transform: scale(1.1) translateX(-50%) translateY(-50%);
	transform: scale(1.1) translateX(-50%) translateY(-50%);
}
.projects-gallery.discrete .project-item:hover > .image > img {
	-webkit-transform: scale(1.1) translateX(-50%) translateY(-50%);
	transform: scale(1.1) translateX(-50%) translateY(-50%);
}
.projects-gallery.discrete .project-item > .content {
	background: rgba(245, 245, 245, 0.75);
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
}
.projects-gallery.discrete .project-item:hover > .content {
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
}
.projects-gallery.hover .project-item > .content {
	top: 0;
	background: rgba(245, 245, 245, 0.86);
}
.projects-gallery.hover .project-item:hover > .content {
	opacity: 0;
}
.projects-gallery.hover .project-item > .content > span {
	font-size: 20px;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}



/* Quotation */
.quotation-wrap {
	display: block;
	position: relative;
}
.quotation-wrap .quotation-sticky {
	position: sticky;
	top: 200px;
}
.quotation-wrap .quotation-steps {
	display: block;
	position: relative;
	border-bottom: 2px solid #003562;
	margin-bottom: 30px;
}
.quotation-wrap .quotation-steps .step {
	display: inline-block;
	position: relative;
	vertical-align: top;
	color: #b7b7b7;
	background: #f5f5f5;
	padding: 15px 25px 15px 20px;
	border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	margin-right: 5px;
}
.quotation-wrap .quotation-steps .step.active {
	color: #ffffff;
	background: #003562;
}
.quotation-wrap .quotation-steps .step.complete {
	color: #003562;
	background: #f5f5f5;
}
.quotation-wrap .quotation-steps .step.complete::after {
	display: inline-block;
	content: ' ';
	width: 30px;
	height: 30px;
	background-image: url('/images/icon-check.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
	position: absolute;
	top: 11px;
	right: 15px;
}
.quotation-wrap .quotation-steps .step > strong {
	font-size: 18px;
	font-weight: 600;
}
.quotation-wrap .quotation-steps .step > p {
	font-size: 14px;
	margin: 1px 0 0;
}
.quotation-wrap .quotation-steps .step-description {
	display: block;
	position: absolute;
	top: 8px;
	right: 0;
	width: 360px;
	color: #ec691b;
	font-weight: 100;
	font-size: 18px;
	line-height: 1.4em;
	text-align: center;
}
.quotation-wrap .quotation-additional {
	padding-left: 15px;
}



/* Quotation - Preview */

.quotation-wrap .preview-wrap {
	display: block;
	overflow: hidden;
	position: relative;
	padding-right: 5%;
	border: 2px solid #003562;
	object-fit: cover;
	border-radius: 4px;
	max-width: 100%;
	width: 360px;
}

.quotation-wrap .preview-wrap.bottom {
	margin-bottom: 15px;
}

.quotation-wrap .preview-options {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 15px;

	& > .options {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;

		@media all and (min-width: 576px) {
			.option-item:first-child {
				margin-top: 0 !important;
			}
		}

	}
}

@media all and (max-width: 575px) {

	.quotation-wrap .preview-options {
		flex-direction: column-reverse;
		gap: 10px;

		& > .options {
			display: block;
		}
	}

}



.quotation-wrap .preview-image {
	display: block;
	position: relative;
	transition: 0.25s;
	opacity: 1;
}

.quotation-wrap .preview-wrap.has-bottom {
	margin-bottom: 20px;
}

.quotation-wrap .preview-wrap.aspect-ratio > .preview-image {
	aspect-ratio: 1.275;
	overflow: hidden;
}

.quotation-wrap .preview-image.faded {
	opacity: 0;
}
.quotation-wrap .preview-image .layer:not(.layer-bricks) {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.quotation-wrap .preview-image .layer.layer-bricks {
	z-index: 10;
}
.quotation-wrap .preview-image .layer.layer-frame {
	z-index: 20;
}
.quotation-wrap .preview-image .layer.layer-window {
	z-index: 30;
}
.quotation-wrap .preview-image .layer.layer-glass {
	z-index: 40;
}

.preview-image-article {
	font-size: 13px;
}
.preview-image-article:not(.text-left) {
	text-align: center;
}


/* Quotation - Table */
.quotation-wrap table {


}

.quotation-wrap table b,
.quotation-wrap table strong {
	font-weight: 600;
}




/* Quotation - Form */
.quotation-wrap .fieldset {
	display: block;
	position: relative;
	background: #f5f5f5;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin-bottom: 20px;
	padding: 16px 20px 20px;
}
.quotation-wrap .fieldset > label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 9px;
	color: #003562;
}
.quotation-wrap .fieldset.disabled {
	opacity: 0.6;
}
.quotation-wrap .fieldset.disabled::before,
.quotation-wrap .actions.disabled::before{
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 300;
}
.quotation-wrap .fieldset.disabled > label {
	color: #b7b7b7;
}
.quotation-wrap .fieldset .actions {
	padding: 7px 0;
	margin-top: 5px;
}
.quotation-wrap .fieldset .actions:not(.left):not(.text-left) {
	text-align: right;
}
.quotation-wrap .fieldset.disabled .actions,
.quotation-wrap .actions.disabled {
	opacity: 0.35;
}
.quotation-wrap .fieldset .actions .button {
	margin: 10px 0 0 10px;
}
.quotation-wrap .fieldset .actions .button.zero {
	margin: 0 !important;
}

.quotation-wrap .optionset {
	display: block;
	position: relative;
	font-size: 0;
}
.quotation-wrap .optionset .optiondesc > p {
	font-size: 13px;
	padding: 0 0 10px;
	margin: 0;
}
.quotation-wrap .fieldset.disabled .optionset {
	opacity: 0.3;
}
.quotation-wrap .optionset .checkbox-more > label.checkbox {
	background-color: #e0e0e0;
	background-image: url('/images/icon-plus.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 19px;
}
.quotation-wrap .optionset .checkbox-item {
	display: inline-block;
	vertical-align: top;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox {
	cursor: pointer;
	display: block;
	position: relative;
	width: 35px;
	height: 35px;
	margin-right: 5px;
	margin-top: 5px;
	border: 1px solid #e2e2e2;
	font-size: 14px;
	transition: 0.15s;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox.active {
	border: 1px solid #ec691b;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox::after {
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
	border: 2px solid #ec691b;
	box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.8);
	transition: 0.15s;
	opacity: 0;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox.active::after {
	opacity: 1;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox > input {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox > span {
	display: inline-block;
	position: absolute;
	left: -1px;
	bottom: 1px;
	transition: 0.25s;
	font-size: 11px;
	line-height: 1.4em;
	padding: 4px 8px 5px;
	white-space: nowrap;
	color: #fff;
	background: #ec691b;
	border-radius: 3px 3px;
	-moz-border-radius: 3px 3px;
	-webkit-border-radius: 3px 3px;
	transform: scale(0) translateY(100%);
	-webkit-transform: scale(0) translateY(100%);
	transform-origin: 0 100%;
	-webkit-transform-origin: 0 100%;
	opacity: 0;
	z-index: 850;
}
.quotation-wrap .optionset .checkbox-item:hover > label.checkbox > span {
	opacity: 1;
	transform: scale(1) translateY(100%);
	-webkit-transform: scale(1) translateY(100%);
}
.quotation-wrap .optionset .checkbox-item > label.checkbox > span::before {
	content: ' ';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: #ec691b;
	position: absolute;
	top: -4px;
	left: 18px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	z-index: -1;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox > img {
	display: block;
	width: 100%;
	height: 100%;
}
.quotation-wrap .optionset .checkbox-item > label.checkbox > .colour {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.quotation-wrap .selection-screen .row {
	margin: 0 -10px;
}
.quotation-wrap .selection-screen .row > div {
	padding: 0 10px;
}
.quotation-wrap .selection-screen .select-item {
	display: block;
	position: relative;
	background: #f5f5f5;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin-bottom: 20px;
	padding: 16px 20px 20px;
	border: none;
	outline: none;
	width: 100%;
}
.quotation-wrap .selection-screen .select-item .name {
	display: block;
	text-align: center;
	font-size: 15px;
	line-height: 1.3em;
	min-height: 40px;
}

.quotation-wrap .selection-screen .select-item .image {
	display: block;
	height: 160px;
	margin: 15px 0 15px;
	text-align: center;
}
.quotation-wrap .selection-screen .select-item .image > img {
	display: inline-block;
	max-width: 100%;
	max-height: 95%;
}
.quotation-wrap .selection-screen .select-item .action {
	text-align: center;
}
.quotation-wrap .selection-screen .select-item .action > .button {
	margin: 0 0 5px;
}
.quotation-wrap .fields.bottom {
	margin-bottom: 20px;
}

.quotation-wrap .strong-title,
.quotation-wrap .fields.has-title > strong:first-child,
.quotation-wrap .fields > strong.title {
	margin-bottom: 10px;
}

.quotation-wrap .strong-title,
.quotation-wrap .field-label > strong,
.quotation-wrap .fields > strong {
	display: inline-block;
	color: #003562;
	font-size: 15px;
	font-weight: 600;
}

.quotation-wrap .field-label > label,
.quotation-wrap .field-label > strong {
	margin-bottom: 0 !important;
}

.quotation-wrap .strong-title.compact,
.quotation-wrap .field-label.compact > strong,
.quotation-wrap .fields > strong.compact {
	font-size: 14px;
}

.quotation-wrap .field-label {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	vertical-align: middle;
	line-height: 22px;
	gap: 0 8px;
}

.quotation-wrap .field-label.relative {
	position: relative;
}

.quotation-wrap .field-label:not(.default) {
	min-height: 32px;
}

.quotation-wrap .field-label.bottom {
	margin-bottom: 10px;
}

.quotation-wrap .field-label.reverse {
	flex-direction: row-reverse;
	justify-content: start;
}

.quotation-wrap .fields .price em {
	font-style: normal;
}
.quotation-wrap .fields .price small {
	display: block;
	white-space: nowrap;
}

.quotation-wrap .fields .price:not(.basic) {
	color: #ec691b;
	font-size: 22px;
	font-weight: 400;
}
.quotation-wrap .fields .price.theme {
	font-size: 16px;
	font-weight: 600;
	color: #003562;
}
.quotation-wrap .fields .price.bold {
	font-weight: 600;
}
.quotation-wrap .fields .price.orange {
	color: #ec691b;
}
.quotation-wrap .fields .price.blue {
	color: #003562;
}
.quotation-wrap .fields .price:not(.basic) small {
	font-size: 17px;
}




.quotation-wrap .fields .inline-field {
	position: relative;
	margin-bottom: 5px;
}
.quotation-wrap .fields .inline-field.has-label {
	padding-left: 110px;
}
.quotation-wrap .fields .inline-field > label {
	font-size: 13px;
	position: absolute;
	top: 4px;
	left: 0;
}

.quotation-wrap .fields .help-bottom {
	display: block;
	line-height: 1.6em;
}

.quotation-wrap .fields .help-bottom a:not(.button):not(.no-underline) {
	text-decoration: underline;
}

.quotation-wrap .help-color,
.quotation-wrap .fields .help-bottom {
	color: #a6a6a6;
}

.quotation-wrap .fields .help-bottom.light {
	color: #b5b5b5;
}

.quotation-wrap .fields .help-bottom.black {
	color: #000;
}

.quotation-wrap .fields .help-bottom:not(.relative) {
	position: absolute;
	left: 15px;
	bottom: -60px;
}
.quotation-wrap .row-field label {
	display: block;
	font-size: 13px;
	line-height: 1.35em;
}

.quotation-wrap .row-field .row,
.quotation-wrap .row-field .row > * {
	position: static;
}


@media all and (min-width: 768px) {

	.quotation-wrap .row-field .row {
		margin-left: -5px;
		margin-right: -5px;
	}
	.quotation-wrap .row-field .row > * {
		padding-left: 5px;
		padding-right: 5px;
	}

}


.quotation-wrap .fields .set {
	display: block;
	position: relative;
	width: 100%;
}
.quotation-wrap .fields .set.min-24 {
	min-height: 24px;
}
.quotation-wrap .row-field {
	display: block;
	position: relative;
	margin: 10px 0;
}
.quotation-wrap .row-field input[type="text"],
.quotation-wrap .row-field input[type="number"],
.quotation-wrap .row-field input[type="email"],
.quotation-wrap .row-field input[type="password"],
.quotation-wrap .row-field textarea,
.quotation-wrap .row-field select,
.quotation-wrap .fields .set > input[type="text"],
.quotation-wrap .fields .set > input[type="number"],
.quotation-wrap .fields .set > input[type="email"],
.quotation-wrap .fields .set > input[type="password"],
.quotation-wrap .fields .set > textarea,
.quotation-wrap .fields .set > select {
	width: 100%;
	min-width: 110px;
	font-size: 14px;
	box-shadow: none;
	padding: 3px 9px;
	line-height: 24px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-webkit-appearance: none !important;
	border: 1px solid #e0e0e0;
	background: #ffffff;
}
.quotation-wrap .row-field textarea,
.quotation-wrap .fields .set > textarea {
	height: 110px;
	margin-top: 12px;
}

.quotation-wrap .fields .set > .label {
	display: inline-block;
	position: absolute;
	top: 4px;
	left: 8px;
	z-index: 100;
	font-size: 12px;
}

.quotation-wrap .fields .set > .label.right {
	left: auto;
	right: 8px;
	min-width: 18px;
	min-height: 22px;
}

.quotation-wrap .fields .set > .label.flex {
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	line-height: 1em;
	bottom: 2px;
	top: 2px;
}

.quotation-wrap .fields .set > .label.white {
	background-color: #fff;
}

.quotation-wrap .fields .set[data-webkit]:hover > .label:not(.static):not(.forced) {
	opacity: 0;
}




.quotation-wrap .fields .set > .label:not(.events) {
	pointer-events: none;
}
.quotation-wrap .fields .set > .label > .arrow {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #acacac;
	position: absolute;
	top: 9px;
	right: 3px;
}
.quotation-wrap .options .option-item {
	display: block;
	position: relative;
	width: 100%;
	background: #f9f9f9;
	padding: 25px 20px 20px;
	border: 2px solid #ffff;
	margin: 5px 0px;
	border-radius: 4px;
	transition: 0.2s;
}

.quotation-wrap .options .option-item.option-compact {
	padding: 6px 10px;
	font-size: 13px;
}
.quotation-wrap .options .option-item.option-inline {
	display: inline-block;
	width: auto;
}

.quotation-wrap .options .option-item:not(.static):not(.disabled):not([disabled]) {
	cursor: pointer;
}

.quotation-wrap .options .col-option.is-disabled .option-item {
	background-color: white;
	cursor: not-allowed !important;
}


.quotation-wrap .options .col-option.is-disabled .option-item .prices,
.quotation-wrap .options .col-option.is-disabled .option-item .images,
.quotation-wrap .options .col-option.is-disabled .option-item .option-icon,
.quotation-wrap .options .col-option.is-disabled .option-item .name:not(.has-warning) {
	opacity: 0.3;
}

.quotation-wrap .options .col-option.is-disabled .option-item .images {
	pointer-events: none !important;
}

.quotation-wrap .options .option-item > input {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
}

.quotation-wrap .options .option-item .option-icon {
	display: inline-flex;
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px #a6a6a6;
}

.quotation-wrap .options .option-item:not(.active) .option-icon svg {
	opacity: 0;
}


.quotation-wrap .options .option-item.gray {
	color: #8f8f8f;
}

.quotation-wrap .options .option-item.active {
	border: 2px solid #ec691b;
}
.quotation-wrap .options .option-item.active .name {
	color: #ec691b;
}


.quotation-wrap .options .option-item.active.theme {
	border: 2px solid #003662;
}
.quotation-wrap .options .option-item.theme,
.quotation-wrap .options .option-item.theme .name {
	color: #003662;
}

.quotation-wrap .options .option-item.active.theme,
.quotation-wrap .options .option-item.active.theme .name {
	color: #003662;
}

.quotation-wrap .options .option-item .images,
.quotation-wrap .options .option-item > .icon {
	display: block;
	text-align: center;
	margin-bottom: 15px;
}

.quotation-wrap .options .option-item .images > img {
	margin: 0 auto;
	max-width: 100%;
	width: 192px;
}

.quotation-wrap .options .option-item .images.bottom-10 {
	margin-bottom: 10px;
}

.quotation-wrap .options .option-item .name {
	display: block;
	text-align: center;
	transition: 0.2s;
	font-weight: 600;
	line-height: 1.35em;
	color: #8f8f8f;
}
.quotation-wrap .options .option-item .name.space-between {
	display: flex;
	justify-content: space-between;
}

.quotation-wrap .options .option-item .name.subtitle {
	font-weight: 400;
	font-size: 13px;
}
.quotation-wrap .options .option-item .name.subtitle:not(:first-child) {
	margin-top: 10px;
}
.quotation-wrap .options .option-item .name.subtitle > .help-section {
	margin-right: 4px;
}

.quotation-wrap .options .option-item .name.subtitle > .help-section .help-contents {
	padding-top: 25px;
}

.quotation-wrap .options .option-item .name.compact {
	line-height: 1.25em;
}

.quotation-wrap .options .option-item .name > p {
	margin: 10px 0;
}

.quotation-wrap .options .option-item .name.has-warning {
	padding-left: 22px;
}

.quotation-wrap .options .option-item .name.has-warning > .icon-warning {
	position: absolute;
	aspect-ratio: 1;
	height: 12px;
	top: 2px;
	left: 0;
}

.quotation-wrap .options .option-item.is-flex .content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1 1;
}

.quotation-wrap .options .option-item .prices {
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e2e2e2;
}

.quotation-wrap .options .option-item .extra-options {
	display: block;
	position: relative;
	margin-top: 10px;
}

.quotation-wrap .options .option-item:not(.active) .extra-options {
	pointer-events: none;
}

.quotation-wrap .options .option-item .extra-options > label {
	display: block;
	font-weight: 400;
	font-size: 13px;
}

.quotation-wrap .options .option-item.is-left .name {
	text-align: left;
}

.quotation-wrap .options .option-item.is-flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.quotation-wrap .options .option-item .icon-zoom {
	position: absolute;
	width: 18px;
	bottom: 0;
	left: 0;
	z-index: 5;
}

.quotation-wrap .options .option-item .doorframe {
	display: inline-block;
	width: 60px;
	height: 95px;
	background: #003562;
	perspective: 130px;
	-webkit-perspective: 130px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.quotation-wrap .options .option-item .doorframe > .door {
	display: block;
	position: relative;
	width: 60px;
	height: 95px;
	background: #ec691b;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.quotation-wrap .options .option-item .doorframe > .door::before {
	content: ' ';
	display: inline-block;
	width: 14px;
	height: 4px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #003562;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.quotation-wrap .options .option-item .doorframe.left > .door::before {
	left: auto;
	right: 10px;
}
.quotation-wrap .options .option-item .doorframe.left > .door {
	transform: rotateY(45deg);
	-webkit-transform: rotateY(45deg);
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	margin-left: -1px;
}
.quotation-wrap .options .option-item .doorframe.right > .door {
	transform: rotateY(-45deg);
	-webkit-transform: rotateY(-45deg);
	transform-origin: 100% 100%;
	-webkit-transform-origin: 100% 100%;
}
.quotation-wrap .options .option-item .doorframe.slide > .door {
	width: 55px;
	height: 85px;
	margin-top: 6px;
	margin-left: 20px;
}
.quotation-wrap .options .option-item .doorframe.slide {
	width: 55px;
	height: 85px;
	margin-left: -10px;
	margin-bottom: 10px;
}

.quotation-wrap .options .option-item .icon .doorstub {
	display: inline-block;
	width: 75px;
	height: 60px;
	background: #003562;
	perspective: 130px;
	-webkit-perspective: 130px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-left: -25px;
	margin-bottom: 10px;
}
.quotation-wrap .options .option-item .icon .doorstub.cover {
	height: 50px;
}
.quotation-wrap .options .option-item .icon .doorstub > .door {
	display: block;
	width: 70px;
	height: 40px;
	background: #ec691b;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	position: absolute;
	bottom: 0;
	right: -25px;
}
.quotation-wrap .options .option-item .icon .doorstub.stub {
	margin-bottom: 0px;
}
.quotation-wrap .options .option-item .icon .doorstub.cover > .door {
	bottom: -12px;
}
.quotation-wrap .options .option-item .icon .doorstub.cover::before,
.quotation-wrap .options .option-item .icon .doorstub.cover::after {
	content: ' ';
	display: inline-block;
	width: 28px;
	height: 28px;
	background: #ec691b;
	position: absolute;
	bottom: -6px;
	left: 17px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	z-index: -5;
}
.quotation-wrap .options .option-item .icon .doorstub.cover::after {
	width: 29px;
	height: 35px;
	background: #003562;
	bottom: 0px;
	left: 0;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	z-index: 20;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.quotation-wrap .fieldslide {
	display: block;
	position: relative;
	background: #fff;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.quotation-wrap .fieldslide:not(.zero.basic) {
	margin-top: 5px;
}


/*.quotation-wrap .fieldslide.basic.zero:first-child {*/
/*	border-radius: 3px 3px 0 0 !important;*/
/*}*/
/*.quotation-wrap .fieldslide.basic.zero:last-child {*/
/*	border-radius: 0 0 3px 3px !important;*/
/*}*/

/*.quotation-wrap .fieldslide.basic:not(:last-child) {*/
/*	border-bottom: 3px solid #f5f5f5;*/
/*}*/



/*.quotation-wrap .fieldslide.basic:not(:last-child) {*/
/*	border-bottom: 10px solid #f5f5f5;*/
/*}*/




.quotation-wrap .fieldslide:not(.zero):not(:last-child) {
	margin-bottom: 10px;
}
.quotation-wrap .fieldslide > .title {
	cursor: pointer;
	display: block;
	position: relative;
	padding: 14px 18px;
	padding-right: 48px;
	margin: 0;
}
.quotation-wrap .fieldslide > .title::before,
.quotation-wrap .fieldslide > .title::after {
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 24px;
	right: 20px;
	width: 18px;
	height: 2px;
	background: #606060;
	transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: 0.3s;
}
.quotation-wrap .fieldslide > .title::after {
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}


.quotation-wrap .fieldslide.active > .title:not(.with-minus)::before {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.quotation-wrap .fieldslide.active > .title:not(.with-minus)::after {
	transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
}


.quotation-wrap .fieldslide.active > .title.with-minus::before {
	opacity: 0;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.quotation-wrap .fieldslide.active > .title.with-minus::after {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}



.quotation-wrap .fieldslide > .title strong {
	display: inline-block;
	vertical-align: middle;
	font-weight: 600;
	transition: 0.2s;
}

.quotation-wrap .fieldslide > .title .field-label:not(:last-child):not(.zero),
.quotation-wrap .fieldslide > .title > strong:not(:last-child):not(.zero) {
	margin-right: 8px;
}


.quotation-wrap .fieldslide.theme > .title::before,
.quotation-wrap .fieldslide.theme > .title::after {
	background: #003662;
}
.quotation-wrap .fieldslide.theme > .title strong {
	color: #003662;
}


.quotation-wrap .fieldslide.active > .title::before,
.quotation-wrap .fieldslide.active > .title::after {
	background: #ec691b;
}
.quotation-wrap .fieldslide.active > .title strong {
	color: #ec691b;
}


.quotation-wrap .fieldslide.theme.active > .title::before,
.quotation-wrap .fieldslide.theme.active > .title::after {
	background: #003662;
}
.quotation-wrap .fieldslide.theme.active > .title strong {
	color: #003662;
}



.quotation-wrap .fieldslide > .fieldswrap {
	display: block;
	padding: 8px 20px 14px;
	padding: 20px 20px 15px;
	border-top: 1px solid #f5f5f5;
}
.quotation-wrap .fieldslide > .fieldswrap:not(.overflow) {
	overflow: hidden;
}
.quotation-wrap .fieldslide > .fieldswrap article p:first-child {
	margin-top: 0;
}
.quotation-wrap .fieldslide > .fieldswrap article p:last-child {
	margin-bottom: 0;
}

.quotation-wrap .fieldslide > .fieldswrap.basic,
.quotation-wrap .fieldslide.basic > .fieldswrap {
	border-top: none !important;
	padding-top: 0 !important;
}

.quotation-wrap .quote-sidebar {
	padding-left: 15px;
}
.quotation-wrap .quote-sidebar .row.top {
	margin-top: 15px;
}
.quotation-wrap .quote-sidebar .buttons.bottom {
	margin-bottom: 15px;
}
.quotation-wrap .quote-sidebar .buttons > .button {
	width: 100%;
	margin: 15px 0 0;
}
.quotation-wrap .quote-sidebar .buttons > .button > strong {
	font-size: 18px;
	font-weight: 600;
}
.quotation-wrap .quote-sidebar .buttons > .button.disabled {
	background-color: transparent;
	border-color: transparent;
}
.quotation-wrap .quote-sidebar article h2 {
	display: inline-block;
	color: #003562;
	font-size: 20px;
	font-weight: 600;
	margin: 0 10px 10px 0;
}
.quotation-wrap .quote-sidebar article.thin h2 {
	font-weight: 500;
}

@media all and (max-width: 575px) {

	.quotation-wrap .quote-sidebar article h2 br {
		display: none !important;
	}

}

.quotation-wrap .quote-sidebar article:not(.regular) p {
	display: inline-block;
	margin: 0 0 0px;
}

.quotation-wrap .preview-window {
	display: block;
}
.quotation-wrap .preview-window:not(.zero) {
	margin: 35px 0;
}

.quotation-wrap .preview-window .label {
	display: block;
	text-align: center;
	margin-bottom: 15px;
	font-size: 13px;
}
.quotation-wrap .preview-window .image  {
	display: block;
	width: 260px;
	max-width: 100%;
	max-height: 100%;
	margin: 0px auto;
}

.preview-window.mirrored .image > img,
.quotation-wrap.mirrored .quote-sidebar .preview-window .image > img {
	transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
}


.quotation-wrap .preview-dimensions {
	display: flex;
	justify-content: center;
	gap: 5px;
	color: #a9a9a9;
	.number {
		display: inline-flex;
		font-weight: 600;
	}
	.divider {
		display: inline-flex;
		font-size: 13px;
	}
}


.quotation-wrap .quote-sidebar .fieldset {
	overflow: hidden;
}
.quotation-wrap .cart-wrap {
	margin: 0 -21px;
}
.quotation-wrap .quote-sidebar .cart-wrap table {
	width: 100%;
	margin: 25px 0 0;
}
.quotation-wrap .cart-wrap table tr th {
	font-weight: 600;
}
.quotation-wrap .cart-wrap table tr td {
	font-size: 14px;
	vertical-align: middle;
	padding-top: 8px;
	padding-bottom: 8px;
	line-height: 1.4em;
}
.quotation-wrap .cart-wrap table tr:nth-child(odd) td {
	background: #fcfcfc;
}
.quotation-wrap .cart-wrap table tr td:first-child {
	white-space: normal;
	padding-left: 20px !important;
}
.quotation-wrap .cart-wrap table tr td:last-child {
	padding-right: 20px !important;
}

.quotation-wrap .cart-wrap table tr td .action-buttons {
	vertical-align: -3px;
}

.quotation-wrap .cart-main .cart-row {
	display: block;
	margin: 0 -20px;
	padding: 0 20px 0;
}
.quotation-wrap .cart-main .cart-row:not(:first-child) {
	padding-top: 20px;
}
.quotation-wrap .cart-main .cart-row:nth-child(even) {
	background: #fcfcfc;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}
.quotation-wrap .cart-main .cart-row .remove {
	display: inline-block;
	margin-top: 15px;
	padding: 5px 10px 6px 11px;
	font-size: 14px;
}
.quotation-wrap .cart-main .cart-row .remove img {
	display: inline-block;
	vertical-align: -1px;
	margin-left: 6px;
	width: 12px;
}
.quotation-wrap .cart-main .cart-row .image {
	display: block;
	width: 180px;
	max-width: 100%;
	margin: 20px 0 30px;
}
.quotation-wrap .cart-main .cart-row table td {
	font-size: 14px;
	padding-right: 22px;
}

.quotation-wrap .actions-wrap,
.quotation-wrap .back-actions {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	gap: 10px;
}

.quotation-wrap .actions-wrap.space-between,
.quotation-wrap .back-actions.space-between {
	justify-content: space-between;
}
.quotation-wrap .actions-wrap.row-reverse,
.quotation-wrap .back-actions.row-reverse {
	flex-direction: row-reverse;
}



.quotation-wrap .actions-wrap.margin-top,
.quotation-wrap .back-actions.margin-top {
	margin-top: 20px;
}

.quotation-wrap .back-actions .actions.right {
	position: absolute;
	right: 0;
	top: 0;
}

.quotation-wrap .actions-wrap .back-actiond,
.quotation-wrap .actions-wrap .actions {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	gap: 10px;
}
.quotation-wrap .actions-wrap .actions > .button {
	margin: 0;
}





.quotation-wrap .back-actions > .button {
	margin: 0;
}

.quotation-wrap .usp-text {
	margin: 0 0 15px;
}

.quotation-wrap .usp-article {
	color: #003562;

}

.quotation-wrap .usp-article > strong:first-child {
	font-size: 16px;
	font-weight: 600;
	margin-right: 10px;
}

.quotation-wrap .usp-text span.static {
	display: inline-block;
	color: #003562;
	font-size: 16px;
	font-weight: 600;
	margin-right: 10px;
}
.quotation-wrap .usp-text span.label {
	display: inline-block;
	color: #8f8f8f;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 14px;
	font-weight: 600;
	padding: 5px 10px;
	margin: 3px 0;
}
.quotation-wrap .usp-text span.label.white {
	color: #ec691b;
	background: #ffffff;
}
.quotation-wrap .usp-text span.label.orange {
	color: #fff;
	background: #ec691b;
}



/* Modals */
.modal-wrap {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	background: rgba(0,0,0,0.7);
}
.modal-wrap > .container {
	display: block;
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	height: 100%;
}
.modal-wrap .modal {
	display: block;
	position: relative;
	background: #fff;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	max-width: 100%;
}
.modal-wrap .modal.small {
	width: 780px;
	margin: 0 auto;
}
.modal-wrap .modal.centered {
	top: 48%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.modal-wrap .modal .close {
	cursor: pointer;
	display: inline-block;
	width: 45px;
	height: 45px;
	background-image: url('/images/icon-close-white.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
	position: absolute;
	top: -50px;
	right: 0;
}
.modal-wrap .modal .content {
	padding: 35px 35px;
}
.modal-wrap .modal .content.compact {
	padding: 25px 25px;
}
.modal-wrap .modal .image {
	padding: 10px;
}
.modal-wrap .modal .image > img {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	overflow: hidden;
}

.modal-wrap .modal .actions.space-between {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px 15px;
}

.modal-wrap .modal .actions .buttons {
	display: inline-flex;
	gap: 15px 15px;
}

.modal-wrap .modal .actions .buttons .button {
	margin: 0;
}

@media all and (max-width: 575px) {

	.modal-wrap .modal .actions.space-between,
	.modal-wrap .modal .actions.space-between .buttons {
		flex-direction: column;
	}

}





/* Tabs */
.tabs-wrap .tabs-head {
	display: block;
	list-style: none;
	padding:0 ;
	margin: 0;
	margin-bottom: 30px;
}

.tabs-wrap .tabs-head:not(.no-border) {
	border-bottom: 2px solid #003562;
}
.tabs-wrap.orange .tabs-head:not(.no-border) {
	border-bottom: 2px solid #ec691b;
}

.tabs-wrap .tabs-head.overflow {
	overflow: auto;
	white-space: nowrap;
}

.tabs-wrap .tabs-head > li {
	display: inline-block;
	vertical-align: top;
}
.tabs-wrap .tabs-head > li > a {
	display: block;
	cursor: pointer;
	position: relative;
	vertical-align: top;
	color: #b7b7b7;
	color: #606060;
	background: #f5f5f5;
	border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	padding: 10px 12px 10px 12px;
}
.tabs-wrap .tabs-head:not(.flex) > li > a {
	margin-right: 5px;
}


.tabs-wrap .tabs-head.flex {
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	align-items: start;
	gap: 8px;
}
.tabs-wrap .tabs-head.flex > li > a {
	font-size: 0.9rem;
	white-space: nowrap;
	margin: 0 !important;
}




.tabs-wrap .tabs-head > li.active > a {
	color: #ffffff;
	background: #003562;
}
.tabs-wrap.orange .tabs-head > li.active > a {
	background: #ec691b;
}
.tabs-wrap .tab-item {
	display: none;
}
.tabs-wrap .tab-item.active {
	display: block;
}


/* Folders */
.folders-wrap .folder-item {
	display: block;
	position: relative;
	margin-bottom: 30px;
	border: 2px solid #003562;
}
.folders-wrap .folder-item .image {
	height: 360px;
	overflow: hidden;
}










/* Responsive medium desktop */
@media all and (max-width: 1199px) {
	.row.row-lg {
		display: block !important;
	}


	.header-wrapper .header-wrap .logo-wrap {
		width: 220px;
	}
	.header-menu .menu-wrap > .menu > li > a {
		padding: 12px 8px 13px;
	}




	/* Steps */
	.steps-wrapper .steps-wrap {
		margin-top: 55px;
	}
	.steps-wrap > .row {
		margin: 0 -22px;
	}
	.steps-wrap > .row > div {
		padding: 0 22px;
	}
	.steps-wrap .step-item {
		padding: 60px 25px 12px;
		z-index: 15;
	}
	.steps-wrap .step-item .image {
		width: 75px;
		top: -30px;
		right: 0;
		left: auto;
		transform: none;
		-webkit-transform: none;
		margin-top: 0;
	}
	.steps-wrap .step-item .image::before {
		background: #edeff1;
		border: 2px solid #edeff1;
		width: 80px;
		height: 76px;
	}
	.steps-wrap .step-wrap:not(.step-1)::before {
		left: -22px;
		background-size: 30px;
	}



	/* Projects */
	.projects-wrap .projects-list.is-right {
		padding-left: 20px;
	}
	.projects-wrap .projects-list:not(.is-right) {
		padding-right: 20px;
	}
	.projects-gallery .project-item > .image {
		height: 180px;
	}



	/* Quotation */
	.quotation-wrap .quotation-steps .step-description {
		display: block;
		width: 290px;
		font-size: 15px;
		font-weight: 100;
	}




}



/* Responsive small tablet */
@media all and (max-width: 991px) {
	.row.row-md {
		display: block !important;
	}
	.row.medium {
		margin: 0 -15px;
	}
	.row.medium > div {
		padding: 0 15px;
	}


	/* General */
	.article-intro {
		font-size: 16px;
		padding: 4px 0 6px;
	}
	.article-row:not(.no-margin) {
		margin-bottom: 30px;
	}
	.article-row.half-bottom:not(.no-margin) {
		margin-bottom: 20px;
	}



	/* Projects */
	.projects-wrap .projects-list.is-right {
		padding-left: 0px;
	}
	.projects-wrap .projects-list:not(.is-right) {
		padding-right: 0px;
	}




	/* Header USP */
	.header-wrapper .usp-wrap .usp-list ul > li:nth-child(4),
	.header-wrapper .usp-wrap .usp-list ul > li:nth-child(5),
	.header-wrapper .usp-wrap .usp-list ul > li:nth-child(6),
	.header-wrapper .usp-wrap .usp-list ul > li:nth-child(7) {
		display: none;
	}



	/* Header */
	body.ready .header-wrapper .header-fade,
	body.ready .header-wrapper .header-menu {
		transition: 0.25s;
	}
	body.menu-open .header-wrapper .header-fade {
		pointer-events: none;
		opacity: 0;
	}
	body:not(.menu-open) .header-wrapper .header-menu {
		pointer-events: none;
		opacity: 0;
	}
	body.menu-open .header-wrapper .header-wrap .logo-wrap::after {
		pointer-events: auto;
		opacity: 1;
	}




	.header-wrapper {
		min-height: 178px;
	}
	.header-wrapper .header-wrap .logo-wrap {
		width: 250px;
	}
	.header-wrapper .header-wrap .header-buttons {
		padding-right: 80px;
	}
	.header-wrapper .header-wrap .header-menu {
		position: absolute;
		z-index: 25;
		left: 0;
		right: 50px;
		justify-content: end;
	}

	.header-wrapper .header-navigation {
		display: flex;
		flex-direction: column-reverse;
	}

	.breadcrumbs-wrapper {
		padding: 6px 0;
	}




	/* Menu */

	.menu-wrapper {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0;
		z-index: 5;
		pointer-events: none;
	}

	body.menu-open .menu-wrapper {
		transform: translateY( 100% );
		pointer-events: auto;
		opacity: 1;
	}

	body.menu-open.scrolled .menu-wrapper {
		transform: translateY( 0% );
	}



	/*.menu-wrapper .menu-wrap > .menu {*/
	/*	white-space: normal;*/
	/*	padding: 15px 0 17px;*/
	/*}*/
	/*.menu-wrapper .menu-wrap > .menu > li {*/
	/*	display: block;*/
	/*}*/
	/*.menu-wrapper .menu-wrap > .menu > li::before {*/
	/*	content: ' ';*/
	/*	display: inline-block;*/
	/*	position: absolute;*/
	/*	top: -2px;*/
	/*	right: -500px;*/
	/*	bottom: -2px;*/
	/*	left: -500px;*/
	/*	z-index: 5;*/
	/*	transition: 0.3s;*/
	/*}*/
	/*.menu-wrapper .menu-wrap > .menu > li:hover::before {*/
	/*	background: #0c487d;*/
	/*}*/
	/*.menu-wrapper .menu-wrap > .menu > li > a {*/
	/*	display: block;*/
	/*	position: relative;*/
	/*	padding: 5px 0px;*/
	/*	z-index: 10;*/
	/*}*/
	/*.menu-wrapper .menu-wrap > .menu > li:hover > a {*/
	/*	padding-left: 10px;*/
	/*	background: none;*/
	/*}*/
	/*.menu-wrapper ul.menu > li > ul {*/
	/*	left: auto;*/
	/*	right: 0;*/
	/*	bottom: 32px;*/
	/*}*/




	/* Menu - Hamburger */
	.hamburger {
		display: block;
		cursor: pointer;
		position: absolute;
		top: 35px;
		right: 30px;
		width: 40px;
		z-index: 500;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	body.docked .hamburger {
		top: 26px;
	}
	.hamburger div {
		height: 4px;
		margin: 8px 0;
		background: #003562;
		border-radius: 5px;
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	body.menu-open .hamburger div {
		background: #d65712;
	}
	.hamburger.cross-pre div:nth-child(1) {
		-webkit-transform: translateY(11px);
		transform: translateY(11px);
	}
	.hamburger.cross-pre div:nth-child(2) {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	.hamburger.cross-pre div:nth-child(3) {
		-webkit-transform: translateY(-12px);
		transform: translateY(-12px);
	}
	.hamburger.cross div:nth-child(1) {
		-webkit-transform: translateY(12px) rotate(-45deg);
		transform: translateY(12px) rotate(-45deg);
	}
	.hamburger.cross div:nth-child(2) {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	.hamburger.cross div:nth-child(3) {
		-webkit-transform: translateY(-12px) rotate(45deg);
		transform: translateY(-12px) rotate(45deg);
	}


	/* Steps */
	.steps-wrap .step-item .image {
		display: inline-block;
		width: 80px;
		position: absolute;
		left: 8px;
		top: 50%;
		transform: translateY(-50%);
		margin-top: 18px;
	}
	.steps-wrap .step-item {
		padding: 25px 25px 25px 115px;
		min-height: 140px;
	}
	.steps-wrap .step-item .step {
		min-width: 88px;
	}
	.steps-wrap .row > div:not(:first-child) .step-item {
		margin-top: 30px;
	}
	.steps-wrap .step-wrap:not(.step-1)::before {
		display: none;
	}


	/* Questions */
	.questions-wrap:not(.full) {
		padding-left: 15px;
	}
	.quotation-wrap .quotation-steps .step-description {
		display: none;
	}
	.quotation-wrap .quotation-additional {
		margin-top: 20px;
		padding-left: 0px;
	}
	.quotation-wrap .quote-sidebar {
		padding-left: 0px;
	}
	.quotation-wrap .options .option-item .name {
		font-size: 14px;
	}


	/* Reviews */
	.reviews-wrapper .title.main {
		margin-bottom: 20px;
	}
	.reviews-wrapper .title.main > h2,
	.reviews-wrapper .title.main > h3 {
		font-size: 22px;
	}
	.reviews-wrap .review-item {
		height: auto;
	}
	.reviews-wrap .row > div:not(:first-child) .review-item {
		margin-top: 25px;
	}



	/* Projects */
	.projects-wrap .projects-list {
		padding-left: 0;
		padding-right: 0;
		margin-top: 40px;
	}

	.projects-gallery.hover .project-item > .content > span {
		font-size: 16px;
	}



}




/* Responsive extra small mobile */
@media all and (max-width: 767px) {

	.row.row-sm {
		display: block !important;
	}
	.article-row:not(.no-margin) {
		margin-bottom: 20px;
	}
	.article-row.half-bottom:not(.no-margin) {
		margin-bottom: 20px;
	}



	/* General */

	.wrapper {
		padding: 45px 0;
	}
	.wrapper.smaller {
		padding: 40px 0;
	}
	.title.main {
		margin-bottom: 25px;
	}



	/* Buttons */

	.button.large {
		font-size: 15px;
		padding: 10px 16px;
	}




	/* Header */

	.header-wrapper .header-wrap .header-buttons {
		display: none;
	}
	body.menu-open .header-wrapper .header-wrap .logo-wrap::after {
		opacity: 0;
	}
	.header-wrapper .usp-wrap .usp-list.flex-end ul {
		justify-content: start;
	}

	.hamburger,
	body.docked .hamburger {
		top: 26px;
	}


	/*.hamburger,*/
	/*body.docked .hamburger {*/
	/*	top: 26px;*/
	/*}
	/*.header-wrapper .header-wrap {*/
	/*	box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);*/
	/*}*/
	/*.header-wrapper .header-wrap > .container,*/
	/*body.docked .header-wrapper .header-wrap > .container {*/
	/*	height: 90px;*/
	/*}*/
	/*.header-wrapper .header-wrap .header-buttons {*/
	/*	display: none;*/
	/*}*/
	/*.header-wrapper .header-wrap .logo-wrap {*/
	/*	top: 26px;*/
	/*	width: 245px;*/
	/*	transform: none;*/
	/*	-webkit-transform: none;*/
	/*}*/
	/*.header-wrapper .usp-wrap .usp-list ul > li {*/
	/*	display: none;*/
	/*}*/
	/*.header-wrapper .usp-wrap .usp-list ul > li:first-child,*/
	/*.header-wrapper .usp-wrap .usp-list ul > li:last-child {*/
	/*	display: inline-block !important;*/
	/*}*/





	/* Navigation */

	.header-wrapper .header-wrap > .container,
	body.menu-open .header-wrapper .header-wrap > .container {
		height: 94px !important;
	}

	body.menu-open .header-wrapper .header-wrap.pull-usp {
		margin-top: 0 !important;
		box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0);
	}

	.header-wrapper .usp-wrap.usp-top {
		z-index: 650;
	}

	.header-wrapper .header-wrap {
		z-index: 670;
	}

	.menu-wrapper {
		position: fixed;
		overflow: auto;
		inset: 0;
		z-index: 640;
		padding-top: 132px;
		padding-bottom: 38px;
		transform: translateY(-100%);
		background-color: #fff;
		color: #0c487d;
	}

	body.menu-open .menu-wrapper {
		transform: translateY(0%);
	}

	.menu-wrapper .menu-wrap.mobile-only {
		display: block;
	}

	.menu-wrapper .menu-wrap > .menu {
		display: flex;
		flex-direction: column;
		margin-left: -20px;
		margin-right: -20px;
	}

	.menu-wrapper .menu-wrap > .menu > li {
		display: block;
		position: relative;
	}

	.menu-wrapper .menu-wrap > .menu > li > a {
		padding: 8px 20px;
		font-weight: 600;
	}
	.menu-wrapper .menu-wrap > .menu:not(:hover) > li.active > a {
		background: #f0f0f0;
	}
	.menu-wrapper .menu-wrap > .menu > li:hover > a {
		background: #f0f0f0;
	}
	.menu-wrapper ul.menu > li > ul {
		background: #f0f0f0;
		padding: 0 0 8px;
	}
	.menu-wrapper ul.menu > li > ul > li > a {
		color: #0c487d;
		padding: 8px 20px;
		font-weight: 600;
	}
	.menu-wrapper ul.menu > li > ul > li:hover > a,
	.menu-wrapper ul.menu > li > ul > li.active > a {
		color: #0c487d;
	}





	/* Background */
	.background-wrapper .background-content > .content-wrap .article {
		font-size: 18px;
	}




	/* Steps */
	.steps-wrapper .steps-wrap {
		margin-top: 35px;
	}
	.steps-wrap .more-wrap {
		margin-top: 40px;
	}
	.steps-wrap .more-wrap .more-text {
		text-align: center;
	}
	.steps-wrap .more-wrap .more-button {
		text-align: center;
	}
	.steps-wrap .more-wrap .more-button .button {
		margin: 15px 0 0 0;
	}


	/* Television */
	.television-wrapper {
		text-align: center;
	}
	.television-wrapper .television-article {
		margin: 0;
	}
	.television-wrapper .television-article > .article {
		width: 100%;
		margin: 0 0 15px 0;
	}
	.television-wrapper .television-image {
		margin-top: 20px;
		text-align: center;
	}
	.television-wrapper .television-article .brands > .item {
		margin: 0 6px;
	}


	/* News */
	.news-wrap .more {
		margin-top: 18px;
	}


	/* Questions */
	.questions-wrap {
		padding-left: 0;
		margin-top: 40px;
	}





	/* Folders */
	.folders-wrap .row {
		margin: 0 -7px;
	}
	.folders-wrap .row > div {
		padding: 0 7px;
	}
	.folders-wrap .folder-item {
		margin-bottom: 14px;
	}
	.folders-wrap .folder-item .image {
		height: auto;
	}



	/* Quotation */
	.quotation-wrap .fieldset {
		padding: 12px 15px 15px;
	}
	.quotation-wrap .fieldslide:not(.zero):not(:last-child) {
		margin-bottom: 15px;
	}
	.quotation-wrap .fieldslide > .fieldswrap {
		padding: 8px 18px 10px;
	}

	.quotation-wrap .selection-screen .row {
		margin: 0 -7px;
	}
	.quotation-wrap .selection-screen .row > div {
		padding: 0 7px;
	}
	.quotation-wrap .selection-screen .select-item {
		margin-bottom: 15px;
	}
	.quotation-wrap .selection-screen .select-item .name {
		font-size: 14px;
		overflow: hidden;
	}
	.quotation-wrap .selection-screen .select-item .image {
		height: 130px;
	}
	.quotation-wrap .cart-main .cart-row .image {
		display: block;
		width: 130px;
		max-width: 100%;
		margin: 15px 0 10px;
	}
	.quotation-wrap .row-field label {
		display: block;
		font-size: 13px;
		line-height: 1.35em;
		margin-bottom: 3px;
		font-weight: 600;
	}
	.quotation-wrap .tabs-wrap .tabs-head {
		margin-bottom: 15px;
	}
	.quotation-wrap .tabs-wrap .tabs-head > li {
		display: block;
	}
	.quotation-wrap .tabs-wrap .tabs-head > li > a {
		display: block;
	}
	.quotation-wrap .tabs-wrap .tabs-head:not(.flex) > li > a {
		margin: 0 0 8px 0;
	}
	.quotation-wrap .quotation-steps .step {
		display: block;
		border-radius: 4px 4px;
		-moz-border-radius: 4px 4px;
		-webkit-border-radius: 4px 4px;
		margin: 0 0 8px 0;
	}
	.quotation-wrap .quotation-steps .step > p {
		position: absolute;
		top: 15px;
		left: 90px;
	}
	.quotation-wrap .fields .help-bottom {
		display: block;
		position: static;
		margin: 15px 0;
	}

	.quotation-wrap .selection-screen .select-item {
		padding: 10px 15px 15px;
	}
	.quotation-wrap .selection-screen .select-item .name {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 54px;
		height: 54px;
	}
	.quotation-wrap .selection-screen .select-item .action > .button {
		margin: 0;
		width: 100%;
	}








}






/* Responsive extra small mobile */
@media all and (max-width: 500px) {

	body {
		font-size: 14px;
	}

	table td,
	table th {
		white-space: normal;
	}

	table:not(.default) td,
	table:not(.default) th {
		padding-right: 15px;
	}

	form.form .field {
		margin-bottom: 15px;
	}

	form.form .field .file-input,
	form.form .field input[type="text"],
	form.form .field input[type="email"],
	form.form .field input[type="password"],
	form.form .field select,
	form.form .field textarea {
		padding: 6px 9px 7px;
	}


	.tabs-wrap .tabs-head > li > a {
		border-radius: 4px;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		padding: 8px 14px 8px 14px;
		padding: 10px 15px;
	}

	.quotation-wrap .quotation-steps .step {
		padding: 12px 15px;
	}

	.quotation-wrap .quotation-steps .step > p {
		position: absolute;
		top: 11px;
		left: 80px;
	}

	.quotation-wrap .quote-sidebar .buttons > .button {
		margin-top: 10px;
	}




	h1,
	.title > h1 {
	font-size: var(--font-size-h1);
		line-height: 1.2em;
	}
	h2,
	.title > h2 {
	font-size: var(--font-size-h2);
		line-height: 1.2em;
	}
	h3,
	.title > h3 {
		font-size: var(--font-size-h3);
		line-height: 1.2em;
	}

	.title > .subtitle {
		font-size: 16px;
	}

	.wrapper {
		padding: 30px 0;
	}

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.scroll-up {
		right: 0px;
	}

	.hamburger,
	body.docked .hamburger {
		top: 16px;
		transform: scale(0.835);
	}


	.socialmedia-buttons .button {
		width: 36px;
		height: 36px;
	}
	.socialmedia-buttons .button > img {
		transform: translateY(-50%) translateX(-50%) scale(0.835);
		-webkit-transform: translateY(-50%) translateX(-50%) scale(0.835);
	}

	.socialmedia-buttons > .buttons::before {
		left: -15px;
	}

	.socialmedia-buttons > .buttons::after {
		right: -15px;
	}

	.socialmedia-wrapper .komo-branding > p {
		font-size: 16px;
		width: 200px;
		margin-left: auto;
		margin-right: auto;
	}

	.news-wrap .news-item {
		padding: 20px;
	}

	.news-wrap .news-item > article h2,
	.news-wrap .news-item > article h3 {
		font-size: 20px;
	}


	.reviews-wrap .review-item {
		padding: 20px;
	}

	.reviews-wrapper .title.main > h2,
	.reviews-wrapper .title.main > h3 {
		font-size: 20px;
	}

	.reviews-wrap .review-item .score {
		padding: 10px 12px 10px;
		font-size: 24px;
		min-width: 54px;
	}







	/* Header */

	.header-wrapper {
		min-height: 150px;
	}

	.header-wrapper .header-wrap > .container,
	body.menu-open .header-wrapper .header-wrap > .container {
		height: 74px !important;
		min-height: 74px;
	}

	.header-wrapper .header-wrap .logo-wrap {
		/*width: 212px;*/
		width: 185px;
	}




	/* Navigation */

	.menu-wrapper {
		padding-top: 112px;
		padding-bottom: 38px;
	}

	.menu-wrapper .menu-wrap > .menu {
		margin-left: -15px;
		margin-right: -15px;
	}

	.menu-wrapper .menu-wrap > .menu > li > a,
	.menu-wrapper ul.menu > li > ul > li > a {
		padding: 8px 15px;
	}





	/* Background */

	.background-wrapper {
		height: auto;
		padding-top: 0;
	}
	.background-wrapper .background {
		height: auto;
		padding-top: 0;
	}
	.background-wrapper .background-content > .content-wrap {
		position: static;
		top: auto;
		transform: none;
		-webkit-transform: none;
		margin: 20px 0 110px;
	}

	/*.background-wrapper .background-content > .content-wrap .article {*/
	/*	font-size: 21px;*/
	/*}*/
	/*.background-wrapper .background-content > .content-wrap .button {*/
	/*	line-height: 1.3em;*/
	/*}*/

	.background-wrapper .scroll-down {
		bottom: 10px;
	}






	/* Maps */

	.maps-wrapper .maps-wrap {
		background: #003562;
	}
	.maps-wrapper .maps-bottom ul {
		padding: 10px 20px 5px 15px;
	}
	.maps-wrapper .maps-bottom ul > li {
		display: block;
	}
	.maps-wrapper .maps-bottom ul > li > a {
		padding: 0;
		font-size: 13px;
		line-height: 1.4em;
	}
	.maps-wrapper .maps-content > .maps-block {
		left: auto;
		right: auto;
		width: 100%;
		position: relative;
		padding: 20px 20px 0px;
		margin-top: 20px;
		top: 0;
	}
	.maps-wrapper .openmaps {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		min-height: 280px;
	}

	.maps-wrapper .maps-bottom ul {
		padding: 11px 20px 10px 15px;
	}
	.maps-wrapper .maps-bottom ul > li > a {
		padding: 2px 0;
	}

	.maps-wrapper .maps-content > .maps-block .buttons {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
		gap: 10px;
		position: static;
		white-space: nowrap;
		transform-origin: 0% 0%;
		-webkit-transform-origin: 0% 0%;
		transform: rotate(0deg) translateX(0%);
		-webkit-transform: rotate(0deg) translateX(-0%);
	}

	.maps-wrapper .maps-content > .maps-block .buttons > .button {
		margin: 0;
		border-radius: 4px;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
	}

	.maps-wrapper .maps-block > .openingtimes table tr.active td::before {
		left: -10px;
	}



	.socialmedia-wrapper .komo-branding > .brands {
		white-space: nowrap;
	}
	.socialmedia-wrapper .komo-branding > .brands > .item > img {
		margin: 0;
	}




}


@media all and (max-width: 370px) {







}














