html {
	box-sizing: border-box;
	scroll-behavior: smooth;
	min-height: 100%;
	width: 100%;
	height: 100%;
}

*, *:before, *:after {
	box-sizing: inherit;
}

/* css variables */ 
:root {
	color-scheme: only light;
	supported-color-schemes: light;
	--background-color: #ffffff;
	--secondary-background-color: #fafafa;
	--promotion-module-background-color: #0a1d2c;
	--action-color: #00aa6e;
	--info-color: #002140;
	--info-secondary-color: #0d2d4b;
	--design-color: #ffb600;
	--design-text-color: #ff9e00;
	--danger-color: #de232c;
	--price-color: #ed186a;
	--cart-color: #58595b;
	--heading-color: #000000;
	--heading-error-color: #e35d74;
	--text-color: #000000;
	--breadcrumb-text-color: #808080;
	--breadcrumb-hover-text-color: #000000;
	--default-text-color: #808080;
	--anchor-color: #2e75b9;
	--dark-anchor-color: #000000;
	--inverse-text-color: #ffffff;
	--button-text-color: #ffffff;
	--button-inverse-text-color: #000000;
	--input-text-color: #000000;
	--input-placeholder-color: #aaaaaa;
	--input-border-radius: 20px;
	--menu-background-color: rgb(248,248,248);
	--hamburger-background-color: #0d2d4b;
	--border-color: #e8e8e8;
	--trust-badge-color: #0072BC;
	--quick-search-width: 708px;
	--quick-search-result-width: 845px;
	--tooltip-background-color: #ffffff;
	--tooltip-text-color: #333333;
	--tooltip-shadow: rgba(0, 0, 0, 0.17) 0 2px 10px;
	--tooltip-dark-background-color: rgba(0, 0, 0, 0.9);
	--tooltip-dark-text-color: #ffffff;
}

html.nav-no-transitions *,
html.nav-no-transitions *::before,
html.nav-no-transitions *::after {
	transition: none !important;
	animation: none !important;
}

/* trigger on autofill */
@keyframes onAutoFillStart { 
	from {opacity:1;} 
	to {opacity:1;} 
}

/* trigger on autofill cancel */
@keyframes onAutoFillCancel { 
	from {opacity:1;} 
	to {opacity:1;} 
}

input[autocomplete="username"],
input[autocomplete="current-password"],
input[autocomplete="new-password"] {
	animation-name: onAutoFillCancel;
	animation-duration: 0.01s;
	animation-iteration-count: 1;
}

input[autocomplete="username"]:-webkit-autofill,
input[autocomplete="current-password"]:-webkit-autofill,
input[autocomplete="new-password"]:-webkit-autofill {
	animation-name: onAutoFillStart;
	animation-duration: 0.01s;
	animation-iteration-count: 1;
}

/* always white background color when fullscreen */
:fullscreen, ::backdrop,
:not(:root):fullscreen::backdrop {
	background-color: var(--background-color) !important;
	background: var(--background-color) !important;
}

/* common */
body {
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	color: var(--text-color);
	background: var(--background-color);
	margin: 0;
	position: relative;
}

/* sticky footer fix */
body {
	min-height: 100%;
	display: grid;
	grid-template-rows: 1fr auto;
	width: 100vw;
	overflow-x: hidden;
}

body,p,div,nav {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

body .body-backdrop {
	visibility: hidden;
	position: fixed;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0);
	transition: visibility 0s linear 0.6s, transform 0s linear 0.6s, background-color 0.6s ease;
}

/* body backdrop */
body .body-backdrop {
	pointer-events: none;
	top: 60px;
	bottom: 0;
	cursor: auto;
	transform: translate(-100%,-100%);
	overscroll-behavior-y: contain;
	z-index: 3;
}

html.modal-open body:not(.scroll-top) .body-backdrop {
	top: 0;
}

body.scroll-top .body-backdrop {
	top: 92px;
}

body.backdrop-visible:not(.mega-menu-visible):not(.search-result-visible) #header:not(.header-hover) .header-backdrop,
body.backdrop-visible .body-backdrop {
	visibility: visible;
	background-color: rgba(0,0,0,0.4);
	transition: visibility 0s linear 0s, transform 0s linear 0s, background-color 0.6s ease;
}

/* body backdrop visible */
body.backdrop-visible .body-backdrop {
	pointer-events: all;
	transform: translate(0,0);
}

/* another backdrop with somewhat brighter background */
body.bright-backdrop-visible .body-backdrop {
	visibility: visible;
	background-color: rgba(0,0,0,0.05);
	transition: visibility 0s linear 0s, transform 0s linear 0s, background-color 0.6s ease;
	position: absolute;
	top: 0;
	z-index: 4;
	pointer-events: all;
	transform: translate(0,0);
}

/* do not display the header backdrop when bright backdrop is visible */
body.bright-backdrop-visible #header .header-backdrop {
	display: none;
}

/* when a combination of regular backdrop and bright backdrop is used */
body.backdrop-visible.bright-backdrop-visible .body-backdrop {
	top: 0;
	background-color: rgba(0,0,0,0.4);
	z-index: 6;
}

body.bright-backdrop-visible.bright-backdrop-fixed  .body-backdrop {
	position: fixed;
}

body.backdrop-visible {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow-y: scroll;
	overscroll-behavior: contain;
	touch-action: none;
	-webkit-user-select: none;
	user-select: none;
}

/* position fixed does not work well with the sticky footer fix */
@supports (-moz-appearance:none) {
	body.backdrop-visible {
		position: static;
	}
}

/* circle progress indicator */
.ui-progress-status {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.ui-progress-status .ui-progress-circle {
	position: relative;
	width: 250px;
	height: 250px;
	transition: transform .5s ease-in, opacity .5s ease-in;
}

.ui-progress-status.transition-out .ui-progress-circle {
	transform: translateY(-15%);
	opacity: 0;
	transition-delay: .5s;
}

.ui-progress-status .ui-progress-circle::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--inverse-text-color);
	font-size: 36px;
	font-weight: 100;
}

.ui-progress-status .ui-progress-circle[data-description]::after {
	top: -32px;
}

.ui-progress-status .ui-progress-circle[data-description]::before {
	content: attr(data-description);
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--inverse-text-color);
	white-space: nowrap;
	font-size: 12px;
	font-weight: 100;
}

.ui-progress-status .ui-progress-circle:not(.success,.error)::after {
	content: attr(data-progress) "%";
}

.ui-progress-status .ui-progress-circle.success::after,
.ui-progress-status .ui-progress-circle.error::after {
	content: "";
	top: 0;
	font-family: "Material Icons";
	-webkit-font-feature-settings: "liga";
	font-size: 82px;
}

.ui-progress-status .ui-progress-circle.success::before,
.ui-progress-status .ui-progress-circle.error::before {
	display: none;
}

.ui-progress-status .ui-progress-circle.success::after {
	content: "check";
}

.ui-progress-status .ui-progress-circle.error::after {
	content: "close";
}

.ui-progress-status .ui-progress-circle svg {
	height: 250px;
	transform: rotate(-90deg);
}

.ui-progress-status .ui-progress-circle .ui-progress-background {
	fill: none;
	stroke: rgba(0,0,0,0.1);
	stroke-width: 1;
}

.ui-progress-status .ui-progress-circle .ui-progress-progress {
	fill: none;
	stroke: rgba(255,255,255,1);
	stroke-dasharray: 100 100;
	stroke-dashoffset: 100;
	stroke-linecap: round;
	stroke-width: 1;
}

/* dark mode color overides */
.ui-progress-status.dark-mode {
	background-color: rgba(0,0,0,0.85);
	backdrop-filter: blur(10px);
	transition: background-color .5s ease-in;
}

.ui-progress-status.dark-mode.transition-out {
	background-color: rgba(0,0,0,0);
	transition-delay: .5s;
}

.ui-progress-status.dark-mode .ui-progress-circle .ui-progress-background {
	stroke: rgba(0,0,0,0.4);
}

/* design mode color overides */
.ui-progress-status.design-mode {
	backdrop-filter: blur(10px);
	background:
					linear-gradient(160deg, rgba(237,14,107,1.0), rgba(255,255,255,0) 50.71%),
					linear-gradient(45deg, rgba(45,52,148,1.0), rgba(255,255,255,0) 50.71%),
					linear-gradient(215deg, rgba(252,177,54,1.0), rgba(255,255,255,0) 60%),
					linear-gradient(307deg, rgba(1,187,193,1.0), rgba(255,255,255,0) 100%);
	transition: opacity .5s ease-in;
}

.ui-progress-status.design-mode.transition-out {
	opacity: 0;
	transition-delay: .5s;
}

/* alert */
.alert {
	position: relative;
	padding: 12px 20px;
	margin-bottom: 25px;
	border: 1px solid transparent;
	border-radius: 4px;
	display: flex;
	align-items: center;
	color: #fff;
	background-color: #000;
	border-color: #000;
	scroll-margin-top: 90px;
}

/* transition is used */
.alert.alert-transition {
	opacity: 1;
	transition: opacity 0.25s linear;
}

.alert.alert-close {
	padding-right: 45px;
}

.alert.alert-close .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 100%;
	padding: 0;
	color: inherit;
	background-color: transparent;
}

/* add the alert with transition class, then remove transition class for fade in effect */
.alert.alert-transition.transition {
	opacity: 0;
}

/* message */
.alert .alert-content {
	line-height: 1.4;
}

/* alert danger */
.alert.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

/* alert icon */
.alert > .material-icons-outlined {
	font-size: medium !important;
	margin-left: 0 !important;
	margin-right: 10px !important;
}

/* alert close icon */
.alert.alert-close  .material-icons-outlined {
	font-size: 16px;
	color: #ffffff;
}

/* generic loading indicator */
.loading {
	opacity: 0.2;
	pointer-events: none;
}

.rotate-90 {
	transform: rotate(-90deg);
}

.rotate-180 {
	transform: rotate(-180deg);
}

/* scroll to top button */
#scroll-to-top {
	visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: rgba(0,0,0,0.2);
	color: white;
	cursor: pointer;
	padding: 0;
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 50%;
	transform: translate(50px,0);
}

#scroll-to-top.transition {
	transition: visibility 0s linear 0.1s, transform 0.1s linear;
}

#scroll-to-top.visible {
	visibility: visible;
	transform: translate(0,0);
	transition: visibility 0s linear 0s, transform 0.1s linear;
}

#scroll-to-top:active {
	transform: translate(1px,1px);
}

#scroll-to-top > span {
	font-size: 36px;
}

body.backdrop-visible #scroll-to-top,
body.bright-backdrop-visible #scroll-to-top {
	visibility: hidden;
}

/* help classes */
.float-left {
	float: left;
}

.float-right {
	float: right;
}

/* text color */
.text-default {
	color: var(--text-color);
}

.text-action {
	color: var(--action-color);
}

.text-price {
	color: var(--price-color);
}

.text-info {
	color: var(--info-color);
}

.text-cart {
	color: var(--cart-color);
}

.text-design {
	color: var(--design-text-color);
}

.text-danger {
	color: var(--danger-color);
}

.text-badge {
	color: var(--trust-badge-color);
}

.text-standard {
	color: var(--action-color) !important;
}

.text-express {
	color: var(--design-text-color) !important;
}

.text-express-plus {
	color: var(--price-color) !important;
}

/* background color */
.background-color-default {
	background-color: var(--background-color);
}

.background-color-action {
	background-color: var(--action-color);
}

.background-color-price {
	background-color: var(--price-color);
}

.background-color-info {
	background-color: var(--info-color);
}

.background-color-cart {
	background-color: var(--cart-color);
}

.background-color-design {
	background-color: var(--design-color);
}

.background-color-danger {
	background-color: var(--danger-color);
}

.background-color-badge {
	background-color: var(--trust-badge-color);
}

.padding-25 {
	padding: 25px
}

.lg-hidden {
	display: none;
}

body.backdrop-visible::-webkit-scrollbar {
	display: none;
}

body.backdrop-visible {
	position: absolute;
	top: unset;
	bottom: unset;
	overflow-y: unset;
	overflow: -moz-scrollbars-none;
}

html.no-scroll {
	overflow: hidden;
}

/* svg icons */
.svg-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	vertical-align: baseline;
	margin-left: 7px;
}

.svg-cc-icon {
	display: inline-block;
	width: 38px;
	height: 23px;
	vertical-align: baseline;
	margin-left: 7px;
}

.svg-swish {
	background: url('svg/swish-icon.svg') no-repeat top left;
	background-size: contain;
}

.svg-cc-visa {
	background: url('svg/creditcard/visa.svg') no-repeat top left;
	background-size: contain;
}

.svg-cc-visa-rounded {
	background: url('svg/creditcard/visa-rounded.svg') no-repeat top left;
	background-size: contain;
}

.svg-cc-mastercard {
	background: url('svg/creditcard/mastercard.svg') no-repeat top left;
	background-size: contain;
}

.svg-cc-mastercard-rounded {
	background: url('svg/creditcard/mastercard-rounded.svg') no-repeat top left;
	background-size: contain;
}

.svg-leaf {
	background: url('svg/leaf-icon.svg') no-repeat top left;
	background-size: contain;
}

.svg-file-type {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 36px;
	margin-right: 15px;
	vertical-align: middle;
}

.svg-file-type.svg-file-rejected {
	width: auto;
	height: auto;
	line-height: 1;
}

.svg-file-xls {
	background: url('svg/file-types/easy-excel-icon.svg') no-repeat center center;
}

.svg-file-eps {
	background: url('svg/file-types/easy-eps-icon.svg') no-repeat center center;
}

.svg-file-ai {
	background: url('svg/file-types/easy-illustrator-icon.svg') no-repeat center center;
}

.svg-file-indd {
	background: url('svg/file-types/easy-indesign-icon.svg') no-repeat center center;
}

.svg-file-jpg {
	background: url('svg/file-types/easy-jpg-icon.svg') no-repeat center center;
}

.svg-file-pdf {
	background: url('svg/file-types/easy-pdf-icon.svg') no-repeat center center;
}

.svg-file-psd {
	background: url('svg/file-types/easy-photoshop-icon.svg') no-repeat center center;
}

.svg-file-png {
	background: url('svg/file-types/easy-png-icon.svg') no-repeat center center;
}

.svg-file-rar {
	background: url('svg/file-types/easy-rar-icon.svg') no-repeat center center;
}

.svg-file-doc {
	background: url('svg/file-types/easy-word-icon.svg') no-repeat center center;
}

.svg-file-zip {
	background: url('svg/file-types/easy-zip-icon.svg') no-repeat center center;
}

.svg-file-svg {
	background: url('svg/file-types/easy-svg-icon.svg') no-repeat center center;
}

.svg-file-default {
	background: url('svg/file-types/easy-default-icon.svg') no-repeat center center;
}

.svg-file-rejected > .material-icons {
	font-size: 40px !important;
	margin: 0 !important;
}

/* dropzone icon spinner animation */
.dz-spinner::after {
	content: "";
	position: absolute;
	top: -1px;
	border: 19px solid;
	border-top-color: rgba(255,255,255,0.5);
	border-left-color: rgba(255,255,255,0.1);
	border-bottom-color: rgba(255,255,255,0.5);
	border-right-color: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

/* table file list  */
.file-list .dz-details {
	display: flex;
	align-items: center;
}

.file-list .dz-details > span:not(.dz-file-type) {
	font-size: 13px;
	white-space: break-spaces;
	line-height: 1.4;
}

.file-list td.text-right {
	vertical-align: inherit;
}

.file-list .dz-details span.underline {
	line-height: inherit;
}

.file-list .dz-details > .dz-file-type {
	flex-basis: auto;
	min-width: 40px;
}

/* slide out left */
@keyframes slide-out-left {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(60%);
		opacity: 0;
	}
}

/* slide in left */
@keyframes slide-in-left {
	0% {
		transform: translateX(-60%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

/* slide out right */
@keyframes slide-out-right {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(-60%);
		opacity: 0;
	}
}

/* slide in right */
@keyframes slide-in-right {
	0% {
		transform: translateX(60%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes swipe {
	40% {
		transform: translateX(-50%);
		opacity: 0;
	}
	60% {
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes loader-ring {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

strong {
	font-weight: 700;
}

img {
	border: 0;
	height: auto;
	display: block;
	max-width: 100%;
	max-height: 100%;
}

audio, canvas, progress, video {
	display: inline-block;
	vertical-align: baseline;
}

canvas {
	margin: 0;
	padding: 0;
	width: auto;
	max-width: 100%;
}

.ui-overlay:not(.ui-overlay-exclude) {
	opacity: 0.5;
	filter: grayscale(100%);
}

.ui-overlay-loaded:not(.ui-overlay-exclude) {
	opacity: 1;
	filter: none;
}

#footer-menu {
	display: none;
}

/* line clamp - only allow certain amounts of text rows before clipping */
.line-clamp-checkbox {
	display: none;
}

@supports (-webkit-line-clamp: 4) {
	.line-clamp {
		text-overflow: ellipsis;
		word-wrap: break-word;
		display: -webkit-box;
		-webkit-line-clamp: 8;
		line-clamp: 8;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.line-clamp.has-usp {
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}
}

.line-clamp > p:last-of-type {
	margin-bottom: 0;
}

.line-clamp-checkbox:checked  + .line-clamp {
	-webkit-line-clamp: initial;
	line-clamp: initial;
}

.line-clamp + label {
	display: inline-block;
	color: var(--anchor-color);
	cursor: pointer;
	margin-top: 10px;
}

.line-clamp + label:hover {
	text-decoration: underline;
}

.line-clamp + label > span:first-child {
	display: block;
}

.line-clamp + label > span:last-child {
	display: none;
}

.line-clamp-checkbox:checked  + .line-clamp  + label > span:first-child {
	display: none;
}

.line-clamp-checkbox:checked  + .line-clamp  + label > span:last-child {
	display: block;
}

@supports not (-webkit-line-clamp: 4) {
	.line-clamp + label {
		display: none;
	}
}

.review-stars > .star {
	display: inline-block;
	color: var(--design-color);
	font-size: 24px;
	-webkit-user-select: none;
	user-select: none;
	transition: all 0.15s ease-out;
}

.review-stars > .star.half {
	background: linear-gradient(
		to right,
		var(--design-color) 0%,
		var(--design-color) 50%,
		#ddd 50%,
		#ddd 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.review-stars > .star.empty {
	color: #ddd;
}

.review-stars.clicked > .star {
	transform: scale(1.15);
}

.review-stars > .review-count {
	display: inline-block;
	vertical-align: top;
	margin-left: 20px;
	font-size: 13px;
	margin-top: -3px;
	line-height: 2.4;
}

/* youtube-responsive css */
.youtube-responsive {
	position: relative;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	max-height: 720px;
	width: 100%;
	line-height: 0 !important;
}

.youtube-responsive > iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}

.youtube-extra-container {
	position: relative;
	max-width: 1280px;
	margin: 45px auto 0 auto;
	list-style-type: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 35px;
}

.youtube-extra-container > li {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.youtube-extra-container > li > img {
	cursor: pointer;
	opacity: 0.7;
	transition: opacity .2s ease-in;
}

.youtube-extra-container > li > div {
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	max-width: 320px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.youtube-extra-container > li.active > div::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background-color: #fff;
}

.youtube-extra-container > li.active > img,
.youtube-extra-container > li:hover > img {
	opacity: 1;
}

/* table css */
.table-responsive {
	min-height: .01%;
	overflow-x: auto;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

.table {
	width: 100%;
	max-width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
}

.table > thead > tr > th {
	font-weight: 800;
}

.table:not(.table-upload) > tbody::after {
	content: '';
	display: block;
	height: 35px;
}

.table.table-border tbody th,
.table.table-border tbody td {
	border-bottom: 1px solid var(--border-color);
}

.table.table-border.table-upload tr:last-of-type > td {
	border-bottom: none;
}

.table.table-more-height th,
.table.table-more-height td {
	padding-top: 25px;
	padding-bottom: 25px;
}

.table.table-condensed th,
.table.table-condensed td {
	padding-top: 7px;
	padding-bottom: 7px;
}

.table td, 
.table th {
	padding: 10px 15px;
	text-align: left;
	vertical-align: text-top;
	text-wrap: balance;
}

.table th:first-child {
	padding-left: 0;
}

.table th:last-child {
	padding-right: 0;
}

.table td:first-child, 
.table th:first-child {
	padding-left: 5px;
}

.table td:last-child, 
.table th:last-child {
	padding-right: 5px;
}

.contrast:not(.columns) .table.table-hover tbody > tr:hover > td {
	background-color: var(--background-color);
}

.table.table-hover tbody > tr:hover > td {
	background-color: var(--secondary-background-color);
}

.table.table-fixed {
	table-layout: fixed;
}

.table.table-fixed th,
.table.table-fixed td {
	overflow: hidden;
	white-space: nowrap;
}

.table th .material-icons,
.table td .material-icons,
.table th .material-icons-outlined,
.table td .material-icons-outlined {
	position: relative;
	vertical-align: text-top;
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 18px;
}

.table .blue-icon {
	color: var(--anchor-color);
}

.table .green-icon {
	color: var(--action-color);
}

/* when table-fixed + table-upload we don't wan't the remove file column to occupy more space than neccesary */
.table.table-fixed.table-upload > thead > tr > th:last-child,
.table.table-fixed.table-upload > tbody > tr > td:last-child {
	width: 80px;
}

.table .grey-icon {
	color: #ccc;
	margin-left: 0px!important;
}

/* specification table styling */
.table.table-spec > thead,
.table.table-spec > caption {
	background-color: black;
}

.table.table-spec > tbody::before {
	content: '';
	display: block;
	height: 35px;
}

.table.table-spec > caption {
	font-weight: 700;
	padding: 10px 15px;
	text-align: left;
	vertical-align: text-top;
}

.table.table-spec > thead > tr > th,
.table.table-spec > caption {
	color: white;
	border-bottom: none;
}

.table.table-spec > thead > tr > th:first-child,
.table.table-spec > caption {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.table.table-spec > thead > tr > th:last-child,
.table.table-spec > caption {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.table.table-spec td:first-child {
	font-weight: 700;
}

.table.table-spec td:first-child, 
.table.table-spec th:first-child {
	padding-left: 15px;
	padding-right: 15px;
	width: 25%;
}

.table.table-spec td:last-child, 
.table.table-spec th:last-child {
	padding-right: 15px;
}

/* product price summary table styling */
.table-responsive.table-price-summary {
	border-top: 2px solid black;
	margin-top: 15px;
	font-size: 13px;
}

.table.table-price-summary:not(.table-order-total) {
	border-bottom: 2px solid black;
	margin-bottom: 0;
}

.table.table-price-summary {
	font-size: 13px;
}

.table.table-price-summary td,
.table.table-price-summary th {
	padding: 2px 10px;
	line-height: 1.9;
}

/* prices should not wrap to multiple lines in price summary */
.table.table-price-summary td.text-right {
	white-space: nowrap;
}

.table.table-price-summary td:first-child, 
.table.table-price-summary th:first-child {
	padding-left: 0;
}

.table.table-price-summary td:last-child, 
.table.table-price-summary th:last-child {
	padding-right: 0;
}

.table.table-price-summary > tbody::after {
	content: '';
	display: block;
	height: 25px;
}

.table.table-price-summary > tbody > tr > td.delivery {
	color: var(--action-color);
	font-weight: 500;
}

.table.table-price-summary > .border-top > tr > th,
.table.table-price-summary > .border-top > tr > td {
	padding-top: 25px;
	border-top: 1px solid #ddd;
}

.table.table-order-total {
	border-bottom: 1px solid #ddd;
	margin-top: 25px;
	margin-bottom: 30px;
}

.table.table-order-total > tbody > tr:nth-last-child(2) > td {
	font-size: 22px;
	font-weight: 700;
}

.table.table-vertical-center tr > th,
.table.table-vertical-center tr > td {
	vertical-align: middle;
}

/* button css for buttons inside tables */
.table td button {
	background-color: transparent;
}

.table td button:active {
	transform: translate(1px,1px);
}

.table td button > span {
	color: var(--button-inverse-text-color);
}

.table.table-hover td button > span {
	color: #dddddd;
}

.table.table-hover tr:hover > td button > span {
	color: var(--button-inverse-text-color);
}

/* tooltip css */
[data-toggle*="tooltip"] {
	cursor: pointer;
}

.ui-tooltip {
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	pointer-events: none;
}

.ui-tooltip-content {
	position: relative;
	background-color: var(--tooltip-background-color);
	border-radius: 8px;
	color: var(--tooltip-text-color);
	font-size: 14px;
	line-height: 1.7;
	padding: 15px 20px;
	filter: drop-shadow(var(--tooltip-shadow));
}

.ui-tooltip-content > h3,
.ui-tooltip-content > .h3 {
	font-size: 22px;
	font-weight: 700;
	color: inherit;
	line-height: 1;
	margin: 0 0 20px;
	white-space: nowrap;
}

.ui-tooltip-content p {
	font-size: 14px;
	margin: 0 0 20px;
	line-height: 1.8;
}

.ui-tooltip-content p:last-of-type {
	margin-bottom: 0;
}

.ui-tooltip-content strong {
	font-weight: 800;
}

/* larger tooltips */
.ui-tooltip.ui-tooltip-large {
	min-width: 450px;
	max-width: 550px;
}

.ui-tooltip.ui-tooltip-wider {
	max-width: 330px;
}

.ui-tooltip.ui-tooltip-larger {
	min-width: 450px;
	max-width: 650px;
}

.ui-tooltip-large .ui-tooltip-content,
.ui-tooltip-larger .ui-tooltip-content {
	padding: 40px 50px;
	border-radius: 15px;
}

/* allow line breaks */
.ui-tooltip.pre-line .ui-tooltip-content {
	white-space: pre-line;
}

/* margin offsets */
.ui-tooltip.center-bottom {
	margin-top: -15px;
}

.ui-tooltip.center-top {
	margin-top: 15px;
}

.ui-tooltip.left-middle {
	margin-left: 15px;
}

.ui-tooltip.right-middle {
	margin-left: -15px;
}

.ui-tooltip .ui-tooltip-content::before {
	content: '';
	position: absolute;
}

/* arrow top */
.ui-tooltip.left-top .ui-tooltip-content::before,
.ui-tooltip.center-top .ui-tooltip-content::before {
	border-bottom: 10px solid var(--tooltip-background-color);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}

/* arrow bottom */
.ui-tooltip.center-bottom .ui-tooltip-content::before {
	border-top: 10px solid var(--tooltip-background-color);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

/* arrow left */
.ui-tooltip.left-middle .ui-tooltip-content::before {
	border-right: 10px solid var(--tooltip-background-color);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
}

/* arrow right */
.ui-tooltip.right-middle .ui-tooltip-content::before {
	border-left: 10px solid var(--tooltip-background-color);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

/* dark theme */
.ui-tooltip.ui-tooltip-dark .ui-tooltip-content {
	background-color: var(--tooltip-dark-background-color);
	color: var(--tooltip-dark-text-color);
	filter: none;
}

/* dark arrows */
.ui-tooltip.ui-tooltip-dark.left-top .ui-tooltip-content::before,
.ui-tooltip.ui-tooltip-dark.center-top .ui-tooltip-content::before {
	border-bottom-color: var(--tooltip-dark-background-color);
}

.ui-tooltip.ui-tooltip-dark.center-bottom .ui-tooltip-content::before {
	border-top-color: var(--tooltip-dark-background-color);
}

.ui-tooltip.ui-tooltip-dark.left-middle .ui-tooltip-content::before {
	border-right-color: var(--tooltip-dark-background-color);
}

.ui-tooltip.ui-tooltip-dark.right-middle .ui-tooltip-content::before {
	border-left-color: var(--tooltip-dark-background-color);
}

/* hide tooltips when icon labels are displayed */
.ui-tooltip.ui-header-icon-tooltip {
	visibility: hidden;
}

/* align text classes */
.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

/* flex layout */
.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.flex-column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

/* rounded boxes */
.flex-boxed {
	gap: 45px;
}

.flex-boxed > .flex-column {
	background-color: var(--background-color);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 0 35px rgba(0,0,0,0.05);
}

.flex-boxed h3,
.flex-boxed .h3 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 35px;
}

.flex-boxed p:last-child {
	margin-bottom: 0;
}

.center {
	text-align: center;
}

.justify {
	text-align: justify;
	text-align-last: center;
}

.center-block {
	display: block;
	margin: 0 auto;
}

/* material icons default styling */
.material-icons-outlined {
	font-size: 20px;
}

.material-icons-outlined.action {
	color: var(--action-color);
}

/* anchors default styling */
a,
.btn-link {
	color: var(--dark-anchor-color);
	text-decoration: none;
	white-space: nowrap;
}

a:hover,
a:focus,
.btn-link:hover {
	color: var(--dark-anchor-color);
	outline: 0;
}

a > span[data-text]::before {
	display: block;
	content: attr(data-text);
	font-weight: 700;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}

span.underline {
	position: relative;
	display: inline-block;
}

span.underline::after {
	content: "";
	position: absolute;
	bottom: 0.6em;
	left: 0;
	height: 1px;
	width: 100%;
	opacity: 0;
	background-color: var(--dark-anchor-color);
	transition: opacity 0.1s linear;
}

/* allow line-breaks when inside menu item */
.label-container span.underline ,
.wrapper-label span.underline {
	white-space: initial;
}

a.active > span.underline::after,
a:hover > span.underline::after {
	opacity: 1;
}

/* inline anchors need to have the same line-height as regular textflow */
.internal-anchor.inline {
	line-height: inherit !important;
}

.internal-anchor.inline > span.underline::after {
	bottom: 0.4em;
}

.ui-helper-hidden-accessible,
.hidden {
	display: none !important;
}

/* hide text without affecting pseudo elements */
.hidden-text {
	font-size: 0;
	color: transparent;
}

/* headers default styling */
h1,h2,h3,h4,h5,h6,
.h2,.h3,.h4,.h5,.h6  {
	display: block;
	line-height: 1;
	color: var(--heading-color);
}

h1, 
.h1 {
	font-size: 60px;
	font-weight: 800;
}

body.category section:not(.module) h1,
body.category section:not(.module).h1,
body.category section:not(.module) h2,
body.category section:not(.module) .h2,
body.common section:not(.module) h1,
body.common section:not(.module).h1,
body.common section:not(.module) h2,
body.common section:not(.module) .h2 {
	font-size: 36px;
	line-height: normal;
}

body.category section.category-description h2, 
body.category section.category-description .h2 {
	font-size: 26px;
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 1.5;
}

body.category section.category-description h3, 
body.category section.category-description .h3 {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 1.5;
}

body.category.inspiration .category-description h1, 
body.category.inspiration .category-description .h1 {
	font-size: 60px;
}

body.category.inspiration #product-listing {
	padding-top: 0;
}

#main section:not(.module) .btn-container {
	margin-top: 100px;
	margin-bottom: 80px;
}

#main section:not(.module) .btn-container > .btn.btn-dark {
	max-width: 350px;
}

#main section:not(.module) .btn-container > progress {
	max-width: 280px;
	margin-bottom: 40px;
}

body.category .container {
	margin-bottom: 0.5em;
}

body.category .container.ingress {
	max-width: 1200px;
}

body.category .container.ingress > p {
	text-wrap: balance;
	font-size: 19px;
	font-weight: 400;
}

body.category .category-description .container {
	margin-bottom: 0;
}

section.category-description .flex-row > .flex-column img {
	margin: 0 auto;
	max-width: 485px;
}

/* category usp */
#main .category-description ul.usp { 
	margin: 28px 0 0 0;
	list-style-type: none;
}

/* category usp list item */
#main .category-description ul.usp > li {
	position: relative;
	padding: 5px 0 5px 27px;
	font-weight: 500;
}

/* category usp list item marker */
#main .category-description ul.usp > li::before {
	font-family: "Material Icons";
	content: "star";
	-webkit-font-feature-settings: "liga";
	font-size: 14px;
	font-weight: 600;
	color: var(--design-color);
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.category .container + .container {
	margin-top: 65px;
	padding-top: 65px;
	border-top: 1px solid var(--border-color);
}

h2, 
.h2 {
	font-size: 60px;
	font-weight: 800;
	margin-bottom: 2em;
}

h2.less-margin, 
.h2.less-margin {
	margin-bottom: 0.8em;
}

section > h2 {
	margin-bottom: 2.5em;
}

h3, 
.h3 {
	font-weight: 800;
	font-size: 36px;
	margin-bottom: 25px;
}

h4, 
.h4,
body.category  section .container.columns h3, 
body.category  section .container.columns .h3 {
	font-size: 20px;
	margin-bottom: 15px;
	line-height: 1.5;
}

body.category  section > h2, 
body.category  section > .h2 {

} 

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover  {
	color: inherit;
	font-weight: inherit;
}

.container {
	margin: 0 auto;
	max-width: 1580px;
}

/* dividing text content into columns */
.container.columns {
	column-count: 2;
	column-width: auto;
	column-gap: 100px;
	text-align: justify;
}

.container.columns:last-child {
	margin-bottom: 65px;
}

.container.columns article,
.container.columns .column { 
	break-inside: avoid;
	margin-bottom: 65px;
	text-align: left;
}

.container.columns.two {
	column-count: 2;
}

.container.columns.three {
	column-count: 3;
	column-gap: 55px;
}

.container.columns :first-child {
	margin-top: 0;
}

p {
	margin: 0 0 30px;
}

/* ul for navigation (no bullets) */
ul.navigation,
ul.navigation li,
ul.navigation li ul,
ul.navigation li ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.navigation {
	line-height: 2.5;
	white-space: nowrap;
}

/* vertically center all content inside bullet list */
ul.navigation.vertically-center-content li {
	display: flex;
	align-items: center;
	padding-bottom: 10px;
}

ul.navigation.vertically-center-content li .material-icons,
ul.navigation.vertically-center-content li .material-icons-outlined,
ul.navigation.vertically-center-content li .svg-icon {
	margin-right: 10px;
	font-size: 24px;
}

ul.navigation.vertically-center-content li .svg-icon {
	margin-left: 0;
	width: 22px;
	height: 22px;
}

/* needed for the extra space between text and the first credit card */
ul.navigation.vertically-center-content li .material-icons + .svg-cc-icon {
	margin-left: 25px;
}

/* ul for navigation divided into columns */
ul.navigation.columns {
	column-count: 6;
	column-width: 0;
}

ul.navigation.columns > li {
	break-inside: avoid;
	padding-left: 20%;
}

ul.navigation.columns h3, 
ul.navigation.columns .h3 {
	font-size: 1.5em;
	font-weight: 600;
	margin: 0 0 15px;
	padding: 5px 0 0;
}

ul.navigation.columns ul {
	margin-bottom: 65px;
}

ul.navigation.columns  li:last-of-type ul:last-of-type {
	margin-bottom: 25px;
}

/* modal popup */
.ui-modal,
.ui-progress-status {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 100vh;
	overscroll-behavior-y: none;
}

.ui-modal {
	overflow: auto;
	visibility: hidden;
	opacity: 0;
	-webkit-user-select: text;
	user-select: text;
}

.ui-modal.transition {
	transition: visibility 0s linear .2s, opacity .2s linear; /* linear can be replaced with other easings like easing-in */
}

.ui-modal.transition.show {
	transition: visibility 0s linear 0s, opacity .2s linear; /* linear can be replaced with other easings like easing-out */
}

@keyframes scalein {
	from {
		transform: scale(0.75);
	}
	to {
		transform: scale(1);
	}
}

@keyframes scaleout {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(0.75);
	}
}

.ui-modal.show {
	visibility: visible;
	background-color: rgba(0,0,0,0.4);
	opacity: 1;
	z-index: 9999;
}

body.backdrop-visible .ui-modal.show {
	background-color: transparent;
}

.ui-modal .btn-close .material-icons {
	font-size: 28px;
	font-weight: 500;
}

.ui-modal .btn-close {
	position: fixed;
	z-index: 1;
}

.ui-modal > .btn-close {
	top: 50px;
	right: 50px;
}

.ui-modal > .btn-close .material-icons {
	color: #fff;
}

/* styles for review stars inside modal */
.ui-modal .review-stars {
	display: inline-block;
	margin-top: 25px;
	margin-bottom: 25px;
}

.ui-modal .review-content {
	padding-bottom: 15px;
}

/* needed for triggering error when no rating is selected */
.ui-modal .review-stars > input[name=rating] {
	position: absolute;
	display: block !important;
	opacity: 0;
	height: 48px;
	width: 0;
	margin: 0;
	padding: 0 !important;
	margin: 0 auto;
	left: 0;
	right: 0;
	pointer-events: none;
}

/* slightly bigger stars in rating form */
.ui-modal .review-stars > .star {
	font-size: 48px;
	cursor: pointer;
}

.ui-modal .internal-anchor {
	font-size: 14px;
	color: var(--anchor-color);
	transition: color 0.2s linear;
	line-height: 2.5;
	-webkit-user-select: none;
	user-select: none;
}

.ui-modal .internal-anchor > span.underline::after {
	background-color: var(--anchor-color);
}

.ui-modal .internal-anchor > span.underline + span.material-icons-outlined {
	font-size: 20px;
	top: 3px;
	position: relative;
	padding-left: 5px;
}

/* dropzone image preview inside modal */
.ui-modal .dz-clickable .image-preview {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--background-color);
	margin-bottom: 25px;
	overflow: hidden;
}

.ui-modal .dz-clickable .image-preview .btn-remove {
	background-color: transparent;
	padding: 10px;
	color: var(--button-inverse-text-color);
	position: absolute;
	z-index: 1;
	top: 5px;
	right: 5px;
	display: grid;
	place-items: center;
}

.ui-modal .dz-clickable .image-preview .btn-remove::before {
	content: "";
	position: absolute;
	background-color: var(--background-color);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	z-index: -1;
}

.ui-modal .dz-clickable .image-preview .btn-remove .material-icons {
	font-size: 24px;
	font-weight: 700;
}

/* dropzone status text inside modal */
.ui-modal .dz-clickable .status-text {
	display: block;
	margin-top: 10px;
	color: var(--danger-color);
}

/* styles for dividers and spacings */
.ui-modal hr {
	display: block;
	height: 1px;
	background-color: var(--border-color);
	border: none;
	margin-top: 65px;
	margin-bottom: 45px;
}

.ui-modal hr + .h3 {
	padding-top: 20px;
}

.ui-modal .spacing {
	height: 45px;
}

.ui-modal .strike {
	display: block;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 65px;
	margin-bottom: 65px;
}

.ui-modal .strike > span {
	position: relative;
	display: inline-block;
	color: #666;
	font-weight: 100;
}

.ui-modal .strike > span:before,
.ui-modal .strike > span:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 9999px;
	height: 1px;
	background-color: var(--border-color);
}

.ui-modal .strike > span:before {
	right: 100%;
	margin-right: 15px;
}

.ui-modal .strike > span:after {
	left: 100%;
	margin-left: 15px;
}

.ui-modal > .ui-modal-inner {
	margin-top: 120px;
	padding-left: 25px;
	padding-right: 25px;
}

.ui-modal.center-dialog > .ui-modal-inner {
	margin-top: unset;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding-left: 25px;
	padding-right: 25px;
	margin-top: -60px;
}

.ui-modal.transition > .ui-modal-inner > .ui-modal-dialog {
	animation: scaleout .2s ease-in;
}

.ui-modal.transition.show > .ui-modal-inner > .ui-modal-dialog {
	animation: scalein .2s ease-out;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog {
	position: relative;
	width: 555px;
	background-color: #ffffff;
	margin: 60px auto;
	border-radius: 12px;
	box-shadow: 0 0 35px rgba(0,0,0,0.12);
	padding: 40px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body > .ui-confirm-title {
	color: var(--heading-color);
	font-weight: 800;
	font-size: 36px;
	margin-top: 25px;
	margin-bottom: 25px;
	line-height: 1;
}

/* allow line breaks */
.ui-modal.pre-line .ui-modal-body p {
	white-space: pre-line;
}

.ui-modal.wider-dialog.center-dialog > .ui-modal-inner {
	margin-top: unset;
}

.ui-modal.wider-dialog > .ui-modal-inner > .ui-modal-dialog {
	min-width: 555px;
	max-width: 960px;
	width: auto;
	padding: 60px;
}

.ui-modal.wider-dialog:not(.logo-reminder-dialog) > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body {
	min-height: 200px;
	max-height: calc(100vh - 500px);
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: none;
	padding-right: 25px;
	padding-bottom: 1px;
}

.ui-modal.wider-dialog:not(.logo-reminder-dialog) > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content:not(:has(.ui-modal-footer)) > .ui-modal-body {
	max-height: calc(100vh - 300px);
}

.ui-modal.wider-dialog > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body > .button-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	padding-bottom: 20px;
}

.ui-modal.wider-dialog > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body > .button-container > button {
	max-width: 320px;
}

.ui-modal.wider-dialog.header-overflow > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-title::before {
	content: "";
	position: absolute;
	height: 44px;
	bottom: -24px;
	left: 0;
	right: 0;
	box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 1);
	z-index: 1;
	pointer-events: none;
}

.ui-modal.wider-dialog.footer-overflow > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-footer::before {
	content: "";
	position: absolute;
	height: 44px;
	top: -50px;
	left: 0;
	right: 0;
	box-shadow: 0px -10px 20px -20px rgba(0, 0, 0, 1);
	pointer-events: none;
}

/* When there is no .ui-modal-footer, add footer shadow to the bottom of .ui-modal-content */
.ui-modal.wider-dialog.footer-overflow > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content:not(:has(.ui-modal-footer))::after {
	content: "";
	position: absolute;
	height: 44px;
	bottom: -44px;
	left: 0;
	right: 0;
	box-shadow: 0px -10px 20px -20px rgba(0, 0, 0, 1);
	pointer-events: none;
}

@media (pointer: fine) {
	.ui-modal.wider-dialog > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body::-webkit-scrollbar { 
		width: 2px;
		background: transparent;
	}

	.ui-modal.wider-dialog > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body::-webkit-scrollbar-thumb {
		background-color: black;
	}
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > button.btn-close {
	position: absolute;
	top: 30px;
	right: 25px;
	display: none;
}

.ui-modal.wider-dialog > .ui-modal-inner > .ui-modal-dialog > button.btn-close {
	top: 47px;
	right: 45px;
}

.ui-modal.display-close > .ui-modal-inner > .ui-modal-dialog > button.btn-close {
	display: block;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content {
	overflow: hidden;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content:not(:has(.ui-modal-footer)) {
	position: relative;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content h2 {
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 700;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content h3 {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 700;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content h4 {
	font-size: 14px;
	margin-bottom: 5px;
	font-weight: 700;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content,
.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content p,
.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content ul {
	font-size: 14px;
	font-weight: 400;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content ul {
	margin-bottom: 25px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content ul li {
	padding-left: 10px;
	padding-bottom: 5px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	position: relative;
}

.ui-modal.center > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-title,
.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-title.center {
	padding: 0 30px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-title > span {
	line-height: 1.4;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body {
	min-height: 50px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-footer {
	position: relative;
	display: flex;
	column-gap: 20px;
	margin-top: 50px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body > .button-container {
	padding-left: 65px;
	padding-right: 65px;
}

/* progress inside modal */
.ui-modal > .ui-modal-inner .ui-progress-container {
	padding: 10px 35px;
}	

.ui-modal > .ui-modal-inner .ui-progress-container > progress {
	border: 0;
	height: 20px;
	margin: 0;
	background-color: transparent;
}

.ui-modal > .ui-modal-inner .ui-progress-container > progress::-webkit-progress-bar {
	border: 0;
	height: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1) inset;
}

.ui-modal > .ui-modal-inner .ui-progress-container > progress::-webkit-progress-value {
	height: 20px;
	border-radius: 10px;
	background-color: var(--action-color);
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content .btn {
	font-size: 16px;
	font-weight: 500;
	padding: 18px 20px;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content .flex-form > .flex-row:last-child > .flex-column > .form-control:not(label) {
	margin-bottom: 0;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-footer > .btn {
	flex: 1 1 0;
	width: 0;
	margin: 0;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-footer > .btn:only-child {
	max-width: 280px;
	margin: 0 auto;
}

.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body > .accept-cookies-wrapper h3:first-child,
.ui-modal > .ui-modal-inner > .ui-modal-dialog > .ui-modal-content > .ui-modal-body > .accept-cookies-wrapper .h3:first-child {
	margin-top: 0;
	font-size: 28px;
	font-weight: 700;
}

/* file reminder content styling */
.ui-modal .upload-files-reminder > .divider {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid #dddddd;
}

.ui-modal .upload-files-reminder > .divider .table-responsive > .table-upload {
	margin-top: 0;
	margin-bottom: 0;
}

.ui-modal .upload-files-reminder > .divider .table-responsive > .table-upload tfoot tr > td {
	color: var(--default-text-color);
}

.ui-modal .upload-files-reminder > .divider .flex-column {
	flex-grow: 2;
}

.ui-modal .upload-files-reminder > .divider .flex-column + .flex-column {
	align-items: flex-end;
	flex-grow: 1;
}

.ui-modal .upload-files-reminder td .internal-anchor {
	color: var(--anchor-color);
	transition: color 0.2s linear;
	line-height: 2.5;
	-webkit-user-select: none;
	user-select: none;
}

.ui-modal .upload-files-reminder td .internal-anchor > span.underline::after {
	background-color: var(--anchor-color);
}

.ui-modal .upload-files-reminder td,
.ui-modal .upload-files-reminder td a,
.ui-modal .upload-files-reminder .label-heading,
.ui-modal .upload-files-reminder .label-design,
.ui-modal .upload-files-reminder > .divider .flex-column > .btn {
	font-size: 14px;
}

.ui-modal .upload-files-reminder > .divider .flex-column .label-heading {
	font-weight: 700;
}

.ui-modal .upload-files-reminder > .divider .flex-column > .btn {
	width: auto;
	padding: 12px 22px;
	margin: 0;
}

.ui-modal .upload-files-reminder > .divider:last-child {
	padding-bottom: 0;
}

/* select customer group styling */
.select-modal-container {
	margin-top: 25px;
	padding: 1px;
}

#main-menu .select-modal-container {
	padding-left: 45px;
	padding-right: 45px;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: none;
	scroll-behavior: smooth;
	height: 100%;
	padding-bottom: 300px;
}

.select-modal-container > .select-modal-wrapper {
	margin-bottom: 15px;
	padding: 1px;
}

.select-modal-container > .select-modal-wrapper:last-child {
	margin-bottom: 0;
}

.select-modal-container > .select-modal-wrapper input {
	display: block;
	opacity: 0;
	height: 0;
	width: 0;
	padding: 0 !important;
	margin: 0;
}

.select-modal-container > .select-modal-wrapper > .wrapper-label {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	min-height: 90px;
	padding: 20px 30px;
	border: 1px solid transparent;
	background-color: var(--menu-background-color);
	border-radius: 4px;
	line-height: 1.6;
	color: var(--dark-anchor-color);
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.select-modal-container > .select-modal-wrapper > .wrapper-label > img {
	position: absolute;
}

.select-modal-container > .select-modal-wrapper > .wrapper-label > img + span {
	margin-left: 35px;
}

.select-modal-container > .select-modal-wrapper > .wrapper-label > span:first-child {
	font-size: 16px;
	font-weight: 700;
}

.select-modal-container > .select-modal-wrapper > .wrapper-label > span.tax {
	font-size: 14px;
}

.select-modal-container > .select-modal-wrapper > .wrapper-label > .arrow {
	font-size: 26px;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
}

.select-modal-container > .select-modal-wrapper:not(.box-shadow) > input:checked + .wrapper-label {
	background-color: #000;
	color: #fff;
}

.select-modal-container > .select-modal-wrapper.box-shadow > input:checked + .wrapper-label {
	box-shadow: 0px 0px 0px 2px rgba(0,0,0,1);
	font-size: 16px;
	font-weight: 700;
}

.select-modal-container > .select-modal-wrapper > input[disabled]:checked + .wrapper-label {
	background-image: linear-gradient(90deg,#0000 33%,rgba(255,255,255,0.2) 50%,#0000 66%);
	background-size: 440% 100%;
	animation: shine 2s infinite;
	pointer-events: none;
	opacity: 0.6;
}

.select-modal-container > .select-modal-wrapper > input:not(:checked) + .wrapper-label:hover {
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.2);
}

/* slider rail */ 
.ui-slider {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: rgba(0,0,0,1);
}

/* slider handle */ 
.ui-slider  > .ui-slider-handle {
	position: absolute;
	display: inline-block;
	background-color: black;
	height: 20px;
	width: 20px;
	margin-top: -9px;
	margin-left: -9px;
	border-radius: 50%;
	cursor: grab;
	outline: 0;
}

/* prevent page scroll when dragging handle */ 
.ui-slider,
.ui-slider > .ui-slider-handle {
	touch-action: none;
	overscroll-behavior: contain; 
}

/* slider handle when dragged */ 
.ui-slider.dragged  > .ui-slider-handle {
	height: 24px;
	width: 24px;
	margin-top: -11px;
	margin-left: -11px;
}

/* list default styling */
#main ul,
#main ol {
	list-style-position: inside;
	padding-left: 0;
}

#main ul:not(.navigation) ul, 
#main ol:not(.navigation) ol,
#main ul:not(.navigation) ol, 
#main ol:not(.navigation) ul {
	padding-left: 25px;
}

#main dl {
	padding: 0;
}

/* definition list default styling */
#main dl,
#main dl > dt,
#main dl > dd {
	margin: 0;
}

/* definition list decimal styling */
#main dl.decimal > dt {
	display: list-item;
	list-style-type: decimal;
	list-style-position: inside;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 14px;
}

#main dl.decimal > dt.no-bullet {
	list-style-type: none;
}

#main dl.decimal > dd {
	margin-bottom: 2.5em;
}

#main dl.decimal ul {
	margin-top: 0;
}

/* grid layout default styling */
ul.display-grid {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: grid;
}

ul.display-grid > li {
	position: relative;
	background-color: transparent;
}

ul.display-grid > li > .container-box {
	position: relative;
	display: block;
	cursor: pointer;
}

ul.display-grid > li > .container-box:hover span.underline::after {
	opacity: 1;
}

ul.display-grid > li .has-price {
	min-height: 100%;
	padding-bottom: 85px;
}

ul.display-grid.module > li h3,
ul.display-grid.module > li .h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 2.5;
	margin-top: 0;
	margin-bottom: 0;
}

ul.display-grid.product > li h3,
ul.display-grid.product > li .h3 {
	font-size: 16px;
	line-height: 2.5;
	margin-top: 15px;
	margin-right: 25px;
	margin-bottom: 0;
	overflow: hidden;
	white-space: nowrap;
}

ul.display-grid > li .price {
	position: absolute;
	top: 66px;
	font-size: 24px;
	line-height: 1 !important;
	font-weight: 500;
	pointer-events: none;
}

/* from text and currency styling */
ul.display-grid > li .price small {
	display: inline-block;
	text-decoration: none;
	margin-right: 5px;
	font-size: 14px;
	font-weight: 400;
}

/* old price */
ul.display-grid > li .price > del {
	position: absolute;
	top: -1em;
	text-decoration: line-through;
	font-size: 12px;
	color: #808080;
	font-weight: 400;
}

/* new price */
ul.display-grid > li .price > ins {
	text-decoration: none;
	color: var(--price-color);
	white-space: nowrap;
}

/* clamped to two lines of text ending with "..." */
ul.display-grid > li h4,
ul.display-grid > li .h4 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--heading-color);
	white-space: normal;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 25px;
	overflow: hidden;
}

ul.display-grid > li .content,
ul.display-grid > li .img-container {
	display: block;
	position: relative;
}

/* needed for retina */
ul.display-grid.product:not(.columns-2) > li .img-container {
	max-width: 320px;
	max-height: 240px;
}

/* center image (only when divider is used) */
ul.display-grid.product.divider > li .img-container {
	margin: 0 auto;
}

ul.display-grid  > li .color-preview {
	position: absolute;
	top: 105px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 30px;
	pointer-events: none;
}

ul.display-grid  > li .color-preview > .color-circle {
	pointer-events: all;
}

ul.display-grid  > li .color-preview > .color-circle {
	opacity: 0;
}

/* transition-delay between color circles */
ul.display-grid > li .color-preview > .color-circle + .color-circle { transition-delay: .01s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle  { transition-delay: .02s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .03s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .04s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .05s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .06s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .07s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .08s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .09s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle   { transition-delay: .1s; }
ul.display-grid > li .color-preview > .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle + .color-circle  { transition-delay: .11s; }

ul.display-grid.product  > li > .container-box:hover .color-preview > .color-circle {
	opacity: 1;
	transition: opacity .15s linear;
}

ul.display-grid  > li .color-preview > span.color-circle {
	display: inline-block;
	position: relative;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	transform: scale(1);
	aspect-ratio: 1;
}

ul.display-grid  > li .color-preview > span.color-circle.wheel {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE4AAABOCAYAAACOqiAdAAATA0lEQVR4nI2cW5LjOoxEM0FKct09zP5XMWua/7JFzAcBEnzI1e5gUC+7pONMAKTk5v/9z/8qUAC9e4Mvf2orn74c18vbtr1t+W373oD+Wv8GMLVl26f2tL/NG5BSW9baDgDn1C6GdYLW4wRw1J4H67ajbuNBINv+g2Du63W5rjMTSGE9EUgAhKAAGRRAAVBRFxRQX5baaL2GdWXv2zYBSAAc3+vve2z+GaUu05rw+S3Jl+Mx3PfcL5PhfcTmc/wS+ufR+lz3GCcivBTDuzUAhABMAMq0bbo6hvfpl+OG95QALQBIWmEtjeNyAxvfGwBE4CleTv97bPtZLzNCs8/NdY+ppMFTO5OgwKhIqKkjWW/LUgCdmu9XP87bvYFmvWjYrAYtwMszMPseJ4iMMAeQDsSX/Ri3JPtnxuODXUdwg9rwDK2B0wqr2DIMlAZQC7AAetlm8BjU5THO4WV0eEPjsL3FpMRlvUPokJA5QesxbvxSdopbXho2T+CkAMVgiQHW0mEPsTI2h5Q34OxLinEslXZhKyyDNK8nDkAZADbAEUoeITKsj/t7vMv1r/qJbwA262rY6PAc2AbWI7T8sFwqNG/RllkfoQ3tMIhHgBYV6dkyAjUo3GRT5rgfIS4ygrsncNaL7R5eBpFqTKz37W15B26yegQ4gENQmj7Cm9XWoUWIDMduAIZlbwzro7UBssU4z9OuugBuB68BQ8/IgdsWGidw0bIMdmUBRILiyiO4BsYaAzz69rju0Foth7V2m6EFa7dkMVr1CziH1zjoCGwLLX7ME8QNPFrMHBRXRssulpwgzkAHgDM0WPGLRX0NaksWW3Axzm3ARRCLwp5eMSNjys5lVJrDc3DiUEq36zHCW9R1rOtcVBegHUC0bYUasvAU51q9x0dwc5JgLUo11nq2XTkctkBuy3MpM9kTpcpmATcpbrZkBnDoMzSHMy9PqhvtidGmOdZ6XxUXVefQENRGrICt5w5kUN4cz3bwWtGrAZ7aBepg0VF5DwBzXPb3swHsoIAh3m1qwDBW/aK4prKwzBnaDIyr2xm8/Q1gs2oJyYGmqClBNDi6UZo+WFUHYF29MzT0EiUUv011QmSN4FhAnaD5aPgRmoMKfRRlBDdDi0mCN8DUFSez2nSjKP0CUCfVqc2OYLTrojiMJUju4NTHqySyMtlAvIAo0DB2JAIs3QHbLDOAawAjOFeYA7zHPiquBWbFUpIEiM8Ax2VGpU414AItAOvjXUBpMa4wgS2AiV0AQSWUBFUmSPMMxwO0J3BbaK64WI4YpHQDuVTFbGPZDpR+P24ojt2a07KrzYHFqSYSuUDsegmqgmSDF+3JOG+2wJIJ2gSwgTRgg/IMmk9gMtXxqZRwMRzLkU0sG6CdUx+tmyM8HRW3mXnx2TC12ObGyzfFREGQBbR/9YIqFEKgbt1xBhBt0jFOQHq88/WmuidwAZ6MVqUVqDU5jCAawHOjtB28HOFpqNkcWG9qA6rWe56Uqoh8Q0BUpdVLdkQO8F6sSgqAT4AkK7wZmrc2Jo0Z9a4ycKumCq4rgpvkMME6DVLsG1QHFuvA8MVk7bB2wCI4a/nTgAFiEBXqiOo/UyJYLatkTxzs1iXlAVxv2lS3URtvQKrqONRwBW3MOserU+1eQ+yj4rTHv6a0Dk7bJCmApBVSg6YoMzQ4OItgwXwNjKJA6PBYsbJYHKwJgvwEaH+D46A6t+w9tmSqC4qj2zXGq2/QXGmnHx+AHQYrO7QJmACFChWi2JddIjgA+d2gVYu2+xasChSqLdcsK+2GSgdFCpQOMkCTFdxo2TkxuOJuIOc+MrA7Ur0229jS+0u70iK0Ns7VYM2avTUREDVggIqikFVxBqvQ5nYMZH67TckBXh2W1TcrTWkGjwbQIakBo9T9sGM6vE28i5ZtieFT/dfU5va6rXgd49misGtS3gztMFDZgVmmlG7J1lNRwNY31dVgg/x2hXn+pKmPVaZ2rwLCqj4Hp5RqY1qykK5CUqASFPikvBjjeAP8VLVZ7YY4Lj24WvMyWBes1xHa6bVf/RI6MOtFUaLSHBiBwjocKFFttm5W7dfSZ4YrwMIIkEhUs25VoApB3hWgOMSuMpJ2DFvhuFp2inEDuBKGSgU4DcylwAXQYV1hmx2DQ6FHzczalFZabVbSrLAOqPba1x0gQoz7RZ//FQC32xTADSKhSlXsg8UhSrWrSIVY4VUVwtTWbOogZQOulSNmVfn00cJRzJq33anXRWWY4Rk0b5oDsCQoUqDJY9kEif0mQoc23EraKC4AE1aAicBNWrauAdOVVwiISFWhmErlrlYWgTRo0qD5OI8zuGjVVMExm+pakcumNgZ4vBR4BWhnacBwKDQVIEu1ZCooFKiUDor1uu7Jlg3gBppCkX9bzWbAbHDV7s7BIdKgal025RVRU2Bp8ETcogZQLIFItC8mcJ+mOOYbOG7gKD0RXAW8SlfZqwLDq+7TpjYCR6lKSwWaDZQN0ItY/CIqLI9lEd6X1pLDL3rsFgMjBspV5xOfycqSFODdBJIAhQIRRRJAhLU5pEGB/seq4hgVJzeYPrW6zLdZVcGLwHUDL1ZgP6Yyh3dVNerhagM0a4UlBUXMoiRuU1ih4gabTe8/gBUD1q3K0apdbWo9W9Lwxyu64jrAJESSaGfpACUAjLFOuuooFuPSBzg+VXHnbQpDjWkvdmA/CnVwZ4EeCj0APQo0SbWlsEGrsFhhOTSqWdIzaMikW7VNyaFdw5AYugIrNPYpd7oCOT5JYOoTEaSgviQSAMJqvvo5VXnFhlk31MDxuGu8MmviReCnAD8F+uM2dYsSehSUXKv/klxlQGGFdhu4Aj5A+0txX8C1ONeyZ7epQJtVY/xLpsoEV59bua63DCy9rzZGeyqMoqCB42GKO2/gusHLQP0Q+Llr/yqmNkLPgnLUWFZSLTOKoKnsdljWN9W1ppNN2eq1p4y6j3FzG+C5Pb2um+wLDPGvKlACUIwAyZqRRcFk4HJVGy9rPwX4UfA/AD8wgISa2soBU1pBSUQRV1cVQCsxYqmxbaPydANuUNxcjuygxfX+SJnW+IdewtSyJSQPCeoTX6+tA6zgJBXwuCHHBzw/kOsD/tzAzw3+WEL4qfD0BegFlLNAM3EnVmh0cAjKmuqzf7DjTmUxo1o5Mo4cYuMEMC3HBPVN8MRqvzEOSk8kprYkCkkKyQrJBXLekOuGvD7gy+D9V2r7AdCgVaWVDBTRmgjYoXWV8Z/j1zOwcRkA8m9McEFdi3V3iozqs+TRx7aePKzO82VXnZh1E5ASIFmRjhtiapPXB/zvbg1mWb0UeirKUWc1SqpFemmjAB82RWArvL9A7cDtrYp/APhkZ0sebaIAQaFBfdIys9RtkqvqIjhTm/x8ID9vyM8b+PmArxt6FeAsKIfUOk36nFkDZb0GYLt49awoXWCN62qK+wKu2ReTbUMtGyHSAQb1dcDs+4g62+IxLgNyKNJZkK7boH2Q/nuD/72rZV839KwjCk3FCts6jCtkmzObIfxluzV+PatsW448gvuHft0Wp97jl8A+eBBUaEkgKUGOA+mq4NLL1fYLef2Crzd4voHjA811hlil1BkajjOz+/ZvUNZ98V+Pb1urfoP417Z5mVD4tPzQTHUUQhIghyvugLxupNeF9POGvAzc+QuebzB/aoFss8RqE6t+MUC3kralv9WzA7zCiuu6Km4H7ml92aZrjwAPZnEaNCaFZEIOgZwJ6VWQXgfSzwV5vZGuF+Q0cOkXSG+0qSe756Htr4+vPchVR33bCnCGHo/7Cu4Rztym47H0fqMb/Yl8e0hZDkBOQC5BuhLSKyNdB9J1Qq4LclyQfIHpAuQN0H6J49Pty9cZ4c34RhjjckQ4A1uX8ztc4LYpxtsF3IAKAKHj6XelKfwRqfZsjd1VTyeRLiI5vKvCk+Os4NIFpAuUX4C/UL5R58RHeBy+MgQEIwpd+o53RB1VOQJuivsKz6BhBy324WuN1my9aItrzBbbTiKdinQS+RKUS1CuhHJkpOMA0wnKCfICWMEBHyg+qL8Bi1MSq2UjwqctuiDeIddw/KS4R3gRmn1xSx9OZADaYhqa2sTUls5qUz0BXLAfsBE4BMgZmjIkHaCcsLs0AC4o3gAOaFNcbf1Jq3uANGpwTQMjrBXaDBjYKM4h1Ow3AQ0Al5NSrAqcgTm0o0JT63kRt93iKwfBLGCulbFKBnlUcAZPeVbF6Qdqlu0QaQDLdI6j6nZrq2lnrYWs+o4wLIYNoByAHxe+qOG56AjYMorXags0f8LIWBRX3kEDRzDVDEImMDz0q/UWPhRvKE5ogOYTRLX232fbfSESsY2WHPf1V7PqDG3oI7QHxcVY5k0CuJQA9UeqgoDElNdaJjQRKn5v1gIiM9Tu3CiOCo0fqH4avA6ux7xerjzFv4hoBdT3jubt4GYQ87YNWF9up2WwaOVGaQN4tEcZaA/LyLEBZjO4avNqfnOb4ddt2sBZa/BygJcCPAkKHDHNEaz3c1W3Hr+A2wb6GOumZMAHlanBiw/u6QzrgN1Yqa0kQFK9P6HtcQp/LiWZ6syyyCg4zLLHYlm1XydWaBEev0S7nd769rh3BLexYoPFCZYBbY+GBGAanzXL7jRC8ggMeQSnfpfdptQL62NlDJP0VVmuvHdQnW93cH5vyvud+rzfx7UdvAbuE4DtXttMGaCVYE/t1wfaJCMdykZhtblF60Mwxe691rtlcVjV73RoawEiP1A9BnARXleeZ1zPtR5onmy7e6mB2x2mWG3qja6IYEsroZhqG6DZI6MOa1k2pQ3N7hvUZ/P67J4uyosKvCfV+bER4pgwvpfGz+t7cLM1N9A8nsVZS5pFm+3+gOaWrvamAas3iMFqUtAu1GucAZ4DtGVms+xqV08WaiAd4mw1XdTXyUTM+R52TS+usOJ8GoLKdGrx55ELtPaAMntMFIRHRtl6oAPrVksbeBmKj8GLiaJbu0P0ZQWGpLGDNuP7Bs5rMocXk4Bdxy4RLIE+sSkPaTo2tsWmtbVn4FuRaOC09rrEvAhptx4tm1BLDUEvO6K3dAIyJYeybAqHh6IWc+a0hgBwuEsdFLeF9gSLfpq9aBwvaFTdFhITVHf7601CHdT7VKpEC2vYpkFx22AWFMYJkkN7UlBU26PS2D+PER4bxP4TgcmujKrrcW8F5eNY376r7/z9XvD6cgQWxGTwss/XR8Bu0dg0ANxBwz+0qLQtNHHV1ZMRUx6HM/NYFMGl1br2G7UZJqYypcOLsyZjyRKV52mig9vAasqzi2w/30/jxWOjpiV+hfcsym1JAe17VzCc+nhC2sahq+LWxDFvi3ZNDV6F0pf7FzQrDqa4qLagqpjQhv8dKMKLaor703hcW24AOSovQgsQ2+B4gqeeKJRY41VQoaX7Ed5sV08SrrRo1xWcb8/zryk3FcD35tACoG3wn6zpE7bbn/wgRpfZAjaSmKDtAFZo83aHN5c43iJEIM7rxVdu+yOwv8DtVNUUxfG47WfYbydmYFF1kdsEsVu1KzA8kGtw9jUfbPYEU5zr7x2/tid4eae22Zbcwdopb7Pvm+oWaG5ReD+rzfZpLEti37951Y0CtwqL2xNmvffXONXUFNdmbb33ZrA4QXpWlcKfffj638bFW2bT6faqaZpY1FhrxQwbMq2ugHSBc4ftHu88vqUNND8rVx6r4malOTSEdasrB3tyY9VmxeXBEozZc1bZZFXCcxsCqAhshufQ+Kiuvpygw/8yFpU2T6n7K2ZcRQ6/mlygMcAaoEYFfolj3Tk9no3uq6qr8GyycEkOM7QHeE2Nf0EbVTkDfX4R8emSBs5t2tQVwDV4D2UGvwEkoGK23CqvTyf3EtQsGhIDNca9Fdhq27i9B9w5vumj2nT4O92mIcY11W1UFQEijTA5Qdv9D45e4LoCfUgV473bM97R1n6OIEcF1nIkwJtrvMnCmJLJCM0t6AD/erniUoDGPbBZfXxS3SamxRJHA0DYM206A4THtjDP34JdrE1iZf8ELMa8scbq0KLiZvV9A+cqizHuAdYS/54SyXiOHVpwmaJPMe+eP1vnI0aL9svoH67TNxXLk31829n0W5yL4FI/l6/QdhCj+nbQlmQwQQxJwU+qzoqp/YeHWhuCAp3ZJrat6y3ITjaNFh23z49GdFgTuEVtT9BEt9t35Uv8zC00EC1M2er8TBoxAx2vYazvsMAbFbcLvB2eDuqbFbeDWEI5sksKbdsf0Ob3PECLZcgIzba74lSH5OC7u71ngHOZMgfWFeAIy5tM6zv1VdgDuG05kXSJZXOhzOG8dIDW7Lt7sK6pbn2whTqe9LPiOvlY182wBvt+HdKs0NYHI56s2pqukDat7acuN3aiyubXMMTSXsMNQ62muBDjolyHvftAqgvIp+AriDdvRvXGV0Gex6j987tyhqzpSgp/r6pK9+dk1+OhLQJbEWJ0hpchG5DDu+dqefjkf8hQDeg4rBoTxfj+/wdmaszQLLmlmQAAAABJRU5ErkJggg==) no-repeat center center;
	background-size: 18px 18px;
}

ul.display-grid  > li .color-preview > span.color-circle.selected,
ul.display-grid  > li .color-preview > span.color-circle:hover {
	transform: scale(1.1);
}

ul.display-grid  > li .color-preview > span.color-circle.selected::before {
	font-family: "Material Icons";
	content: "check";
	-webkit-font-feature-settings: "liga";
	font-size: 12px;
	font-weight: 600;
	color: white;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.display-grid  > li .color-preview > span.color-circle.bright.selected::before {
	color: var(--button-inverse-text-color);
}

ul.display-grid  > li .color-preview > span.color-circle::before {
	content: "";
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
}

ul.display-grid  > li .color-preview > span.color-circle.bright {
	border: 1px solid #cccccc;
}

ul.display-grid  > li .color-preview > span.color-circle.count {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	background-color: white;
	border: 1px solid #cccccc;
	width: 30px;
	height: 30px;
	pointer-events: none;
}

ul.display-grid  > li .color-preview > span.color-circle.count::before {
	display: none;
}

/* color thumbnail overrides */
ul.display-grid  > li .color-preview.thumbs {
	gap: 0;
	left: -5px;
	bottom: -10px;
}

ul.display-grid  > li .color-preview.thumbs > .thumb {
	position: relative;
	min-width: 40px;
}

ul.display-grid  > li .color-preview.thumbs > .color-circle.count {
	margin-left: 5px;
}

ul.display-grid  > li .color-preview.thumbs > .thumb::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 5px;
	right: 5px;
	background-color: #000;
	height: 2px;
	opacity: 0;
}

ul.display-grid  > li .color-preview.thumbs > .thumb:hover::before,
ul.display-grid  > li .color-preview.thumbs > .thumb.selected::before {
	opacity: 1;
}

ul.display-grid > li .img-container .img-cross-fade {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .2s ease-in-out;
	background-color: #fff;
}

ul.display-grid > li .img-container img {
	display: block;
	margin-left: auto;
	transform-origin: center;
	transition: opacity .2s ease-in;
	opacity: 1;
}

ul.display-grid > li.not-intersected .img-container img {
	opacity: 0.3;
}

ul.display-grid > li > .container-box:not(.is-color-preview):focus-within .img-cross-fade,
ul.display-grid > li > .container-box:not(.is-color-preview):hover .img-cross-fade {
	opacity: 1;
}

ul.display-grid span.underline::after  {
	bottom: 0.6em;
	height: 2px;
}

/* display grid general rules */
ul.display-grid {
	grid-auto-rows: minmax(100px, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}

/* category grid layout (two columns) */
ul.display-grid.category {
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	margin-left: -50px;
	margin-right: -50px;
}

ul.display-grid.category span.underline::after  {
	bottom: -4px;
}

ul.display-grid.category {
	column-gap: 10px;
}

ul.display-grid.category > li {
	height: 100%;
	border-radius: 4px;
	transition: background-color 0.1s linear;
	background-color: var(--menu-background-color);
	cursor: pointer;
}

ul.display-grid.category > li:hover {
	background-color: rgb(243,243,243);
}

ul.display-grid.category > li > .container-box {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr min-content;
	height: 100%;
}

ul.display-grid.category > li > .container-box > .headline {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-left: 50px;
	margin-right: 50px;
}

ul.display-grid.category > li > .container-box h3,
ul.display-grid.category > li > .container-box .h3 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0;
}

ul.display-grid.category > li > .container-box .product-count {
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin-top: 10px;
}

ul.display-grid.category > li > .container-box .img-container {
	padding-top: 25px;
	padding-right: 40px;
	padding-bottom: 25px;
}

ul.display-grid.category > li > .container-box .img-container img {
	max-width: 265px;
}

/* expand hit box to nearest element with position relative */
ul.display-grid > li > .container-box a::before,
#search-result .column.product-boxes > ul > li .title::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: transparent;
	z-index: 1;
}

/* product hitbox */
ul.display-grid.product:not(.columns-2) > li > .container-box a::before {
	bottom: 40px;
}

ul.display-grid.product > li .color-preview.mobile {
	display: none;
}

ul.display-grid.product > li .img-container {
	line-height: 0;
}

/* check support for mix-blend-mode: multiply */ 
@supports (mix-blend-mode: multiply) {
	.collapsible img,
	#main .category-description img,
	#main-menu img,
	ul.display-grid > li .img-container img {
		mix-blend-mode: multiply;
	}
}

/* product grid layout styling (three columns) */
ul.display-grid.module {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

ul.display-grid.product.divider > li {
	border-bottom: 1px solid var(--border-color);
	padding: 25px 0 55px 0;
}

ul.display-grid.product.divider > li {
	padding-left: 10px;
	padding-right: 10px;
}

ul.display-grid.product.divider {
	column-gap: 0;
}

/* product grid layout styling (four columns) */
ul.display-grid.product.columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

ul.display-grid.product.columns-4.divider > li:nth-child(1n) {
	padding-left: 0;
}

ul.display-grid.product.columns-4.divider > li:nth-child(4n) {
	padding-right: 0;
}

ul.display-grid.product.columns-4.divider > li:nth-child(4n+1):nth-last-child(-n+4),
ul.display-grid.product.columns-4.divider > li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
	border-color: transparent;
}

/* product grid layout styling (two columns) */
ul.display-grid.product.columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: auto;
	row-gap: 100px;
}

/* span across two columns */
ul.display-grid.product.columns-2 > li.span-2 {
	grid-column: 1 / 3;
}

ul.display-grid.product.columns-2 > li.span-2,
ul.display-grid.product.columns-2 > li:nth-child(1n) {
	padding-left: 0;
}

ul.display-grid.product.columns-2 > li.span-2,
ul.display-grid.product.columns-2 > li:nth-child(2n) {
	padding-right: 0;
}

ul.display-grid.product.columns-2 > li .content {
	text-align: center;
}

ul.display-grid.product.columns-2 > li h3, 
ul.display-grid.product.columns-2 > li .h3 {
	font-size: 36px;
	text-align: center;
}

ul.display-grid.product.columns-2 > li .img-container {
	display: flex;
	justify-content: center;
}

ul.display-grid.product.columns-2 .img-container > .ui-overlay {
	width: 100%;
	height: auto;
	max-width: 1200px;
}

ul.display-grid.product.columns-2 > li .content + .img-container {
	margin-top: 20px;
}

ul.display-grid.module > li {
	background-color: var(--menu-background-color);
	padding-bottom: 25px;
}

ul.display-grid.module > li .img-container {
	padding: 70px 40px 40px 40px;
}

ul.display-grid.module > li .img-container img {
	margin: 0 auto;
}

ul.display-grid.module > li h3, 
ul.display-grid.module > li .h3 {
	text-align: center;
}

#main section.contrast {
	background-color: var(--secondary-background-color);
}

#main section.contrast > .wrapper {
	background-color: unset;
}

/* category description */
section.category-description .flex-row > .flex-column + .flex-column {
	padding-left: 100px;
}

/* used for "cutout" category images (fixed to bottom) */
section.category-description.cutout .flex-row > .flex-column:last-child {
	flex-direction: column-reverse;
	position: relative;
	margin-bottom: -50px;
}

ul.display-grid.product > li .img-container img {
	margin: initial;
}

/* favorites products */
ul.display-grid.product > li .btn-remove {
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 2;
	opacity: 0;
	transition: opacity linear 0.25s;
	background-color: transparent;
	padding: 10px;
	color: var(--button-inverse-text-color);
}

ul.display-grid.product > li .btn-remove > .material-icons { 
	font-size: 28px;
}

ul.display-grid.product > li:hover .btn-remove { 
	opacity: 1;
}

/* input default style */
input:not([type=checkbox]):not([type=range]):not(.form-control) {
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	display: block;
	outline: 0;
	padding: 12px 16px;
	border-radius: var(--input-border-radius);
	border: 1px solid #ffffff;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	line-height: 1;
}

/* firefox */
input[type=number] {
	-moz-appearance: textfield;	
}

input:not([type=checkbox])::placeholder {
	color: var(--input-text-color);
}

::-webkit-search-cancel-button,
::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}

/* custom search cancel button */
input[type=search].display-cancel::-webkit-search-cancel-button {
	height: 10px;
	width: 10px;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjEyMy4wNXB4IiBoZWlnaHQ9IjEyMy4wNXB4IiB2aWV3Qm94PSIwIDAgMTIzLjA1IDEyMy4wNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTIzLjA1IDEyMy4wNTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZD0iTTEyMS4zMjUsMTAuOTI1bC04LjUtOC4zOTljLTIuMy0yLjMtNi4xLTIuMy04LjUsMGwtNDIuNCw0Mi4zOTlMMTguNzI2LDEuNzI2Yy0yLjMwMS0yLjMwMS02LjEwMS0yLjMwMS04LjUsMGwtOC41LDguNQ0KCQljLTIuMzAxLDIuMy0yLjMwMSw2LjEsMCw4LjVsNDMuMSw0My4xbC00Mi4zLDQyLjVjLTIuMywyLjMtMi4zLDYuMSwwLDguNWw4LjUsOC41YzIuMywyLjMsNi4xLDIuMyw4LjUsMGw0Mi4zOTktNDIuNGw0Mi40LDQyLjQNCgkJYzIuMywyLjMsNi4xLDIuMyw4LjUsMGw4LjUtOC41YzIuMy0yLjMsMi4zLTYuMSwwLTguNWwtNDIuNS00Mi40bDQyLjQtNDIuMzk5QzEyMy42MjUsMTcuMTI1LDEyMy42MjUsMTMuMzI1LDEyMS4zMjUsMTAuOTI1eiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
	background-size: 10px 10px;
	pointer-events: all;
	cursor: pointer;
}

input[type=search].display-cancel:not(:empty)::-webkit-search-cancel-button {
	opacity: 1 !important;
}

/* the switch - the box around the slider */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 24px;
	user-select: none;
}

/* readonly toggle switch */
.toggle-switch.readonly {
	pointer-events: none;
	opacity: 0.35;
}

/* hide default html checkbox */
.toggle-switch > input {
	opacity: 0;
	width: 0;
	height: 0;
	font-size: 0;
	margin: 0;
	padding: 0;
}

/* the slider */
.toggle-switch > .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #999;
	transition: all .25s ease;
	border-radius: 24px;
}

.toggle-switch > .slider:before {
	position: absolute;
	content: "";
	height: 12px;
	width: 12px;
	left: 7px;
	bottom: 6px;
	background-color: white;
	transition: transform .25s ease, color .25s ease;
	border-radius: 50%;
}

.toggle-switch > input:checked + .slider {
	background-color: var(--action-color);
}

.toggle-switch > input:checked + .slider:before {
	transform: translateX(25px);
}

/* large switch slider */
.toggle-large {
	margin: 0 auto;
	width: 100%;
	height: 50px;
	max-width: 440px;
}

.toggle-large:before {
	content: attr(data-title);
	top: 0;
	left: 4px;
	width: 50%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	color: white;
}

.toggle-large:after {
	content: attr(data-checked-title);
	top: 0;
	right: 4px;
	width: 50%;
	height: 100%;
	pointer-events: none;
	color: white;
}

.toggle-large:after,
.toggle-large:before,
.toggle-large > .slider:before {
	position: absolute;
	font-size: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* the slider */
.toggle-large > .slider {
	border-radius: 25px;
}

.toggle-large > .slider,
.toggle-large > input:checked + .slider {
	background-color: black;
}

.toggle-large > .slider:before {
	content: attr(data-title);
	height: 46px;
	width: 50%;
	left: 2px;
	bottom: 2px;
	background-color: white;
	color: black;
	border-radius: 23px;
	z-index: 1;
}

.toggle-large > input:checked + .slider:before {
	content: attr(data-checked-title);
	transform: translateX(calc(100% - 4px));
}

/* general button styles */
button {
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	line-height: 1;
	color: var(--button-text-color);
	background-color: var(--info-color);
	border: 0;
	border-radius: 0;
	cursor: pointer;
	outline: 0;
}

.btn {
	position: relative;
	font-size: 22px;
	text-align: center;
	border-radius: 50px;
	padding: 28px 15px;
	width: 100%;
	max-width: 600px;
	margin-top: 25px;
	transition: opacity .2s, background-color .2s;
	opacity: 1;
	-webkit-user-select: none;
	user-select: none;
}

/* general rules for links styled as buttons */
#main section a.btn {
	display: block;
	line-height: 1;
	font-weight: 600;
	color: var(--button-text-color);
}

.btn:active {
	opacity: 0.9;
	transition: none;
}

.btn-action {
	background-color: var(--action-color);
}

.btn-design {
	background-color: var(--design-color);
}

.btn-danger {
	background-color: var(--danger-color);
}

.btn-info {
	background-color: var(--info-color);
}

.btn-upload {
	background-color: var(--design-color);
	border: 2px solid var(--design-color);
}

.btn-dark {
	background-color: black;
	border: 2px solid black;
}

.btn-bright {
	color: var(--button-inverse-text-color);
	background-color: var(--menu-background-color);
}

.btn-input {
	color: var(--button-inverse-text-color);
	background-color: var(--menu-background-color);
	border-radius: 0;
	border: 1px transparent;
	transition: none;
}

.btn-input:hover {
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
}

.btn-input.active {
	box-shadow: 0px 0px 0px 2px rgba(0,0,0,1);
}

.btn-logo-tool {
	color: var(--button-text-color);
	background-color: var(--background-color);
	background-image: url(data:image/png;base64,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UmVhZHlxyWU8AAADIWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMTQgNzkuMTUxNDgxLCAyMDEzLzAzLzEzLTEyOjA5OjE1ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVCNzFCMkQ4MjJBRDExRUQ5MUFDQTM5MkNCRUIwNUQ3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVCNzFCMkQ5MjJBRDExRUQ5MUFDQTM5MkNCRUIwNUQ3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUI3MUIyRDYyMkFEMTFFRDkxQUNBMzkyQ0JFQjA1RDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUI3MUIyRDcyMkFEMTFFRDkxQUNBMzkyQ0JFQjA1RDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz40+b9WAAAWBUlEQVR42gyP603DQBAGv33c3gU7KDRACfRER1RFLyCkEOLYPvtuF0vzd0Ya8s93RICaV0ePWA7U7+ET+5Xipn6zuJeYS9SCamjm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);
	background-size: 100% 100%;
	transition: all 0.3s ease;
}

.btn-logo-tool::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	border-radius: 40px;
	border: 3px solid white;
}

.btn-logo-tool.btn-md::before,
.btn-logo-tool.btn-sm::before,
.btn-logo-tool.btn-xs::before  {
	top: 3px;
	left: 3px;
	bottom: 3px;
	right: 3px;
	border-width: 2px;
}

.btn-transparent {
	background-color: transparent;
	border: 2px solid white;
}

.btn-monochrome {
	border: 2px solid black;
	color: var(--button-inverse-text-color);
	background-color: var(--background-color);
}

/* buttons with border should ha a little less top / bottom padding to compensate for border width */
.btn-dark,
.btn-transparent,
.btn-monochrome {
	padding: 26px 15px;
}

.btn-md {
	padding: 23px 20px;
	font-size: 18px;
}

.btn-md.btn-dark,
.btn-md.btn-transparent,
.btn-md.btn-monochrome {
	padding: 21px 20px;
}

.btn-sm {
	padding: 18px 15px;
	font-size: 18px;
}

.btn-xs {
	margin-top: 20px;
	padding: 14px 15px;
	font-size: 14px;
}

/* buttons with border should ha a little less top / bottom padding to compensate for border width */
.btn-xs.btn-transparent,
.btn-xs.btn-monochrome {
	padding: 15px 15px;
}

.btn-sm.btn-transparent,
.btn-sm.btn-monochrome {
	padding: 16px 20px;
}

.btn-logo-tool.btn-md {
	padding: 26px 20px;
}

.btn-light {
	border: 2px solid transparent;
	color: #999;
	background-color: transparent;
}

.btn-monochrome:hover {
	color: var(--background-color);
	background-color: var(--button-inverse-text-color);
}

.btn-monochrome.btn-md,
.btn-monochrome.btn-sm,
.btn-monochrome.btn-xs {
	border-width: 1px;
}

.btn-transparent:hover {
	color: black !important;
	background-color: var(--background-color);
	mix-blend-mode: screen;
}

.btn-light:hover,
.btn-danger:hover,
.btn-design:hover,
.btn-info:hover,
.btn-action:hover {
	opacity: 0.9;
}

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

/* button shine animation */
@keyframes shine {
	0% {
		background-position: right;
	}
}

/* incomplete button (can be clicked) */
.btn.disabled,
.btn.disabled:hover,
.btn-incomplete,
.btn-incomplete:hover {
	opacity: 0.4 !important;
}

/* disabled button */
.btn[disabled]:not(.btn-logo-tool),
.btn-remove[disabled] {
	opacity: 0.4 !important;
}

.btn[disabled]:not(.btn-logo-tool) {
	pointer-events: none !important;
}

.btn[disabled]:not(.btn-logo-tool):not(.btn-no-anim) {
	background-image: linear-gradient(90deg,#0000 33%,rgba(255,255,255,0.2) 50%,#0000 66%);
	background-size: 300% 100%;
	animation: shine 2s infinite;
	border-color: rgba(0,0,0,0);
}

.btn-bright:hover {
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
}

.btn-close,
.btn-previous,
.btn-favorites  {
	background-color: transparent;
	padding: 10px;
	color: var(--button-inverse-text-color);
}

.btn-favorites {
	color: var(--action-color);
}

.btn-link:active,
.btn-close:active,
.btn-previous:active,
.btn-favorites:active {
	opacity: 0.9;
}

/* flex form */
.flex-form > .flex-row {
	gap: 25px;
}

/* flex form inline */
.flex-form.flex-form-inline {
	padding-top: 8px;
	max-width: 800px;
}

/* flex form inline */
.flex-form.flex-form-inline .button-container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: 25px;
	gap: 25px;
}

/* flex form inline */
.flex-form.flex-form-inline .button-container .btn {
	max-width: 320px;
}

/* flex form inline */
.flex-form.flex-form-inline .table-upload {
	margin-top: 25px;
}

/* flex form inline */
.flex-form.flex-form-inline .table-upload a {
	line-height: 2.5;
	font-size: 13px;
}

.flex-form .flex-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.flex-form > .flex-row  > .flex-column > .form-control:not(label) {
	margin-bottom: 25px;
	border-radius: 6px;
	padding: 15px 22px;
}

/* needed for switch sliders in a regular form */
.flex-form > .flex-row  > .flex-column > .form-switch {
	margin-bottom: 25px;
	-webkit-user-select: none;
	user-select: none;
}

/* needed for switch sliders in a regular form */
.flex-form > .flex-row  > .flex-column > .form-switch > .slider {
	background-color: #c2c4c6;
}

/* needed for switch sliders in a regular form */
.flex-form > .flex-row  > .flex-column > .form-switch > input:checked + .slider {
	background-color: black;
}

/* align the switch to the right */
.flex-form > .flex-row  > .flex-column + .flex-column > .form-switch {
	margin: 0 0 0 auto;
}

/* buttons used inside flex form needs adjustment to fit perfectly */
.flex-form > .flex-row  > .flex-column > .btn {
	margin-top: 0;
	margin-bottom: 25px;
}

.flex-form > .flex-row  > .flex-column > .btn-xs {
	padding: 15px 22px;
}

/* toggle password visibility */
.flex-form > .flex-row  > .flex-column > .form-placeholder + [data-password="toggle"] {
	position: absolute;
	top: 14px;
	right: 40px;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	outline: 0;
	font-size: 22px;
	color: #adadad;
}

/* default input autofill background color is lightblue which does not look good with the label transition */
.flex-form > .flex-row  > .flex-column > .form-control:autofill { 
	-webkit-background-clip: text;
}

/* animated placeholder using label */
.flex-form  .form-placeholder {
	position: absolute;
	font-size: 14px;
	color: var(--input-placeholder-color);
	top: 0;
	left: 0;
	padding: 0 6px;
	margin: 12px 16px;
	transition: all .25s ease;
	background-color: rgba(255,255,255,0);
	pointer-events: none;
	white-space: nowrap;
}

.flex-form  .form-control:not(label):focus,
.flex-form  .form-control:not(label):not(:placeholder-shown) {
	background-color: rgba(255,255,255,1);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

/* make regular placeholder work with the animated placeholder (could be used for format hints) */
.flex-form  .form-control:not(label):not(:focus)::placeholder {
	color: transparent;
}

.flex-form  .form-control:not(label):focus {
	box-shadow: inset 0 0 0 1px #555;
}

.flex-form .form-control:not(label):focus + .form-placeholder,
.flex-form .form-control:autofill  + .form-placeholder,
.flex-form  .form-control:not(label):not(:placeholder-shown) + .form-placeholder {
	font-size: 12px;
	font-weight: 600;
	color: #555;
	transform: translateY(-23px);
	background-color: rgba(255,255,255,1);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: calc(100% - 30px);
}

/* form field does not validate */
.flex-form  .form-control:not(:autofill):invalid:not(:placeholder-shown):not(:focus) {
	box-shadow: inset 0 0 0 1px var(--danger-color);
}

/* form field does not validate (label color) */
.flex-form  .form-control:invalid:not(:autofill):not(:placeholder-shown):not(:focus) + .form-placeholder {
	color: var(--danger-color);
}

/* standard checkboxes, radios invalid state */
.flex-form .form-control > input:focus:invalid + span {
	color: var(--danger-color);
}

/* form field validates (label) */
.flex-form .form-control:valid:not(:placeholder-shown) + .form-placeholder,
.flex-form .form-control[readonly]:not(:placeholder-shown) + .form-placeholder {
	color: var(--action-color);
}

/* input is readonly */
.flex-form .form-control[readonly] {
	color: #666666;
	pointer-events: none;
}

/* show asterisk only for required fields without readonly inputs */
.flex-form .flex-column.required:not(:has(.form-control[readonly]))::after {
	content: "*";
	position: absolute;
	font-weight: 100;
	font-size: 22px;
	right: 12px;
	top: 8px;
	color: #555;
}

.flex-form .flex-column.flex-grow-25 {
	flex-basis: 25%;
}

.flex-form .flex-column.flex-grow-33 {
	flex-basis: 33%;
}

.flex-form .flex-column {
	position: relative;
}

.flex-form .flex-column.required  > .form-control {
	padding-right: 35px;
}

/* hide number spinner */
.flex-form .flex-column input::-webkit-outer-spin-button,
.flex-form .flex-column input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* general input style */
.form-control  {
	display: block;
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	width: 100%;
	font-size: 18px;
	max-width: 800px;
}

select.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="number"].form-control,
input[type="tel"].form-control,
input[type="date"].form-control,
input[type="search"].form-control,
input[type="email"].form-control,
input[type="url"].form-control {
	position: relative;
	color: var(--input-text-color);
	font-size: 14px;
	font-weight: 500;
	max-height: 50px;
	padding: 13px 16px;
	line-height: 1;
	background-color: rgba(0,0,0,0.03);
	border-radius: 0;
	border: 1px transparent;
	outline: 0;
	transition: box-shadow .25s ease;
}

/* custom arrow for select */
select.form-control {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(1em + 7px), calc(100% - 15px) calc(1em + 7px), calc(100% - 2.6em) 0.7em;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	height: 48px;
	line-height: 1.4;
}

textarea.form-control {
	position: relative;
	color: var(--input-text-color);
	font-size: 14px;
	padding: 13px 16px;
	line-height: 1.6;
	background-color: rgba(0,0,0,0.03);
	border-radius: 0;
	border: 1px transparent;
	outline: 0;
	transition: box-shadow .25s ease;
	width: 100%;
	min-height: 50px;
	resize: none;
}

textarea.form-control::placeholder,
input.form-control::placeholder {
	font-size: 13px;
	color: var(--input-placeholder-color);
}

textarea.form-control:hover,
input.form-control:hover {
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

textarea.form-control:focus,
input.form-control:focus {
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

label.form-control {
	cursor: pointer;
	display: flex;
	align-items: center;
	padding-bottom: 5px;
	-webkit-user-select: none;
	user-select: none;
}

label.form-control span {
	display: block;
	font-size: 14px;
	margin-bottom: 3px;
	margin-top: 3px;
}

/* checkbox and radio */
label.form-control > input[type="radio"],
label.form-control > input[type="checkbox"] {
	font: inherit;
	appearance: none;
	background-color: white;
	margin: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #666;
	display: grid;
	place-content: center;
	cursor: pointer;
	aspect-ratio: 1;
}

label.form-control > span + input[type="radio"],
label.form-control > span + input[type="checkbox"],
label.form-control > input[type="radio"] + span,
label.form-control > input[type="checkbox"] + span {
	margin-left: 10px;
}

label.form-control > input[type="radio"] + span,
label.form-control > input[type="checkbox"] + span {
	flex-basis: 100%;
}

label.form-control > input[type="radio"] {
	border-radius: 50%;
}

label.form-control > input[type="checkbox"] {
	border-radius: 3px;
}

label.form-control > input[type="radio"],
label.form-control > input[type="checkbox"] {
	transition: background-color .12s ease, border-color .12s ease;
}

label.form-control > input[type="radio"]::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: white;
	transform: scale(0);
	transition: .12s transform ease-in-out;
}

label.form-control > input[type="checkbox"]::before {
	font-family: "Material Icons";
	content: "check";
	-webkit-font-feature-settings: "liga";
	font-size: 15px;
	font-weight: 700;
	color: white;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: .12s transform ease-in-out;
}

label.form-control > input[type="radio"]::before {
	border-radius: 50%;
}

label.form-control > input[type="checkbox"]::before {
	border-radius: 3px;
}

label.form-control > input[type="radio"]:checked,
label.form-control > input[type="checkbox"]:checked {
	background-color: #666;
	border-color: #666;
}

label.form-control > input[type="radio"]:checked::before,
label.form-control > input[type="checkbox"]:checked::before {
	transform: scale(1);
}

/* top menu */
#top-menu {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 4;
	margin-top: 26px;
	margin-left: 30px;
	pointer-events: none;
}

#top-menu .nav-menu {
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
}

/* hamburger button */
.nav-hamburger {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 90px;
	height: 70px;
	padding: 18px 34px 32px 34px;
	pointer-events: all;
}

/* fixed header means hamburger button is also fixed */
body.fixed-header .nav-hamburger {
	top: 26px;
}

/* hamburger button input */
.nav-hamburger > input {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-touch-callout: none;
}

/* hamburger button label */
.nav-hamburger > label {
	position: absolute;
	font-size: 11px;
	text-transform: uppercase;
	color: white;
	font-weight: 500;
	left: 10px;
	right: 10px;
	bottom: 10px;
	text-align: center;
	z-index: 4;
	pointer-events: none;
}

.nav-hamburger::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--hamburger-background-color);
	box-shadow: 0 5px 20px rgb(0,0,0,0.4);
	z-index: 4;
	pointer-events: none;
}

/* hamburger button bars */
.nav-hamburger > .bars {
	position: relative;
	z-index: 4;
}

.nav-hamburger > .bars > span {
	display: block;
	position: absolute;
	height: 3px;
	border-radius: 2px;
	width: 100%;
	background: white;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .15s ease-in-out;
	pointer-events: none;
}

.nav-hamburger > .bars > span:nth-child(1) {
	top: 0;
}

.nav-hamburger > .bars > span:nth-child(2),
.nav-hamburger > .bars > span:nth-child(3) {
	top: 7px;
}

.nav-hamburger > .bars > span:nth-child(4) {
	top: 14px;
}

.nav-hamburger > input:checked ~ .bars > span:nth-child(1) {
	top: 7px;
	width: 0%;
	left: 50%;
}

.nav-hamburger > input:checked ~ .bars > span:nth-child(2) {
	transform: rotate(45deg);
}

.nav-hamburger > input:checked ~ .bars > span:nth-child(3) {
	transform: rotate(-45deg);
}

.nav-hamburger > input:checked ~ .bars > span:nth-child(4) {
	top: 7px;
	width: 0%;
	left: 50%;
}

.nav-hamburger > input:checked ~ #main-menu {
	visibility: visible;
	left: -30px;
	transform: none;
	transition: visibility 0s linear 0s, transform 0.2s cubic-bezier(0,0,0.1,1);
}

/* main menu */
#main-menu,
#main-menu .menu-fold-out {
	position: absolute;
	height: 100vh;
	height: 100dvh;
	width: 450px;
}

#main-menu {
	top: 60px;
}

/* make right border inline with 1px vertical scrollbar */
#main-menu.level-2,
#main-menu.level-3,
#main-menu.level-4,
#main-menu.level-3 .menu-fold-out,
#main-menu.level-4 .menu-fold-out  {
	box-shadow: inset -1px 0px 1px 0px rgba(0,0,0,0.15);
}

/* no right border for last menu level */
#main-menu.level-2 .menu-fold-out,
#main-menu.level-3 .menu-fold-out  .menu-fold-out,
#main-menu.level-4 .menu-fold-out  .menu-fold-out .menu-fold-out {
	box-shadow: none;
}

/* offset the main menu position by 6px when at scroll top */
body.fixed-header #main-menu,
body.scroll-top #main-menu {
	top: 66px;
}

#main-menu .menu-fold-out {
	top: 0;
}

#main-menu {
	visibility: hidden;
	left: -450px;
	background-color: var(--background-color);
	z-index: 3;
	cursor: auto;
	padding-bottom: 0;
	transform-origin: 0% 0%;
	transform: translateX(-100%);
	transition: none;
}

/* spinner animation for loading menu content */
#main-menu.menu-loading::after {
	content: "";
	display: block;
	position: absolute;
	border: 7px solid rgba(0,0,0,0.1);
	border-top: 7px solid rgba(0,0,0,0.3);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	animation: spin 2s linear infinite;
	top: 50%;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#main-menu .btn-close,
#main-menu .btn-previous {
	position: absolute;
	color: var(--dark-anchor-color);
}

#main-menu .btn-close {
	top: 2px;
	right: 0;
}

#main-menu .menu-header .btn-close {
	display: none;
}

#main-menu .btn-previous {
	display: none;
	top: 2px;
	left: 0;
}

#main-menu > .menu-header {
	display: none;
}

/* fold out menu */
#main-menu .menu-fold-out {
	display: none;
	background-color: var(--background-color);
	padding-bottom: 95px;
	z-index: 2;
}

/* levels */
#main-menu .menu-fold-out {
	left: 450px;
}

#main-menu ul ul > li.expanded > .menu-fold-out,
#main-menu ul ul > li > .menu-fold-out:target {
	display: block;
}

#main-menu .menu-fold-out.full-width {
	width: calc(100vw - 450px);
	padding-top: 25px;
	padding-left: 25px;
	padding-bottom: 0;
}

#main-menu .menu-fold-out.full-width h3 {
	padding: 0;
	margin-bottom: 0.5em;
}

#main-menu .menu-fold-out.full-width h3 > a {
	font-size: 32px;
	padding: 0 0 0 20px;
}

#main-menu .menu-fold-out.full-width a:hover {
	background-color: transparent;
}

#main-menu .menu-fold-out > ul > ul {
	margin-left: 25px;
}

#main-menu .menu-fold-out.full-width > .inner > ul > li {
	padding-top: 5px;
}

#main-menu .menu-fold-out.full-width > .inner > ul ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 25px;
	row-gap: 5px;
	margin-bottom: 65px;
}

#main-menu .menu-fold-out.full-width > .inner > ul > li:last-child ul {
	margin-bottom: 0;
}

#main-menu ul li {
	outline: 0;
}

#main-menu ul li:focus {
	background-color: #ececec;
}

#main-menu .menu-header {
	position: relative;
	margin-bottom: 15px;
}

#main-menu .menu-header .btn-previous {
	display: none;
}

#main-menu.header-overflow > .menu-header::before,
#main-menu .menu-fold-out.header-overflow > .menu-header::before {
	content: "";
	position: absolute;
	height: 44px;
	bottom: -20px;
	left: 40px;
	right: 40px;
	box-shadow: 0px 10px 20px -20px rgba(0,0,0,1);
	z-index: 1;
	pointer-events: none;
}

#main-menu .menu-fold-out.full-width .menu-header {
	display: none;
}

#main-menu .menu-fold-out.full-width > .inner,
#main-menu > ul,
#main-menu .menu-fold-out > ul {
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: none;
	scroll-behavior: smooth;
	height: 100%;
	padding-bottom: 300px;
}

/* enable the thin scrollbar on firefox */
@-moz-document url-prefix() {
	#main-menu .menu-fold-out.full-width > .inner,
	#main-menu > ul,
	#main-menu .menu-fold-out > ul {
		scrollbar-width: thin;
	}
}

#main-menu .menu-fold-out.full-width ul > li a {
	padding: 12px 20px;
}

#main-menu ul.navigation > li > ul {
	margin-bottom: 2.5em;
}

#main-menu ul.navigation > li:last-child > ul,
#main-menu .menu-fold-out ul:last-child  {
	margin-bottom: 0;
}

@media (pointer: fine) {
	#main-menu .menu-fold-out > .inner::-webkit-scrollbar,
	#main-menu > ul::-webkit-scrollbar,
	#main-menu .menu-fold-out:not(.full-width) > ul::-webkit-scrollbar { 
		width: 2px;
		background: transparent;
	}

	#main-menu .menu-fold-out > .inner::-webkit-scrollbar-thumb,
	#main-menu > ul::-webkit-scrollbar-thumb,
	#main-menu .menu-fold-out:not(.full-width) > ul::-webkit-scrollbar-thumb {
		background-color: black;
	}
}

#main-menu h3,
#main-menu .h3 {
	padding: 55px 20px 0 45px;
	font-size: 20px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 1em;
	line-height: 1.6;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

#main-menu ul > li a {
	position: relative;
	display: block;
	padding: 16px 20px 16px 45px;
	font-size: 14px;
	color: var(--dark-anchor-color);
	line-height: 1;
	margin-right: 1px;
}

#main-menu ul > li.see-all a {
	font-weight: 700;
}

#main-menu ul > li.sub.expanded > a,
#main-menu ul > li a:hover {
	background-color: var(--menu-background-color);
}

#main-menu ul > li.sub.expanded > a {
	font-weight: 700;
}

#main-menu ul > li.sub.expanded > a > span.underline::after {
	opacity: 1;
}

#main-menu ul > li.image > a {
	display: flex;
	align-items: center;
	min-height: 90px;
}

#main-menu ul > li.image > a img:not(.svg-img) {
	margin-left: auto;
	margin-right: 25px;
	transform-origin: center;
	transition: opacity .3s linear, transform .15s cubic-bezier(0.64, 0.57, 0.67, 1.53);
	transform: scale(1) translateX(0);
	max-width: 80px;
	opacity: 1;
}

#main-menu ul > li.image.not-intersected  img {
	transform: translateX(10px) scale(0.8);
	opacity: 0;
}

#main-menu ul > li.sub > a::after {
	font-family: "Material Icons";
	content: "chevron_right";
	-webkit-font-feature-settings: "liga";
	font-size: 18px;
	font-weight: 400;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -9px;
	color: var(--dark-anchor-color);
}

#main-menu ul > li.sub > a:hover::after,
#main-menu ul > li.sub.expanded > a::after {
	font-weight: 700;
}

#main-menu ul > li.disabled,
body.checkout #main-menu ul > li.settings-tax {
	pointer-events: none;
}

#main-menu ul > li.disabled > a,
#main-menu ul > li.disabled > a::after,
body.checkout #main-menu ul > li.settings-tax > a,
body.checkout #main-menu ul > li.settings-tax > a::after {
	color: #bfbfbf;
}

#main-menu ul > li h3 a,
#main-menu ul > li .h3 a {
	font-size: 20px;
	font-weight: 700;
}

#main-menu ul > li a span.material-icons-outlined {
	color: var(--dark-anchor-color);
	vertical-align: -5px;
}

#main-menu ul > li a > span.underline::after {
	bottom: -3px;
}

#main-menu ul > li a:hover > span:not([class])::after {
	transform: translateX(0);
	opacity: 1;
	width: 100%;
}

/* static header (default) */
#header {
	position: static;
	width: 100%;
	height: 92px;
	max-height: 92px;
	background-color: var(--info-color);
	color: var(--inverse-text-color);
	margin: 0;
	padding: 0;
	z-index: 3;
	max-width: 100vw;
}

/* sticky header */
body:not(.scroll-top) > #header {
	position: -webkit-sticky;
	position: sticky;
	top: -32px;
	transition: top 0.15s ease-in-out;
}

/* fixed header means we need to offset the position */
body.fixed-header:not(.scroll-top) > #header {
	top: 0;
}

/* hide header */
body.shrink-header:not(.mega-menu-visible):not(.search-result-visible):not(.main-menu-visible):not(.product-added-menu-visible) > #header {
	top: -92px;
}

/* we need position relative for header-backdrop */
#header > .wrapper {
	position: relative;
}

/* header backdrop */
#header > .wrapper .header-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	transition: visibility 0s linear 0s, transform 0s linear 0s, background-color 0.6s ease;
	pointer-events: none;
}

#header > .wrapper > .top,
#header > .wrapper > .content {
	display: grid;
	grid-template-columns: minmax(380px, 1fr) 2fr minmax(380px, 1fr);
	align-items: center;
	gap: 20px;
}

/* top bar */
#header > .wrapper > .top {
	height: 32px;
	background-color: #e6e7e8;
	white-space: nowrap;
}

#header > .wrapper > .top div {
	color: black;
	font-size: 11px;
}

#header > .wrapper > .top .column,
#header > .wrapper > .top .column > a {
	display: flex;
	align-items: center;
}

#header > .wrapper > .top .column > a {
	line-height: 2.2;
}

#header > .wrapper > .top .rating {
	gap: 40px;
}

#header > .wrapper > .top .material-icons {
	font-size: 16px;
	margin-right: 7px;
}

#header > .wrapper > .top .usp {
	font-weight: 600;
}

#header > .wrapper > .top .usp {
	text-transform: uppercase;
	justify-content: center;
	color: rgba(0,0,0,0.7);
}

#header > .wrapper > .top .usp > span {
	display: inline-block;
	margin: 0 10px;
}

/* last column links in the top header */
#header > .wrapper > .top > .column.links {
	gap: 30px;
}

/* last column links in the top header */
#header > .wrapper > .top .links a {
	display: inline-flex;
	margin: 0;
	gap: 5px;
}

/* main category navigation */
#header .search-wrapper {
	display: none;
}

#header .search-mode > #search .search-wrapper {
	display: flex;
}

#header .search-mode > #search .links-wrapper {
	display: none;
}

#header .links-wrapper,
#header .links-wrapper ul {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}

#header .links-wrapper ul > li {
	display: inline-block;
	position: relative;
}

#header .links-wrapper ul > li a,
#header .links-wrapper ul > li button {
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	padding: 0 15px;
	padding-bottom: 0;
	white-space: nowrap;
	color: white;
	line-height: 2.5;
	height: 60px;
}

#header .links-wrapper ul > li a {
	position: relative;
}

#header .links-wrapper[data-toggle="mega-menu"] ul > li a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 10px solid var(--info-color);
	visibility: hidden;
	z-index: 1;
	transition: transform 0.1s ease, visibility 0s linear 0.1s;
}


#header .links-wrapper[data-toggle="mega-menu"] ul > li a.active::after {
	visibility: visible;
	transform: translate(-50%, 9px);
	transition: transform 0.1s ease, visibility 0s linear 0s;
}

#header .links-wrapper ul > li a > .underline::after,
#header .links-wrapper ul > li button > .underline::after {
	background-color: var(--inverse-text-color);
}

#header .links-wrapper ul > li button:hover > .underline::after,
#header .links-wrapper ul > li a:hover > .underline::after {
	opacity: 1;
}

#header .links-wrapper ul > li button > .material-icons-outlined {
	display: flex;
	align-items: center;
	margin-right: 5px;
	font-size: 28px;
}

/* in checkout page, prevent switching price display mode */
body.checkout #header > .wrapper > .top .links a#link-tax {
	pointer-events: none;
	color: #888888;
}

#header > .wrapper > .content {
	height: 60px;
}

#header > .wrapper > .top > .column.rating,
#header > .wrapper > .content > .column:first-child {
	justify-self: start;
	padding-left: 155px;
}

#header > .wrapper > .top > .column.links,
#header > .wrapper > .content > .column:last-child {
	justify-self: end;
}

#header > .wrapper > .top > .column.links {
	padding-right: 90px;
}

#header > .wrapper > .content > .column:last-child {
	padding-right: 45px;
}

#header > .wrapper > .content > .column:last-child {
	gap: 6px;
}

#header > .wrapper .logotype > a {
	display: block;
	width: 180px;
}

#header > .wrapper .logotype img {
	display: block;
	width: 180px;
	min-width: 180px;
}

/* header icons */
#header > .wrapper .icons {
	display: flex;
}

#header > .wrapper .icons button {
	position: relative;
	height: 60px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 0;
	padding-bottom: 11px;
}

#header > .wrapper .icons .btn-cart {
	transition: background-color .15s;
}

/* cart button hover state */
#header > .wrapper .icons .btn-cart:hover {
	background-color: var(--action-color);
}

/* cart quantity label */
#header > .wrapper .icons .btn-cart .material-icons[data-quantity]::after {
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	font-size: 9px;
	content: attr(data-quantity);
	padding: 4px 6px 2px 6px;
	position: absolute;
	display: block;
	top: 7px;
	left: 37px;
	color: var(--inverse-text-color);
	background-color: var(--action-color);
	border-radius: 8px;
}

#header > .wrapper .icons .btn-cart:hover .material-icons[data-quantity]::after {
	
}

#header > .wrapper .icons button > .material-icons,
#header > .wrapper .icons button > .material-icons-outlined {
	font-size: 20px;
}

/* label */
#header > .wrapper .icons button > .label {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}

#header > .wrapper .icons button > .label > .underline {
	font-size: 11px;
	font-weight: 500;
	line-height: 2.6;
	color: var(--inverse-text-color);
}

#header > .wrapper .icons button > .label > .underline::after {
	background-color: var(--inverse-text-color);
}

/* button hover state (underline) */
#header > .wrapper .icons button:not(.btn-cart):hover > .label > .underline::after {
	opacity: 1;
}

/* inspiration button has deviant color */
#header > .wrapper .icons .btn-inspiration,
#header > .wrapper .icons .btn-inspiration > .label > .underline {
	color: var(--design-color);
}

/* inspiration button has deviant underscore color */
#header > .wrapper .icons .btn-inspiration > .label > .underline::after {
	background-color: var(--design-color);
}

/* attention label */
#header > .wrapper .icons [data-count]::before {
	content: attr(data-count);
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	font-size: 9px;
	height: 16px;
	width: 16px;
	color: white;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 7px;
	right: 22px;
	background-color: var(--danger-color);
	border-radius: 50%;
	border: 1px solid white;
}

/* information label */
#header > .wrapper .icons [data-count].information::before {
	background-color: var(--info-secondary-color);
}

/* quick search */
#search {
	
}

/* hide mobile header on desktop */
#search .search-wrapper > .mobile-header {
	display: none;
}

#search .search-bar {
	position: relative;
	max-width: var(--quick-search-width);
	width: 100%;
	margin: 0 auto;
}

/* search input */
#search .search-bar input[type="search"] {
	padding: 19px 45px;
	border-radius: 999px;
	height: 40px;
	width: 100%;
	background-color: white;
}

/* search input placeholder */
#search .search-bar input[type="search"]::placeholder {
	color: var(--input-placeholder-color);
}

/* search button and close button */
#search .btn-submit,
#search .btn-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0 15px;
	background-color: transparent;
	font-size: 22px;
	color: var(--input-placeholder-color);
}

#search .search-bar .btn-close {
	left: 0;
	right: auto;
}

#search .search-bar .btn-close > .material-icons-outlined {
	font-size: 15px;
	color: black;
}

#search .search-bar input[type="search"]:not(:placeholder-shown) + .btn-submit {
	color: black;
}

/* cancel button is hidden default */
#search .search-bar input[type="search"]::-webkit-search-cancel-button {
	position: relative;
	height: 34px;
	width: 40px;
	right: 5px;
	background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15px" viewBox="0 0 24 24" fill="%23000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>');
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	pointer-events: none;
}

/* cancel button becomes visible when typing */
#search .search-bar input[type="search"]:not(:placeholder-shown)::-webkit-search-cancel-button {
	opacity: 1 !important;
	pointer-events: all !important;
}

/* divider line betwen search and cancel */
#search .search-bar input[type="search"]:not(:placeholder-shown) + .btn-submit::after {
	content: "";
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 0;
	width: 0;
	border-left: 1px solid rgba(0,0,0,0.2);
}

/* mega menu */
#mega-menu {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 92px;
	background-color: var(--background-color);
	color: var(--text-color);
	overflow: hidden;
	min-height: 500px;
}

body.mega-menu-visible #mega-menu {
	display: block;
}

#mega-menu .wrapper {
	padding-top: 50px;
	padding-bottom: 50px;
}

#mega-menu ul.display-grid.category {
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(90px, 1fr);
	margin-left: 80px;
	margin-right: 80px;
	display: none;
}

#mega-menu ul.display-grid.category.active {
	display: grid;
}

#mega-menu ul.display-grid.category > li > .container-box h3, 
#mega-menu ul.display-grid.category > li > .container-box .h3 {
	font-size: 14px;
}

#mega-menu ul.display-grid.category > li > .container-box > .headline {
	margin-left: 25px;
	margin-right: 25px;
}

#mega-menu ul.display-grid.category > li > .container-box .product-count {
	font-size: 12px;
	font-weight: 400;
}

#mega-menu ul.display-grid.category > li > .container-box .img-container {
	padding-top: 15px;
	padding-right: 25px;
	padding-bottom: 15px;
}

#mega-menu ul.display-grid.category > li > .container-box .img-container img {
	max-width: 80px;
}

/* search result */
#search-result {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 92px;
	background-color: var(--secondary-background-color);
	color: var(--text-color);
	overflow: hidden;
	padding-left: 30px;
	padding-right: 30px;
	min-height: 500px;
}

body.search-result-visible #search-result {
	display: block;
}

/* search result spinning loader */ 
body.search-result-visible #search-result.result-loading::after {
	content: "";
	display: block;
	position: absolute;
	background-color: var(--secondary-background-color);
	border: 8px solid rgba(0,0,0,0.1);
	border-top: 8px solid rgba(0,0,0,0.3);
	border-radius: 50%;
	width: 150px;
	height: 150px;
	animation: spin 2s linear infinite;
	top: 50%;
	left: 50%;
	margin-left: -75px;
	margin-top: -75px;
}

/* make thumbnails blend with a gray background */ 
#search-result .wrapper > .content .img-container > img,
#search-result .wrapper > .content .img-container > canvas {
	mix-blend-mode: multiply;
}

#search-result .wrapper {
	margin: 0 auto;
	max-width: var(--quick-search-result-width);
}

#search-result .wrapper > .content {
	display: grid;
	grid-template-columns: minmax(100px, 150px) 1fr;
	column-gap: 80px;
	padding: 45px 0;
	-webkit-user-select: text;
	user-select: text;
}

#search-result .wrapper > .content.one-column {
	grid-template-columns: 1fr;
}

#search-result .wrapper > .content.empty {
	display: block;
	padding-left: 32px;
}

#search-result .wrapper > .content div {
	font-size: 14px;
	line-height: 1.6;
}

#search-result .wrapper > .content strong {
	font-weight: 800;
}

#search-result .wrapper > .content > .column {
	position: relative;
}

#search-result .wrapper > .content > .column > ul > li {
	position: relative;
}

#search-result .wrapper > .content h4 {
	font-weight: 800;
	font-size: 16px;
}

#search-result .wrapper > .content ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#search-result .wrapper > .content ul > li a {
	display: inline-grid;
	font-size: 14px;
	color: black;
}

/* focused style in search result */
#search-result .wrapper > .content ul > li:focus-within {
	outline: 1px dotted rgba(0,0,0,0.6);
	outline-offset: 6px;
	border-radius: 1px;
}

/* focused style in search result */
#search-result .wrapper > .content ul > li a:focus .underline::after {
	opacity: 1;
}

#search-result .wrapper > .content ul > li a > .underline {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

#search-result .wrapper > .content a > .underline::after {
	bottom: 2px;
}

/* vertical divider between columns */
#search-result .wrapper > .content > .column.list-items::after {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	right: -40px;
	border-right: 1px solid rgba(0,0,0,0.12);
}

/* when there is only one column, no divider line is displayed */
#search-result .wrapper > .content.one-column > .column.list-items::after {
	display: none;
}

/* offset vertical position so links are more aligen with the right column */
#search-result .wrapper > .content > .column.list-items ul {
	position: relative;
	top: -5px;
}

/* list items should be vertically center aligned */
#search-result .wrapper > .content > .column.list-items ul > li {
	align-items: center;
}

#search-result .wrapper > .content > .column.list-items ul > li  a {
	padding: 8px 0;
}

#search-result .wrapper > .content > .column.product-boxes > ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 35px;
	row-gap: 45px;
}

#search-result .wrapper > .content > .column.product-boxes > ul > li {
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: start;
	gap: 35px;
	cursor: pointer;
}

/* display underscore when hovering list item */
#search-result .wrapper > .content > .column.product-boxes > ul > li:hover .underline::after  {
	opacity: 1;
}

#search-result .wrapper > .content > .column.product-boxes > ul > li .title {
	font-weight: 800;
}

#search-result .wrapper > .content > .column.product-boxes > ul > li .punchline {
	font-size: 13px;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

#search-result .wrapper > .content ul:not(:last-child) {
	margin-bottom: 60px;
}

#search-result .wrapper > .content ul > li {
	display: flex;
}

#search-result .wrapper > .content ul > li > .material-icons,
#search-result .wrapper > .content ul > li > .material-icons-outlined {
	font-size: 21px;
	margin-right: 12px;
}

/* sitemap layout */
ul.sitemap {
	display: flex;
	flex-direction: column;
	gap: 65px;
	margin-bottom: 100px;
}

ul.sitemap > li {
	width: 100%;
}

ul.sitemap > li > h2 {
	margin-bottom: 25px;
}

ul.sitemap > li > h2,
ul.sitemap > li > h2 > a {
	font-size: 32px !important;
}

ul.sitemap > li > ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 25px;
	row-gap: 5px;
	margin-bottom: 65px;
}

/* shopping cart */
#bottom-cart .material-icons[data-quantity]::after {
	font-family: 'plus_jakarta', sans-serif;
	letter-spacing: 0.01em;
	font-size: 9px;
	content: attr(data-quantity);
	padding: 4px 6px 2px 6px;
	position: absolute;
	display: block;
	top: -3px;
	left: 12px;
	color: var(--inverse-text-color);
	background-color: var(--action-color);
	border-radius: 8px;
}

#bottom-cart .material-icons[data-quantity]::after {
	top: 10px;
	left: 35px;
}

/* image with thumbnail css */
.image-with-thumbnail-container {
	position: relative;
}

.image-with-thumbnail-container > .image-carousel {
	min-width: 300px;
	padding: 40px 0px 40px 0;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-behavior: smooth;
	overscroll-behavior-y: auto;
	overscroll-behavior-x: none;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.image-with-thumbnail-container > .image-carousel > ul {
	display: flex;
	flex-direction: row;
	overflow: hidden;
	scroll-behavior: smooth;
	padding-left: 0px !important;
	gap: 30px;
}

.image-with-thumbnail-container > .image-carousel > ul > li {
	display: block;
	min-width: calc(50% - 15px);
	max-width: calc(50% - 15px);
	scroll-snap-align: center;
	scroll-snap-stop: always;
}

/* navigate buttons */
.image-with-thumbnail-container > .image-carousel-nav {
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	bottom: 0;
	margin: auto 0;
	height: 40px;
}

.image-with-thumbnail-container > .image-carousel-nav > .ui-prev,
.image-with-thumbnail-container > .image-carousel-nav > .ui-next {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	transition: opacity 150ms linear;
	opacity: 0;
}

.image-with-thumbnail-container:hover > .image-carousel-nav > .ui-prev,
.image-with-thumbnail-container:hover > .image-carousel-nav > .ui-next {
	opacity: 1;
	pointer-events: all;
}

.image-with-thumbnail-container > .image-carousel-nav > .hide {
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (pointer: coarse) {
	.image-with-thumbnail-container > .image-carousel-nav > .ui-prev,
	.image-with-thumbnail-container > .image-carousel-nav > .ui-next {
		opacity: 1 !important;
	}
}

.image-with-thumbnail-container > .image-carousel-nav > .ui-next {
	left: auto;
	right: 0;
}

.image-with-thumbnail-container > .image-carousel-nav button {
	background-color: #000;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	margin: 0;
	padding: 0;
	z-index: 0;
	text-decoration: none;
}

.image-with-thumbnail-container > .image-carousel-nav button > .material-icons {
	color: #fff;
	font-size: 24px;
}

.image-with-thumbnail-container > .thumbnail-carousel {
	margin-top: 0;
	display: block;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-behavior: smooth;
	overscroll-behavior-y: auto;
	overscroll-behavior-x: none;
	scrollbar-width: none;
}

.image-with-thumbnail-container > .thumbnail-carousel > ul {
	display: flex;
	gap: 8px;
	list-style-type: none;
	padding: 10px 0;
	padding-left: 0px !important;
}

.image-with-thumbnail-container > .thumbnail-carousel > ul > li {
	width: unset;
}

.image-with-thumbnail-container > .thumbnail-carousel::-webkit-scrollbar {
	display: none;
	background: transparent;
}

.image-with-thumbnail-container > .thumbnail-carousel .thumbnail {
	width: 100px;
	height: 75px;
	object-fit: contain;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 100px;
}

.image-with-thumbnail-container > .thumbnail-carousel li {
	position: relative;
}

.image-with-thumbnail-container > .thumbnail-carousel li.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background-color: black;
}

/* collapsible css */
.collapsible > ul,
.collapsible > ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.collapsible > ul.collapsible-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.collapsible > ul.collapsible-nav .menu-item {
	display: block;
	flex: 1 1 100%;
	position: relative;
	text-align: center;
}

.collapsible > ul.collapsible-nav .menu-item {
	border-bottom: 1px solid var(--border-color);
}

.collapsible > ul.collapsible-nav .menu-item:only-child {
	border-top: 1px solid var(--border-color);
}

.collapsible > ul.collapsible-nav .menu-item .toggle-switch {
	position: absolute;
	left: 0;
	top: 21px;
	z-index: 1;
}

.collapsible > ul.collapsible-nav .menu-item .toggle-switch + a {
	padding-left: 75px;
}

.collapsible.wrap-multi-column > ul.collapsible-nav .menu-item {
	flex: 1 1 25%;
}

.collapsible:not(.wrap-multi-column) > ul.collapsible-nav > li.menu-item > a {
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	white-space: normal;
}

.collapsible > ul.collapsible-nav > li.menu-item > a {
	display: flex;
	align-items: center;
	flex-direction: row;
	position: relative;
	padding: 20px 0;
	-webkit-user-select: none;
	user-select: none;
}

.collapsible.general-layout > ul.collapsible-nav > li.menu-item > a {
	height: 100px;
}

.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item > a {
	justify-content: center;
	padding: 40px 0;
	height: 120px;
	min-width: 120px;
	scroll-margin-top: 60px;
}

.collapsible > ul.collapsible-nav > li.menu-item > a img {
	display: block;
	width: auto;
	height: auto;
}

.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item .hidden-content {
	display: none;
}

.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item a.active,
.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item a:hover {
	background-color: #fafafa;
}

.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item a.active::before {
	content: '';
	position: absolute;
	width: 100px;
	height: 30px;
	background-color: #fafafa;
	bottom: 0;
	left: 50%;
	margin-left: -50px;
	z-index: 2;
	pointer-events: none;
}

.collapsible:not(.wrap-multi-column) > ul.collapsible-nav > li.menu-item > a::after {
	font-family: "Material Icons";
	content: "keyboard_arrow_down";
	-webkit-font-feature-settings: "liga";
	font-size: 24px;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -20px;
	color: var(--dark-anchor-color);
	transition: transform .2s linear;
}

.collapsible:not(.wrap-multi-column) > ul.collapsible-nav > li.menu-item.active > a::after {
	transform: rotate(180deg);
}

.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item > a::after {
	visibility: hidden;
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	left: 50%;
	bottom: -10px;
	background-color: #fafafa;
	margin-left: -14px;
	z-index: 1;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.18);
	transform: translateY(-15px) rotate(45deg);
	transition: none;
}

.collapsible.wrap-multi-column > ul.collapsible-nav > li.menu-item > a.active::after {
	visibility: visible;
	transform: translateY(0) rotate(45deg);
	transition: visibility 0s linear 0s, transform 0.05s linear;
}

.collapsible:not(.wrap-multi-column) ul > li.menu-item > .collapsible-content,
.collapsible.wrap-multi-column ul > li.collapsible-content {
	display: block;
	position: relative;
	max-height: 0px;
	padding: 0;
	flex: 1 1 100%;
	overflow: hidden;
	transition: max-height .25s ease;
}

.collapsible:not(.wrap-multi-column) ul > li.menu-item.active > .collapsible-content {
	max-height: 150px;
	transition: max-height .25s ease;
}

.collapsible.wrap-multi-column ul > li.collapsible-content.active {
	max-height: 50vh;
	transition: max-height .25s ease;
}

.collapsible.wrap-multi-column ul > li.collapsible-content::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 44px;
	margin-top: -44px;
	box-shadow: 0px 10px 20px -20px rgba(0,0,0,0.9);
	pointer-events: none;
}

.collapsible.wrap-multi-column ul > li.collapsible-content::before {
	content: "";
	position: absolute;
	height: 44px;
	left: 0;
	bottom: -44px;
	right: 0;
	box-shadow: 0px -10px 20px -20px rgba(0,0,0,0.9);
	pointer-events: none;
}

.collapsible .content-inner {
	display: block;
	padding: 0 0 30px 0;
	text-align: left;
	font-size: 14px;
}

.collapsible .content-inner p {
	font-size: 14px;
}

.collapsible.general-layout .content-inner {
	padding-top: 0;
}

.collapsible.wrap-multi-column .content-inner {
	padding-bottom: 45px;
}

.collapsible:not(.collapsible-options) .content-inner > :last-child {
	margin-bottom: 0;
}

.collapsible.wrap-multi-column .content-inner:has(.image-with-thumbnail-container) {
	padding-bottom: 0;
}

.collapsible .collapsible-content .content-close {
	display: none;
}

.collapsible.faq-wrapper .collapsible-content .content-inner ul,
.collapsible.faq-wrapper .collapsible-content .content-inner li {
	list-style-type:disc;
	list-style-position: initial;
}

.collapsible.faq-wrapper .collapsible-content .content-inner ul,
.collapsible.faq-wrapper .collapsible-content .content-inner ol {
	padding-left: 40px !important;
}

.collapsible.faq-wrapper .collapsible-content h2,
.collapsible.faq-wrapper .collapsible-content .h2,
.collapsible.faq-wrapper .collapsible-content h3,
.collapsible.faq-wrapper .collapsible-content .h3,
.collapsible.faq-wrapper .collapsible-content h4,
.collapsible.faq-wrapper .collapsible-content .h4,
.collapsible.faq-wrapper .collapsible-content h5,
.collapsible.faq-wrapper .collapsible-content .h5 {
	font-size: 14px !important;
	font-weight: 700 !important;
	margin-bottom: 10px !important;
}

.collapsible.faq-wrapper > ul.collapsible-nav > li.menu-item > a {
	padding: 25px 25px 25px 0;
	font-size: 16px;
	font-weight: 700;
}

.collapsible.faq-wrapper ul > li.menu-item > .collapsible-content {
	transition: max-height .35s ease;
}

.collapsible.faq-wrapper .internal-anchor > span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.collapsible.faq-wrapper .internal-anchor > span.underline::after {
	bottom: 0.2em;
}

.collapsible.faq-wrapper ul.collapsible-nav > li.menu-item.active .internal-anchor > span.underline::after {
	opacity: 1;
}

/* when high resolution we can display the close button outside the menu */
@media only screen and (min-width: 1852px) {

	#main-menu .btn-close {
		top: 2px;
		left: 450px;
		right: auto;
		color: white;
	}

	#main-menu .btn-close > .material-icons {
		font-size: 32px;
	}

	#main-menu.level-2 .btn-close { left: 900px; }
	#main-menu.level-3 .btn-close { left: 1350px; }
	#main-menu.level-4 .btn-close { left: 1800px; }

}

/* main area */
#main {
	background-color: var(--background-color);
	min-height: 100px;
}

.wrapper.margins,
#footer .footer-address {
	margin: 0 150px;
}

/* extra margin for scrollbar at the right side if mouse pointer is used */
@media only screen and (pointer: fine) {
	.wrapper.margins,
	#footer .footer-address	{
		margin-right: 166px;
	}
}

#main section {
	padding: 100px 0 50px 0;
}

#main section:first-of-type {
	padding-top: 80px;
}

/* special rules for regular sections (non modules) on startpage */
body.startpage #main section:not(.module) {
	padding: 70px 0 125px 0;
}

/* special rules for regular sections (non modules) on startpage */
body.startpage #main section:last-of-type {
	padding: 70px 0 70px 0;
}

/* special rules for regular sections (non modules) on startpage */
body.startpage #main section:not(.module) > h2 {
	margin-top: 0;
	margin-bottom: 80px;
}

#main section.contrast > .wrapper {
	background-color: var(--secondary-background-color);
}

#main section.empty-search-result,
#main section.empty-products {
	padding-top: 80px;
}

/* success page related styling */
#main section.success.first {
	padding-top: 0;
}

#main section.success.second {
	padding-bottom: 200px;
}

#main section.success.second h2,
#main section.success.second .h2 {
	margin-bottom: 0;
}

#main section.success.second h3,
#main section.success.second .h3 {
	font-weight: 300;
	color: #777;
}

/* breadcrumb styling */
#breadcrumb {
	position: absolute;
	top: 92px;
	left: 155px;
	z-index: 1;
}

#breadcrumb ol.breadcrumb {
	list-style-type: none;
}

#breadcrumb ol.breadcrumb > li {
	display: inline;
}

#breadcrumb ol.breadcrumb > li > a,
#breadcrumb ol.breadcrumb > li > span {
	color: var(--breadcrumb-text-color);
	font-size: 11px;
	line-height: 2.5;
}

#breadcrumb ol.breadcrumb > li > a[href]:hover {
	color: var(--breadcrumb-hover-text-color);
}

#breadcrumb ol.breadcrumb > li.active > a {
	color: var(--anchor-color);
	font-weight: 600;
}

#breadcrumb ol.breadcrumb > li + li:before {
	padding: 0 7px 0 5px;
	content: "\2039";
	font-size: 13px;
}

/* module general rules */
#main section.module {
	padding-top: 0;
}

#main section.module .wrapper {
	padding: 0 30px;
	overflow: hidden;
	min-height: 900px;
	position: relative;
}

#main section.module.promotion  .wrapper,
#main section.module.eco  .wrapper {
	padding-left: 150px;
	padding-right: 150px;
}

#main section.module.promotion .promotion-logotype {
	display: none;
}

#main section.module .wrapper h1,
#main section.module .wrapper h2,
#main section.module .wrapper h3,
#main section.module .wrapper .h1,
#main section.module .wrapper .h2,
#main section.module .wrapper .h3 {
	color: var(--inverse-text-color);
	margin: 0;
	padding-bottom: 10px;
	line-height: normal;
	text-wrap: balance;
	word-wrap: break-word;
}

#main section.module .wrapper h3,
#main section.module .wrapper .h3 {
	padding-bottom: 50px;
	font-weight: 400;
}

#main section.module  .wrapper p,
#main section.module  .wrapper div {
	color: var(--inverse-text-color);
	line-height: 1.8;
}

#main section.module  .wrapper > .container {
	position: relative;
}

#main section.module .wrapper .content {
	padding-top: 100px;
	padding-bottom: 100px;
}

#main section.module .wrapper .content .flex-row {
	column-gap: 180px;
}

#main section.module:not(.single-column) .wrapper .content .flex-row .flex-column {
	max-width: 50%;
}

#main section.module.single-column .wrapper .content .flex-row {
	justify-content: center;
}

#main section.module.column-reverse .wrapper .content .flex-row {
	flex-direction: row-reverse;
}

#main section.module.single-column .wrapper .content .flex-row > .flex-column {
	max-width: 900px;
}

/* promotion module specific style */
#main section.module.promotion .wrapper {
	background-color: var(--promotion-module-background-color);
}

/* fix to make background blur work with the promotion module */
#main section.module.promotion .wrapper[data-blur] .content .flex-row .flex-column {
	z-index: 1;
}

#main section.module.promotion .wrapper > .container .cover {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 50%;
}

#main section.module.promotion .wrapper > .container .cover > li {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	user-select: none;
}

#main section.module.promotion .wrapper > .container .cover > li.nav-dots {
	position: absolute;
	top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	width: 100%;
	max-width: 900px;
	gap: 14px;
}

#main section.module.promotion .wrapper > .container .cover > li.nav-dots > button {
	display: inline-block;
	position: relative;
	height: 16px;
	width: 16px;
	padding: 0;
	background-color: rgba(255,255,255,0.3);
	border-radius: 50%;
	transition: background-color .2s linear;
	cursor: pointer;
	outline: 0;
	pointer-events: all;
}

#main section.module.promotion .wrapper > .container .cover > li.nav-dots > button.active {
	background-color: var(--design-color);
	pointer-events: none;
}

#main section.module.promotion .wrapper > .container .cover > li.nav-dots > button > span {
	display: none;
}

#main section.module.column-reverse .wrapper > .container .cover > li {
	justify-content: flex-end;
}

#main section.module.promotion .wrapper > .container img {
	object-fit: contain;
}

/* vertically align image to bottom */
#main section.module.promotion .wrapper > .container .cover.align-bottom,
#main section.module.promotion .wrapper > .container .cover > li.align-bottom {
	align-items: end;
}

/* when column-reverse is used we need to reverse the position of the image */
#main section.module.column-reverse.promotion .wrapper > .container .cover {
	left: 0;
	right: auto;
}

/* carousel */
[data-toggle="promotor-carousel"] {
	list-style: none;
  margin: 0;
  padding: 0;
	pointer-events: none;
	--fade-duration: .6s;
  --fade-gap: 0s;
}

[data-toggle="promotor-carousel"] > li:not(.nav-dots) {
	opacity: 0;
	visibility: hidden; 
	transition: opacity var(--fade-duration) ease-in-out, visibility 0s linear calc(var(--fade-duration) + var(--fade-gap));
	will-change: opacity;
	pointer-events: none;
}

[data-toggle="promotor-carousel"] > li.nav-dots {
	pointer-events: auto;
}

[data-toggle="promotor-carousel"] > li.active {
	opacity: 1;
	visibility: visible;
	transition: opacity var(--fade-duration) ease-in-out var(--fade-gap), visibility 0s linear 0s;
}

#main section.module.promotion .wrapper h3,
#main section.module.promotion .wrapper .h3 {
	font-size: 20px;
	color: var(--design-color);
}

/* this is the top module, so different rules apply */
#main section.module.promotion:first-of-type .wrapper h2,
#main section.module.promotion:first-of-type .wrapper .h2 {
	font-size: 20px;
	color: var(--design-color);
	padding-bottom: 50px;
	font-weight: 400;
}

#main section.module.promotion .wrapper strong > span {
	color: var(--design-color);
}

#main section.module.promotion .wrapper > .container {
	position: unset;
}

/* logo tool promotion module specific style */
#main section.logo-tool-promoter .wrapper {
	background:
		linear-gradient(37deg, rgba(237,14,107,1.0), rgba(255,255,255,0) 55.71%),
			linear-gradient(307deg, rgba(45,52,148,1.0), rgba(255,255,255,0) 48.71%),
			linear-gradient(156deg, rgba(252,177,54,1.0), rgba(255,255,255,0) 70.71%),
			linear-gradient(220deg, rgba(1,187,193,1.0), rgba(255,255,255,0) 70.71%);
	min-height: 0;
}

#main section.module.logo-tool-promoter .wrapper .content .flex-row {
	column-gap: 0;
}

#main section.module.logo-tool-promoter .wrapper .content .flex-row > .flex-column {
	max-width: 60%;
	padding-right: 90px;
}

#main section.module.logo-tool-promoter .wrapper .content .flex-row > .flex-column + .flex-column {
	max-width: 40%;
	padding-right: 0;
}

/* overlay thumbnails */
#main section.logo-tool-promoter .wrapper .overlay-thumbnails {
	display: flex;
	gap: 10px;
	width: 100%;
	line-height: 1;
	z-index: 1;
	padding-bottom: 10px;
}

#main section.logo-tool-promoter .wrapper .overlay-thumbnails > .img-container {
	position: relative;
	cursor: pointer;
	max-width: 160px;
	max-height: 120px;
	flex: 1;
}

/* active canvas here */
#main section.logo-tool-promoter .wrapper .overlay-thumbnails > .img-container:hover,
#main section.logo-tool-promoter .wrapper .overlay-thumbnails > .img-container.active {
	
}

/* color selection */
#main section.logo-tool-promoter .wrapper .overlay-color-selection {
	padding-top: 25px;
	padding-bottom: 25px;
	line-height: 1;
	z-index: 0;
	display: flex;
	position: relative;
}

#main section.logo-tool-promoter .wrapper .overlay-color-selection span {
	position: relative;
	display: inline-block;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	cursor: pointer;
}

#main section.logo-tool-promoter .wrapper .overlay-color-selection > span {
	margin-right: 20px;
	margin-bottom: 20px;
}

#main section.logo-tool-promoter .wrapper .overlay-color-selection > span > span {
	transition: transform .1s ease-out;
}

#main section.logo-tool-promoter .wrapper .overlay-color-selection > span.selected > span {
	transform: scale(1.4);
}

#main section.logo-tool-promoter .wrapper .overlay-color-selection > span:hover::after,
#main section.logo-tool-promoter .wrapper .overlay-color-selection > span:focus::after,
#main section.logo-tool-promoter .wrapper .overlay-color-selection > span.selected::after {
	content: "";
	position: absolute;
	display: inline-block;
	border-radius: 50%;
	top: -7px;
	left: -7px;
	right: -7px;
	bottom: -7px;
	border: 3px solid #ffffff;
}

#main section.logo-tool-promoter .wrapper .overlay-color-selection > span:last-of-type {
	margin-right: 0;
}

#main section.logo-tool-promoter .wrapper [data-logo-upload] {
	margin: 0;
	display: block;
}

/* overlay control panel */
#main section #overlay-control-panel {
	visibility: hidden;
	position: absolute;
	display: flex;
	background-color: rgba(255,255,255,0.7);
	backdrop-filter: blur(5px);
	height: auto;
	height: min-content;
	width: 60px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	max-height: 365px;
	left: 45px;
	border-radius: 30px;
	box-shadow: 0 0 35px rgba(0,0,0,0.08);
	z-index: 1;
	opacity: 0;
	transform: translateX(-45px);
}

#main section #overlay-control-panel > .inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding: 15px 0px 15px 0px;
	width: 100%;
}

#main section.logo-tool-promoter #overlay-control-panel {
	background-color: transparent;
	top: 50%;
	margin-top: -150px;
	left: 200px;
}

#main section #overlay-control-panel.active:hover {
	box-shadow: 0 0 35px rgba(0,0,0,0.12);
}

#main section #overlay-control-panel:not(.active) .btn-ctrl {
	pointer-events: none;
}

#main section #overlay-control-panel:not(.active) .btn-ctrl > span {
	color: black;
	opacity: 0.2;
}

#main section #overlay-control-panel:not(.active) .btn-ctrl.active > span {
	-webkit-text-fill-color: unset;
	opacity: 0.12;
}

#main section #overlay-control-panel.transition {
	transition: visibility 0s linear 0.15s, opacity 0.15s cubic-bezier(0,0,0.1,1), transform 0.15s cubic-bezier(0,0,0.1,1);
}

#main section #overlay-control-panel.enabled {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	transition: visibility 0s linear 0s, opacity 0.15s cubic-bezier(0,0,0.1,1), transform 0.15s cubic-bezier(0,0,0.1,1);
}

#main section #overlay-control-panel.active:hover {
	background-color: rgba(255,255,255,1);
}

#main section.logo-tool-promoter #overlay-control-panel.active:hover {
	background-color: transparent;
}

#main section #overlay-control-panel .btn-ctrl {
	background-color: transparent;
	padding: 13px 10px;
	margin: 0;
	outline: 0;
	-webkit-user-select: none;
	user-select: none;
}

#main section #overlay-control-panel .btn-ctrl > span {
	font-size: 18px;
	color: var(--button-inverse-text-color);
}

#main section.logo-tool-promoter #overlay-control-panel .btn-ctrl > span {
	color: white;
}

#main section #overlay-control-panel .btn:not(.btn-logotype):active {
	opacity: 0.7;
}

#main section #overlay-control-panel .btn.disabled,
#main section #overlay-control-panel .btn[disabled] {
	opacity: 0.2;
	pointer-events: none !important;
}

#main section #overlay-control-panel .btn-logotype > span {
	transform: scale(1.4);
	transform-origin: center center;
	opacity: 0.2;
}

#main section #overlay-control-panel .btn-logotype.active > span {
	background: linear-gradient(45deg, rgba(68,200,245,1) 4%, rgba(81,58,151,1) 22%, rgba(238,61,150,1) 46%, rgba(255,242,0,1) 71%, rgba(80,184,72,1) 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 1;
}

#main section.logo-tool-promoter  .btn-logotype.active > span {
	-webkit-text-fill-color: unset;
}

#main section #overlay-horiz-center {
	transform: rotate(-90deg);
}

#main section #overlay-rotate-left > span,
#main section #overlay-rotate-right > span {
	transition: transform .3s ease;
}

#main section #overlay-rotate-left:hover > span {
	transform: rotate(-30deg);
}

#main section #overlay-rotate-right:hover > span {
	transform: rotate(30deg);
}

@media (max-height: 550px) {
	#main section #overlay-control-panel {
		max-height: 260px;
	}

	#main section #overlay-control-panel .btn-ctrl {
		padding: 12px 10px;
	}
}

/* lazy load a background image that fully covers a section (parts of image can be cropped) */
#main section.module .wrapper[data-background-srcset] {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/* apply blur to make a low resolution background image appear smooth when scaled up */
#main section.module .wrapper[data-blur]::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	backdrop-filter: blur(1px); /* default */
}

/* apply 2x blur */
#main section.module .wrapper[data-blur="2"]::before {
	backdrop-filter: blur(2px);
}

/* apply 3x blur */
#main section.module .wrapper[data-blur="3"]::before {
	backdrop-filter: blur(3px);
}

/* apply 4x blur */
#main section.module .wrapper[data-blur="4"]::before {
	backdrop-filter: blur(4px);
}

/* apply 5x blur */
#main section.module .wrapper[data-blur="5"]::before {
	backdrop-filter: blur(5px);
}

/* apply 6x blur */
#main section.module .wrapper[data-blur="6"]::before {
	backdrop-filter: blur(6px);
}

/* apply 7x blur */
#main section.module .wrapper[data-blur="7"]::before {
	backdrop-filter: blur(7px);
}

/* apply 8x blur */
#main section.module .wrapper[data-blur="8"]::before {
	backdrop-filter: blur(8px);
}

/* eco module specific style */
#main section.eco .wrapper:not([data-background-srcset]) {
	background: radial-gradient(circle, #012a51 0%, rgb(0 29 54) 100%);
}

#main section.eco .wrapper .content .flex-column {
	max-width: 60%;
}

#main section.eco .wrapper .content .flex-column + div.flex-column {
	max-width: 40%;
}

#main section.eco .wrapper .content .flex-column img.iso {
	margin: auto;
}

#main section.eco .wrapper .content .flex-column .btn {
	margin-top: 150px;
}

/* top reviews */
#main .top-reviews .logotype-container {
	filter: brightness(0%);
}

#main .top-reviews > .review-avg,
#main .content .top-reviews > .section,
#main .content .top-reviews > hr {
	margin-bottom: 35px;
}

#main .top-reviews > .review-avg > .section strong {
	font-size: 20px;
}

#main .top-reviews > .review-avg > .section small {
	font-size: 11px;
}

#main .top-reviews > .review-avg > .section .material-icons {
	position: relative;
	font-size: 220px;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
}

#main .top-reviews > .review-avg > .section .material-icons::after {
	font-family: 'plus_jakarta';
	font-size: 36px;
	color: var(--inverse-text-color);
	content: attr(data-avg);
	position: absolute;
	top: 50%; 
	left: 50%;
	transform: translate(-50%, -35%);
}

#main .top-reviews > .trust-badges {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding-left: 0;
	gap: 35px;
	margin-bottom: 35px;
}

#main .top-reviews > .reviews-content > article {
	background-color: var(--background-color);
	box-shadow: 0 0 20px rgba(0,0,0,0.07);
	border-radius: 7px;
	line-height: 2;
	padding: 35px;
	margin-bottom: 45px;
	opacity: 1;
	transition: opacity .3s ease-in;
}

#main .top-reviews > .reviews-content > article.not-intersected {
	opacity: 0;
}

#main .top-reviews > .reviews-content > article > .review-header {
	margin-bottom: 15px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

#main .top-reviews > .reviews-content > article > .review-header .review-image {
	position: relative;
	flex: inherit;
	margin-right: 15px;
	border-radius: 50%;
	overflow: hidden;
	height: 50px;
	margin: 0 15px 5px 5px;
	aspect-ratio: 1 / 1;
}

#main .top-reviews > .reviews-content > article > .review-header .review-title {
	font-weight: 700;
}

#main .top-reviews > .reviews-content > article > .review-header .review-title > span {
	font-weight: 400;
}

#main .top-reviews > .reviews-content > article > .review-header .review-stars {
	margin-top: 4px;
}

#main .top-reviews > .reviews-content > article > .review-header .review-stars > .star {
	font-size: 20px;
}

#main .top-reviews > .reviews-content > article p:last-child {
	margin-bottom: 0;
}

#main .top-reviews > .section .internal-anchor {
	color: var(--anchor-color);
	transition: color 0.2s linear;
	line-height: 2.5;
	-webkit-user-select: none;
	user-select: none;
}

#main .top-reviews > .section .internal-anchor > span.underline::after {
	background-color: var(--anchor-color);
}

/* reference image gallery */
#main section ul.display-grid.reference {
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

#main section ul.display-grid.reference > li {
	background-color: var(--menu-background-color);
}

#main section ul.display-grid.reference > li .img-container img {
	transform: none;
}

/* ui transformable stuff */
#main section .overlay-wrapper {
	height: auto;
	width: 100%;
	position: relative;
	font-size: 0;
}

/* make more room for more height for the canvas by clipping the edges */
#main section.logo-tool-promoter .overlay-wrapper {
	min-height: 100%;
	width: auto;
	margin-left: -19.5%;
}

#main section.logo-tool-promoter .overlay-wrapper .ui-overlay-editor {
	min-width: 1000px;
	max-height: 750px;
}

#main section.module .wrapper .overlay-wrapper {
	line-height: 1;
}

#main .ui-transformable.ui-state-focus {
	outline: 0;
	border: 0;
	background: none;
}

#main .ui-transformable:not(.ui-transformable-hidden) {
	z-index: 1;
}

#main .ui-overlay-controls-wrapper {
	pointer-events: none; 
}

body.bright-backdrop-visible:not(.bright-backdrop-fixed) .ui-overlay-controls-wrapper {
	z-index: 5;
}

#main .ui-overlay-controls-wrapper > * {
	pointer-events: all; 
}

#main .overlay-wrapper.ui-overlay-loading .ui-overlay-controls-wrapper {
	display: none;
}
  
#main .ui-overlay-controls-wrapper .ui-transformable-rotate-handle {
	position: absolute;
	width: 0;
	height: 0;
	border: 40px solid rgba(0,0,0,0.1);
	margin: -40px;
	opacity: 0;
	z-index: -1; 
}

#main .ui-overlay-controls-wrapper.ui-visualize .ui-transformable-rotate-handle {
	opacity: 1;
}

#main .ui-overlay-controls-wrapper .ui-transformable-rotate-handle > div {
	width: 0;
	height: 0;
	border: 0 solid transparent;
	margin: 0; 
}

#main .ui-overlay-controls-wrapper .ui-transformable {
	position: absolute;
	transform-origin: 0px 0px;
	cursor: move; 
}

#main .ui-overlay-controls-wrapper .ui-transformable .ui-overlay-control-content {
	pointer-events: all !important;
	cursor: move !important; 
}

#main .ui-overlay-controls-wrapper .ui-transformable:not(.ui-draggable-disabled) .ui-overlay-control-content {
	cursor: move !important; 
}

#main .ui-overlay-controls-wrapper .ui-transformable .ui-overlay-control-content {
	background-color: transparent;
	border: none;
}

#main .ui-overlay-controls-wrapper .ui-transformable .ui-transformable-content-translate-handle {
	cursor: move;
	width: 100%;
	height: 100%;
	position: relative;
	pointer-events: all; 
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle {
	position: absolute;
	width: 0;
	height: 0;
	border: 8px solid #fff;
	margin: -8px;
	z-index: 2;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle > div {
	width: 0;
	height: 0;
	border: 7px solid #f0f;
	margin: -7px;
}

#main .ui-overlay-controls-wrapper .ui-transformable-handle {
	position: absolute;
	width: 0;
	height: 0;
	border: 23px solid rgba(0,0,0,0.1);
	margin: -23px;
	cursor: grab;
	z-index: -1; 
	opacity: 0;
}

#main .ui-overlay-controls-wrapper.ui-visualize .ui-transformable-handle {
	opacity: 1;
}

#main .ui-overlay-controls-wrapper .ui-transformable-handle > div {
	width: 0;
	height: 0;
	border: 0 solid transparent;
	margin: 0;
	pointer-events: none;
}

#main .ui-overlay-controls-wrapper .ui-transformable-content-resize-handle {
	position: absolute;
	width: 0;
	height: 0;
	border: 8px solid #00aeef;
	margin: -8px;
	z-index: 2;
	opacity: 0; 
}

#main  .ui-overlay-controls-wrapper .ui-transformable-content-resize-handle > div {
	width: 0;
	height: 0;
	border: 6px solid #fff;
	margin: -6px; 
	pointer-events: none;
}

#main .ui-overlay-controls-wrapper .ui-transformable-info-box {
	position: absolute;
	transform-origin: 0 0;
	z-index: 5;
}

#main .ui-overlay-controls-wrapper .ui-transformable-info-box.ui-transformable-info-box-outer > div {
	margin-left: -7px;
	margin-top: -7px;
}

#main .ui-overlay-controls-wrapper .ui-transformable-info-box > div {
	display: inline-block;
	margin: 3px;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	white-space: nowrap;
	padding: 5px 7px;
	text-align: center;
}

#main .ui-overlay-controls-wrapper .ui-transformable-info-box .ui-transformable-extra-tooltip,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box .ui-transformable-dimensions,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box .ui-transformable-area {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.8;
}

/* extra tooltip that display max dimension restraint information */
#main .ui-overlay-controls-wrapper .ui-transformable-info-box .ui-transformable-extra-tooltip {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
	padding: 7px 15px;
	margin-bottom: 15px;
	background-color: inherit;
}

#main .ui-overlay-controls-wrapper .ui-transformable-info-box > div .ui-transformable-info-box-wrapper .ui-transformable-area:not(:empty) {
	min-width: 90px;
}

#main .ui-transformable-hidden:not(.ui-transformable):not(.ui-overlay-control-content) {
	display: none !important;
}

#main .ui-transformable-hidden.ui-transformable-invisible {
	display: none !important;
}

/* override info-box background colors */
#main .ui-transformable-content-max-tooltip.color-1,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-1 > div {
	background-color: #f37021;
}

#main .ui-transformable-content-max-tooltip.color-2,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-2 > div {
	background-color: #00aeef;
}

#main .ui-transformable-content-max-tooltip.color-3,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-3 > div {
	background-color: #ef5ba1;
}

#main .ui-transformable-content-max-tooltip.color-4,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-4 > div {
	background-color: #67c18c;
}

#main .ui-transformable-content-max-tooltip.color-5,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-5 > div {
	background-color: #ffc20e;
}

#main .ui-transformable-content-max-tooltip.color-6,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-6 > div {
	background-color: #92278f;
}

#main .ui-transformable-content-max-tooltip.color-7,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-7 > div {
	background-color: #939598;
}

#main .ui-transformable-content-max-tooltip.color-8,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-8 > div {
	background-color: #017feb;
}

#main .ui-transformable-content-max-tooltip.color-9,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-9 > div {
	background-color: #231f20;
}

#main .ui-transformable-content-max-tooltip.color-10,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-10 > div {
	background-color: #cbdb2a;
}

#main .ui-transformable-content-max-tooltip.color-11,
#main .ui-overlay-controls-wrapper .ui-transformable-info-box.color-11 > div {
	background-color: #005d83;
}

/* override handle colors */
#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-1 > div {
	border-color: #f37021;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-2 > div {
	border-color: #00aeef;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-3 > div {
	border-color: #ef5ba1;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-4 > div {
	border-color: #67c18c;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-5 > div {
	border-color: #ffc20e;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-6 > div {
	border-color: #92278f;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-7 > div {
	border-color: #939598;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-8 > div {
	border-color: #017feb;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-9 > div {
	border-color: #231f20;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-10 > div {
	border-color: #cbdb2a;
}

#main .ui-overlay-controls-wrapper .ui-transformable-resize-handle.color-11 > div {
	border-color: #005d83;
}

/* progress */
progress {
	-webkit-appearance: none; 
	appearance: none; 
	display: block;
	margin: 0 auto 20px auto;
	width: 100%;
	height: 2px;
	max-width: 500px;
	border: 0;
	background: #DFDFDF;
}

progress::-webkit-progress-value {
	background: #111111;
	border-radius: 3px;
}

progress::-webkit-progress-bar {
	background: #DFDFDF;
	border-radius: 3px;
}

/* pagination */
.pagination {
	margin-bottom: 10px;
	font-size: 14px;
	text-align: center;
}

/* footer */
#footer {
	margin: 0;
	padding: 0;
	background-color: var(--info-color);
	color: var(--inverse-text-color);
	max-width: 100vw;
}

#footer > .section p,
#footer > .section div,
#footer > .section a,
#footer > .section a:hover,
#footer > .section a:focus {
	font-size: 14px;
	font-weight: 100;
	color: var(--inverse-text-color);
}

#footer > .section .wrapper.first,
#footer > .section .wrapper.last {
	padding: 45px 30px;
}

#footer > .section .wrapper.first {
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

#footer > .section .wrapper.last {
	border-top: 1px solid rgba(255,255,255,0.15);
}

#footer > .section .wrapper.navigation-links > .container {
	margin-top: 65px;
}

/* payment and shipping method logotypes */
#footer > .section .wrapper.columns.first .container  {
	display: grid;
	gap: 45px;
	grid-template-columns: repeat(2, minmax(100px, 1fr));
}

#footer > .section .wrapper.columns .container .img-container > img {
	display: block;
	width: 100%;
}

#footer > .section .wrapper.columns .container > .column {
	display: flex;
	gap: 25px;
}

#footer > .section .wrapper.columns .container > .column:first-child  {
	justify-self: start;
}

#footer > .section .wrapper.columns .container > .column:last-child  {
	justify-self: end;
}

/* max height for payment and shipping logotypes */
#footer > .section .wrapper.columns.first .container .img-container > img {
	max-height: 25px;
	width: auto;
}

/* footer badge logotypes */
#footer > .section .wrapper.columns.last .container  {
	display: flex;
	justify-content: space-between;
	gap: 45px;
}

#footer > .section .wrapper.columns .container figure {
	margin: 0;
	padding: 0;
}

/* footer badge max height */
#footer > .section .wrapper.columns.last .container figure > img {
	max-height: 70px;
	width: auto;
	height: 100%;
	margin: 0 auto;
}

/* footer badge caption */
#footer > .section .wrapper.columns .container figure > figcaption {
	display: block;
	font-size: 12px;
	text-align: center;
	padding-top: 15px;
	white-space: normal;
	text-wrap: balance;
}

/* footer logotype */
#footer > .section .wrapper.second > .container.logotype {
	margin-top: 50px;
}

#footer > .section .wrapper.second > .container.logotype > img {
	margin: 0 auto;
}

/* ul for navigation divided into columns */
ul.navigation.columns {
	column-count: 5;
	column-width: auto;
	column-gap: 55px;
}

#footer > .section ul.navigation.columns > li {
	padding-left: 0;
}

/* when 2 columns under 1 headline is required */
#footer > .section ul.navigation.columns ul.col-2 {
	column-count: 2;
	column-width: auto;
	column-gap: 50px;
}

#footer > .section li.menu-item > a {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 2.5;
}

#footer > .section li.menu-item > a:not(.enabled) {
	pointer-events: none;
}

#footer > .section li.menu-item li > a {
	line-height: 2.5;
}

/* disabled link */
#footer > .section li.menu-item li > a.disabled {
	opacity: 0.5;
	pointer-events: none;
}

/* initially visible on desktop */
#footer > .section ul.navigation .content {
	max-height: initial;
}

#footer > .section ul.navigation .content > .content-inner {
	padding: 0 0 65px 0;
}

#footer > .section ul.navigation.columns ul {
	margin-bottom: 0;
}

#footer > .section a > span.underline::after {
	background-color: var(--inverse-text-color);
}

/* intersected styling */
#footer figure {
	opacity: 1;
}

/* not intersected styling */
#footer figure.not-intersected {
	transition: opacity .2s ease-in;
	opacity: 0.3;
}

/* address */
#footer > .section .container.address {
	margin-top: 45px;
	margin-bottom: 25px;
	padding-left: 30px;
	padding-right: 30px;
}

/* address styling */
#footer > .section address,
#footer > .section address div,
#footer > .section address a,
#footer > .section address a:hover,
#footer > .section address a:focus {
	font-style: normal;
	font-size: 12px;
	font-weight: 100;
	letter-spacing: 0.8px;
	text-align: center;
	line-height: 2.5;
}

/* hide mobile footer address */
#footer > .section .container.address .mobile-address {
	display: none;
}

/* extra padding for scrollbar at the right side if mouse pointer is used */
@media only screen and (pointer: fine) {
	#footer {
		padding-right: 17px;
	}
}

/* preview configuration preview layer */
#product-preview-config {
	position: fixed;
	background-color: var(--background-color);
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 2;
}

#product-preview-config > .preview-config-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: grid;
	grid-gap: 1px;
}

#product-preview-config > .preview-config-wrapper > .grid-item {
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

#product-preview-config > .preview-config-wrapper > .grid-item > canvas,
#product-preview-config > .preview-config-wrapper > .grid-item > img {
	display: block;
	height: 100%;
	margin: 0 auto;
	object-fit: contain;
}

#product-preview-config > .grid-layout-1 > .grid-item,
#product-preview-config > .grid-layout-2 > .grid-item  {  
	max-height: 100vh;
}

#product-preview-config > .grid-layout-3 > .grid-item,
#product-preview-config > .grid-layout-4 > .grid-item,
#product-preview-config > .grid-layout-5 > .grid-item,
#product-preview-config > .grid-layout-6 > .grid-item {  
	max-height: 50vh;
}

/* when previewing all config images, the interactive guide container should not be displayed */
#product-preview-config + .wrapper .interactive-guide-button-container {
	opacity: 0;
	pointer-events: none;
}

.preview-config-wrapper {
	transition: transform 0.1s linear !important;
}

.preview-config-wrapper.grid-layout-1  {
	grid-template-rows: 1fr;
	grid-template-columns: 1fr;
}

.preview-config-wrapper.grid-layout-2 {
	grid-template-columns: repeat(2, 1fr);
}

/* first element spans 2 columns */
.preview-config-wrapper.grid-layout-3 > .grid-item:first-child  {
	grid-column: span 2;
	margin: 0 auto;
}

/* 4 column layout */
.preview-config-wrapper.grid-layout-4 {
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(2, 1fr);
}

/* 5 column layout */
.preview-config-wrapper.grid-layout-5  {
	grid-template-columns: repeat(6, 1fr);
}

.preview-config-wrapper.grid-layout-5 > .grid-item  {
	grid-column: span 3;
}

.preview-config-wrapper.grid-layout-5 > .grid-item:nth-child(n+3) {
	grid-column: span 2;
}

/* 6 column layout */
.preview-config-wrapper.grid-layout-6 {
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(3, 1fr);
}

/* left align the canvas */
.preview-config-wrapper.grid-layout-2  > .grid-item:nth-child(even),
.preview-config-wrapper.grid-layout-3  > .grid-item:nth-child(3),
.preview-config-wrapper.grid-layout-4  > .grid-item:nth-child(even),
.preview-config-wrapper.grid-layout-5  > .grid-item:nth-child(2),
.preview-config-wrapper.grid-layout-5  > .grid-item:nth-child(5),
.preview-config-wrapper.grid-layout-6  > .grid-item:nth-child(3),
.preview-config-wrapper.grid-layout-6  > .grid-item:nth-child(6)  {
	margin: 0 auto 0 0 !important;
}

/* right align the canvas */
.preview-config-wrapper.grid-layout-2  > .grid-item:nth-child(odd),
.preview-config-wrapper.grid-layout-3  > .grid-item:nth-child(2),
.preview-config-wrapper.grid-layout-4  > .grid-item:nth-child(odd),
.preview-config-wrapper.grid-layout-5  > .grid-item:nth-child(1),
.preview-config-wrapper.grid-layout-5  > .grid-item:nth-child(3),
.preview-config-wrapper.grid-layout-6  > .grid-item:nth-child(1),
.preview-config-wrapper.grid-layout-6  > .grid-item:nth-child(4) {
	margin: 0 0 0 auto !important;
}

/* no fullscreen support - extra css */
html.config-preview-open.no-fullscreen-support #product-preview-config {
	z-index: 99;
}

/* no fullscreen support - extra css */
html.config-preview-open.no-fullscreen-support #header,
html.config-preview-open.no-fullscreen-support #quick-link,
html.config-preview-open.no-fullscreen-support #footer-menu,
html.config-preview-open.no-fullscreen-support #footer {
	display: none;
}

/* general layout adjustments for short viewport heights */
@media only screen and (max-height: 680px) {

	#main section #overlay-control-panel {
		max-height: 330px;
		width: 50px;
	}

	#main section #overlay-control-panel .btn-ctrl {
		padding: 6px 10px;
	}

	#main section #overlay-control-panel .btn-ctrl > span {
		font-size: 16px;
	}

	#mega-menu .wrapper {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	#mega-menu ul.display-grid.category {
		grid-auto-rows: minmax(60px, 1fr);
	}

	#mega-menu ul.display-grid.category > li > .container-box .img-container {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	#mega-menu ul.display-grid.category > li > .container-box .img-container img {
		max-width: 60px;
	}

	#mega-menu ul.display-grid.category > li > .container-box h3, #mega-menu ul.display-grid.category > li > .container-box .h3 {
		font-size: 13px;
	}

}

/* layout tweaks when webb app */
@media all and (display-mode: standalone) {
  
}