/*! BuildToolsCookbook v2.0.0 | (c) 2026 Your Name | MIT License | http://github.com/cferdinandi/build-tools-boilerplate */
@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	-ms-flex-align: center;
	align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1;
}

.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.9;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 1em;
}

.splide__arrow--prev svg {
	transform: scaleX(-1);
}

.splide__arrow--next {
	right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 0.5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: 0.7;
	padding: 0;
	position: relative;
	transition: transform 0.2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: #fff;
	transform: scale(1.4);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
}
@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@media screen and (-ms-high-contrast: none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}

	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}
.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

.vjs-svg-icon {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	fill: currentColor;
	height: 1.8em;
	width: 1.8em;
}

.vjs-svg-icon:before {
	content: none !important;
}

.vjs-svg-icon:hover,
.vjs-control:focus .vjs-svg-icon {
	filter: drop-shadow(0 0 0.25em #fff);
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
	text-align: center;
}

@font-face {
	font-family: VideoJS;
	src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABTsAAsAAAAAIpAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV32Y21hcAAAAYQAAAEJAAAD5p42+VxnbHlmAAACkAAADtIAABckI4l972hlYWQAABFkAAAAKwAAADYsvIjpaGhlYQAAEZAAAAAdAAAAJA+RCL1obXR4AAARsAAAABcAAAC8Q2YAAGxvY2EAABHIAAAAYAAAAGB7CIGGbWF4cAAAEigAAAAfAAAAIAFAAI9uYW1lAAASSAAAASUAAAIK1cf1oHBvc3QAABNwAAABfAAAAnXdFqh1eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGR7yDiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGPHcRdyA4RZgQRADaGCyYAAHic7dPXbcMwAEXRK1vuvffem749XAbKV3bjBA6fXsaIgMMLEWoQJaAEFKNnlELyQ4K27zib5PNF6vl8yld+TKr5kH0+cUw0xv00Hwvx2DResUyFKrV4XoMmLdp06NKjz4AhI8ZMmDJjzoIlK9Zs2LJjz4EjJ85cuHLjziPe/0UWL17mf2tqKLz/9jK9f8tXpGCoRdPKhtS0RqFkWvVQNtSKoVYNtWaoddPXEBqG2jQ9XWgZattQO4baNdSeofYNdWCoQ0MdGerYUCeGOjXUmaHODXVhqEtDXRnq2lA3hro11J2h7g31YKhHQz0Z6tlQL4Z6NdSbod4N9WGoT9MfHF6GmhnZLxyDcRMAAAB4nJ1YC1hU17U+a5/HMA4iA3NmVBDmoQwP5TFnHlFeA4gYiUFRQINoSCBAyK3G2yi+0aipYtFcHYo2xsb4NiY3+VrNxSaX5uvt495ozNdoYoxmem2/L8HGpLc+InB279pnhlGr5mvL4eyz99nrrL32eu1/DQcc/okdYgdHOA6MQKp4r9gx0EcMHMezOalVasW5BM7NcXoSb9fFgE6KtSSBxWz1FYDPG+vMBGcKb9cebu2VS5s2aaTkCvRSf6C7Y+Ppibm5E09v7IDs2/3uZQtbD0zIyppwoHXh/93ukmyYgdePNRp65p5v+3v/9otQl2O7wP34cT88p8Md2YxpYLQZoRcy6FlSBRnwnGAe6BPMSCZo+7NJVqS0cE4uHendzhSnbPH6TDqL1+Nme5LZXkCHnGyoH0kne30WH+gswhm3q+pt/mTas9NLS64GnjmSlTPw0wVQT/ewRaBgxtydy3cuUB9/6SW+vb5yRvr+t0eOfPKJZ/9t3+4tL7xj32Xd3thCxi+ge6ifdsAN+l5+wi5HQ/cCoeull1AszS7CUfEcJzK7sKWJAdJhCd0sPM4+EY7QDm5ov08hXRQXE5bf6PV5Q5+IjW7X7Nku92Ask4l2hCRRD6TPqISiCJeQna3SCFwrhrNzXHzo4yFevBwxpzxk8WCIIfkvVEKVy32SbT8n68gzgaslpaiO2zIGIyuSb7RNf9HSuN26y/7OC1tgEmpiyA6aD4qcgTOiLThwGG0eB694FI8NHLLN6OBlRVaMxNAFS4JdXUG6mW8PwpKuYLCLXKGbu8iwYNdgO06Sn3Th+/vyZAxs8Ro30DjHe9gy8Fywi24OMm7Qyzh3MTZVOMYhLBnoC+J79lpTUyQmorjhnMwlcQ5uPEYGpDjsOkkH49BjQLQBqs3jFtFdJNlksYmoQFDArLh8Xh+Qd6Ghcsb6FUuehDi+U/lqD71K/qiegeV1imcwjl7ExwiSrf4BZyCujV6cVcFo6VX+G9IcPyFjJnUufbU/jzrL1X99as36reXl8K32nFaOr+E8jWJEcJ55DpMVfSMe95/AJaOsGBH2GJCNpiRQbK4C8BjdmQA22QY2j03Em13i2YHqtNLU1NI04Yj2HJgA6fQc6VPNpA/D+Ryks554NnVy2mB72uRUfPLsqR4N0LOBQKArwJYO+5W2fgZX8oC1HR6HjNaQTVIG2FPwnTcXXGZZfNB7TE6pTKZUwaw91XWLAoFFGcnB5PHjsckgBjbWutrL+0h5Y1xw3DRGDumsnXb3MJwXrJIN5U7m0rgJ3yG5w4he5ckFG4pmNEkOm0/xOO4r4yL87wqtQM+hiJIVp+6iG2wPBKD35ElGkDx+UfC2v1mFG1o+M3AjNFty8biKMXwzyxnZLds8wYD2BxmCPHAldPOeLsy/0BugftYhVYFAhO8SqQ0j3oK7dHJZnI/jxmUS4onlxskSF8thmvNZjIrRZwEPxr0lBuLRuz3oy/FOHCsxwOPYh2M+e9u3J5pgPYz9gp6G7C9m0A11F9ddqKMfV+4sbq45/YspOysXvT+3pdFdYNg2fHbW8Dz301MqDVuGrz0Fuh0YMW8mddrpqzST7rV9BcvqPoNvadRndWp0p8HvbiqrFj5yFQ/vNFSXDpxpLEFWp+DcrF3FT1afWshFcmCfeAMjEvO65i0Y6XijQfSRPWx3TV/Df7Km3E1l+kLt56s/rwVzuRusNMhudznkwdLaS+QNdeal2jDPP4l9qHc98vTYZOSkxzD+njBWVWjFPKgipx6DkWvXQiW8OYcewVHE5yukinDMcfGgc0opDltYKDxIGBedkzc6jSfE7tlvESCDFUw0Hx0opS+U0lHCxNottbNWSxX9zZVvEhKWUSyBpaXwBc2a98M6UqPeXAs/GDon8Ax7hsthO8cM5HU7Ad0UvRR9lHmtyQKZ4MAe814X5h9MSUkQmhf96eVJ6p90OjIiqSIjvykvr2l5U55O/fPQKD+jIomYpNyGJQ25uQ2kIikRfAmuBHCPsWqkSDEqgZ5KDI2sifS/R43MbZg0idFHbCPNxXxZws1ACVE6hAhOdJwRkJLFBLPZpRGYJ50pko6XzMkgmSx40ljik6AQcKhFnLcQE6rF7PXFe1Ocoj0T3AXgSgJTDIhHRfHlYZKuSzc6uievOJGXY+i5GJkkTp7UM3y0LqATDbtFcbdBxO7o4T25JYlEjoH0uynUh8rapkxp62QN70svSF+hT4gGPlovlmcm/ComLi7mV4kTykV9NFWjE/QrwgQ4uIcAP0rQF4VZYRP2o3PhHHzfPMJj9Ir+uzKUlrH49ntT18AVvj1sc3YGjUT/Mt2Dxawa8ArcA7bCQIpvfwAYu22vEG/No/5RvPdA7g+AelLrPwzy+LtkLPhnpIxH14m4EYq8eeMHbPEPNm6G7Nv9B4jcFPZ8bJj0SEjP3MPgQdKTqqEoy2v6G32P/Y6dxOv04AxnoAeq+GILvUavtYCBXm+BaIhuodcfrN5B/V2EYMCPh+SxavjGyPwV0x4CJgUPGT0mQaODGBACIJZGsMXwAD0LGXx7l3CdAcKMIKI+f5CepWeD0BvyU/GcdBxPF8SwejC6LGZmAURFdsSWKR5HyHld2kbdIZO1Ixx+bnnzU7n5+blPNV9jnUDWhP2tC68tbN3PVIldsQPxSAcSpjOav7Q05uXn5zW2LLvDXn9B6syscPy9iDLEMmSrJz6nYuWMipukjM0AH8JkGS+XFyMRkzSCH7KD/hwm172SAyZYumHlefr5AddrtA0O0TnwaVZxcRY9Bfukn9Gf05N1r9DV9MoBsJ1f+ZrqUvtPHizJAntWybv7hmqLt6QLuK6ZS9Fqi1jO5rDoWPZXXII5Tgajg53cIXCjDCGIcYrRIY2n6+mXOa/W0bdhau3ryiEYe2FV/5oeaIYK/5w5frCyll6/cYO8DiNhw6t1MBWmznt91QX62UF1N7l0eHBZTRGpKaqpKVIPF9UcIzmReud9TSY75+K899GHbBu6wjoR7RKKZVYiYxSPf5/2wJT5e3NAhmUbVn5KLx1Ujg0+BGvpAIh0DezInTkzF37KVocxrKU3r1+XLtAe2lO3l66kfQfB/unKY+q8N375Ru8bc4pJXfEcESU95q+p8ZNZRTWH1d9FzvUdYXk5rLkcdkEisoKKVHQW/b3GEx6tPaYcoJfOr9wAbSBnv1IHpep0OExr4LPMkpJM+j7sly7UHkOzXjoAZljHCGiyegtNlwljM0v+c19ET9Pvst09a2Mtgcf5/ZSzYO5h1156+eyydfAsxGa9XAuF6vzjh6CssLq6ECysperXX0sX5h5ZdpZe3guxsGIPEtHk/aqXX1hVqP5HYVVVISkrrNqvXorIc+5Ou91Hnr/LcD2afi6eX7UBloOcs7cOpqgGaNfs1g7bNbs9z6wASaylN69d0/TFTIz6Ws8+oGV3mE2612wRTHKcVUbhjKadebloMc+dyXgMVtVK6BwMB/+mVW09igdRBWaRtNQX59d/VD//xdQ0TCiYNj1KT9sq6Wdu5WTbqk3qDXyDaLa1fv621LS01G3z61sD6lH8lAxDLicV921s6Bf92JOYvzNYCL1khbqBXEFUzC521N5NyzNaQIWhjyFyDoBIVrAjmv2UEaLlI+c6zw1jmVIPLLLZZUTj6GxGHW+mq1tgHXR2D85p4Q934+jLbtjVLcyCdS10NVzpHqxp4Q/hK7WopY/NRGx9HGsPGdFjOjcpjBnGYMVqY/4eqT5khWEHWUup2A/pTw7pdWgsWft7ETUERL96nRg0HNFPmCYba6pylECaExX89A9WLUOVB4oKLu/o1oqSYHCgLzBUlAz8hNFDRpeSU1XT+LRmDUgPaKbYdHDn9suF/tu13nHJij0N97LfS0QmqONuyONk7zvUI6Qa0pF9f2+oABL92AT6e0U//z9YqAiWtJLU1JK0gS+1aacwamiNqK067u9ZQ8f1d4qLodMzz3uL89Z68V/Hnr++hXWUuHgw8dfi972PeTyPefu3aNNucemQ74qFuIaJnVkOu4Q+yjuwmmC1FqZpl1i4uzoPxjkpPf3Xv545tl26Rr+dOvUd+omqJzch9dOeU7f10Y64nMcKK137DccIZq2WdXtdZjbEoLSzHwiMtrjYLDxpHQW8gjMX6XFYAE2zSWVD04EGYSs9MbO6sEo20BMEAB4mpvSypsKjZ4Stgzb+c3A9/MQT2+vrBy+qvyFxLUtLlSRF/Ri2wjfZ2dus2Q8lXx4608/jnqK5OOap6NY2PSjYYnECCjiEeLJll/pbmqfeIK+ps3+MxrlEhqmTPipVP7kqlF4VhpEb6r+Q7YOJg38kJ9SHBf3NBl6+9YchfbUjb5ahLSzUM3kPHmwFAsZ5rpai0S7E5xWzZ1j+fW7zsUWP2g5NXTw52ySCTrgG0+lbw60l2Y/CB185CoA8NK+tbRKxfjy6pm5hzQRRR+cMqv1Jbiw6STivtEvt3DRcy0QEh92JlUGo2PG4tSKHl00YD6xc8CK+YPYyy3io2lN8BcSjKRzrIV6ypOAobqxViJPaT9M9Hy5szY33mp7OX/Zu89L/7Ww5vqY2Y8b0pKgoiUhG5cPDPzq8qTV/WkzUOIvXVVA96kmjcBrr3HrYC/Wn+fYP6Z7T1rqy3zknbvqma/FvVk96fNXGkuaXrdHW5JGSxZT/2I/O73v+yNWafMdzc5NdxYurHs6h86e01sLKLz9EBrg+x36rxAaED7hRnAMx7Vzu+9wabh3zG8XLQjx0ablUJzmxdErxYT3kzQSd0SSafVqF5PXgpp0OyYJ1EyNHpGUZmvK575ySzd85JSqF7IBzSAbMM04+MbE58xF3/njXOGecSaermlw2y9PsSQdytLJVr8t+wg+rR8cZYoeNxVIzNdk3Bngi8U5LAlgTFoQnzJCa5EsCgYhCaGL+qPj7TdhG31p9tej3R04N//PXxNwJvyUqwaJqRPJY98TJ5TPndmflRAkAhBfe46sfKW5wizSge08Xb7Ca/GUVs55trngkKkrUS2WPzKttaaqq+idmahugkY+W6fN0I6i3gPt/x88U4wAAeJxjYGRgYADiGU9YXsXz23xl4GZnAIFH7fO+IdMc/WBxDgYmEAUASbMKwAB4nGNgZGBgZwABjj4Ghv//OfoZGBlQgT4ARicDZAAAAHicY2BgYGAfxJijD8Fmu4EqBwCSpgKpAAAAAAAADgBoAH4AzADgAQIBQgFsAZgB7gIuAooC0AL8A2IDjAOoA+AEMASwBNoFCAVaBcAGCAYuBnAGrAb2B04HigfSCCoIcAiGCJwIyAkkCVYJiAmsCfIKIApWCsQLknicY2BkYGDQZ2hmYGcAASYg5gJCBob/YD4DABqrAdAAeJxdkE1qg0AYhl8Tk9AIoVDaVSmzahcF87PMARLIMoFAl0ZHY1BHdBJIT9AT9AQ9RQ9Qeqy+yteNMzDzfM+88w0K4BY/cNAMB6N2bUaPPBLukybCLvleeAAPj8JD+hfhMV7hC3u4wxs7OO4NzQSZcI/8Ltwnfwi75E/hAR7wJTyk/xYeY49fYQ/PztM+jbTZ7LY6OWdBJdX/pqs6NYWa+zMxa13oKrA6Uoerqi/JwtpYxZXJ1coUVmeZUWVlTjq0/tHacjmdxuL90OR8O0UEDYMNdtiSEpz5XQGqzlm30kzUdAYFFOb8R7NOZk0q2lwAyz1i7oAr1xoXvrOgtYhZx8wY5KRV269JZ5yGpmzPTjQhvY9je6vEElPOuJP3mWKnP5M3V+YAAAB4nG2ReVPbMBDF/ULi2EkDBFqO3gdHLxUzDB9IkdexBllydRD49ihO3Ckz7B/a31utZnafkkGyiXnyclxhgB0MMUKKMTLkmGCKV5hhF3vYxxwHOMRrvMERjnGCU7zFO7zHB3zEJ3zGF3zFN5zhHBe4xHf8wE/8wm8w/MEVimTYKv44XR9MSCsUjVoeHE3vjQoNsSZ4mmxZmVWPjSz7jlou6/0qKOWEJdKMtCe793/hQfqxa6XWZHMXFl56RS4TvPXSaDeoy0zUUZB109KstDK8lHo5q6Qi1hcOnqkImubPS6aqRq7mlnaEWabub4iYblba3SRmgldS0+FWdhNtt04F14JUaqkl7tcpOpJtErvNt3Bd9HRT5JWxK25Ldjvp6br4hzfFiIdSmlzTg2fSUzNrLd1LE1ynxq4OVaVoKLjzJ60UPtj1RKzHzsbjly6inVnFBS2MucviPncU7Rr7lfTxRepDs1A2j3ZHRc7PuzFYSfE3ZOd4kjwBy227hA==) format("woff");
	font-weight: normal;
	font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-play-circle {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-play-circle:before {
	content: "";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-spinner {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-spinner:before {
	content: "";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-hd {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-hd:before {
	content: "";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-downloading {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-downloading:before {
	content: "";
}

.vjs-icon-file-download {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-file-download:before {
	content: "";
}

.vjs-icon-file-download-done {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-file-download-done:before {
	content: "";
}

.vjs-icon-file-download-off {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-file-download-off:before {
	content: "";
}

.vjs-icon-share {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-share:before {
	content: "";
}

.vjs-icon-cog {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-cog:before {
	content: "";
}

.vjs-icon-square {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-square:before {
	content: "";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
	content: "";
}

.vjs-icon-circle-outline {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-circle-outline:before {
	content: "";
}

.vjs-icon-circle-inner-circle {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
	content: "";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-repeat {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-repeat:before {
	content: "";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-replay-5, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-replay-5:before, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-replay-10, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-replay-10:before, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-replay-30, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-replay-30:before, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-forward-5, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-forward-5:before, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-forward-10, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-forward-10:before, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-forward-30, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-forward-30:before, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-next-item {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-next-item:before {
	content: "";
}

.vjs-icon-previous-item {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-previous-item:before {
	content: "";
}

.vjs-icon-shuffle {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-shuffle:before {
	content: "";
}

.vjs-icon-cast {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-cast:before {
	content: "";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
	content: "";
}

.vjs-icon-facebook {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-facebook:before {
	content: "";
}

.vjs-icon-linkedin {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-linkedin:before {
	content: "";
}

.vjs-icon-twitter {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-twitter:before {
	content: "";
}

.vjs-icon-tumblr {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-tumblr:before {
	content: "";
}

.vjs-icon-pinterest {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-pinterest:before {
	content: "";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
	font-family: VideoJS;
	font-weight: normal;
	font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
	content: "";
}

.video-js {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	color: #fff;
	background-color: #000;
	position: relative;
	padding: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	word-break: initial;
}

.video-js:-moz-full-screen {
	position: absolute;
}

.video-js:-webkit-full-screen {
	width: 100% !important;
	height: 100% !important;
}

.video-js[tabindex="-1"] {
	outline: none;
}

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

.video-js ul {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	list-style-position: outside;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
	width: 100%;
	max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
	height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
	padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
	padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
	padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
	padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
	width: 100%;
	height: 100%;
}

.video-js .vjs-tech {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
	display: none;
}

body.vjs-full-window,
body.vjs-pip-window {
	padding: 0;
	margin: 0;
	height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen,
body.vjs-pip-window .video-js {
	position: fixed;
	overflow: hidden;
	z-index: 1000;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs),
body.vjs-pip-window .video-js {
	width: 100% !important;
	height: 100% !important;
	padding-top: 0 !important;
	display: block;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
	cursor: none;
}

.vjs-pip-container .vjs-pip-text {
	position: absolute;
	bottom: 10%;
	font-size: 2em;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 0.5em;
	text-align: center;
	width: 100%;
}

.vjs-layout-tiny.vjs-pip-container .vjs-pip-text,
.vjs-layout-x-small.vjs-pip-container .vjs-pip-text,
.vjs-layout-small.vjs-pip-container .vjs-pip-text {
	bottom: 0;
	font-size: 1.4em;
}

.vjs-hidden {
	display: none !important;
}

.vjs-disabled {
	opacity: 0.5;
	cursor: default;
}

.video-js .vjs-offscreen {
	height: 1px;
	left: -9999px;
	position: absolute;
	top: 0;
	width: 1px;
}

.vjs-lock-showing {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.vjs-no-js {
	padding: 20px;
	color: #fff;
	background-color: #000;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	width: 300px;
	height: 150px;
	margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
	color: #66A8CC;
}

.video-js .vjs-big-play-button {
	font-size: 3em;
	line-height: 1.5em;
	height: 1.63332em;
	width: 3em;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0;
	margin-top: -0.81666em;
	margin-left: -1.5em;
	cursor: pointer;
	opacity: 1;
	border: 0.06666em solid #fff;
	background-color: #2B333F;
	background-color: rgba(43, 51, 63, 0.7);
	border-radius: 0.3em;
	transition: all 0.4s;
}

.vjs-big-play-button .vjs-svg-icon {
	width: 1em;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1;
	transform: translate(-50%, -50%);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
	border-color: #fff;
	background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
	transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
	display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause:not(.vjs-seeking, .vjs-scrubbing, .vjs-error) .vjs-big-play-button {
	display: block;
}

.video-js button {
	background: none;
	border: none;
	color: inherit;
	display: inline-block;
	font-size: inherit;
	line-height: inherit;
	text-transform: none;
	text-decoration: none;
	transition: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.video-js.vjs-spatial-navigation-enabled .vjs-button:focus {
	outline: 0.0625em solid white;
	box-shadow: none;
}

.vjs-control .vjs-button {
	width: 100%;
	height: 100%;
}

.video-js .vjs-control.vjs-close-button {
	cursor: pointer;
	height: 3em;
	position: absolute;
	right: 0;
	top: 0.5em;
	z-index: 2;
}

.video-js .vjs-modal-dialog {
	background: rgba(0, 0, 0, 0.8);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
	overflow: auto;
}

.video-js .vjs-modal-dialog > * {
	box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
	font-size: 1.2em;
	line-height: 1.5;
	padding: 20px 24px;
	z-index: 1;
}

.vjs-menu-button {
	cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
	cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
	display: none;
}

.vjs-menu .vjs-menu-content {
	display: block;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
	box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
	display: none;
}

.vjs-menu li {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0.2em 0;
	line-height: 1.4em;
	font-size: 1.2em;
	text-align: center;
	text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
	background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
	background-color: #fff;
	color: #2B333F;
}

.vjs-menu li.vjs-selected .vjs-svg-icon,
.vjs-menu li.vjs-selected:focus .vjs-svg-icon,
.vjs-menu li.vjs-selected:hover .vjs-svg-icon,
.js-focus-visible .vjs-menu li.vjs-selected:hover .vjs-svg-icon {
	fill: #000000;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
	background: none;
}

.vjs-menu li.vjs-menu-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 1em;
	line-height: 2em;
	padding: 0;
	margin: 0 0 0.3em 0;
	font-weight: bold;
	cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
	display: none;
	position: absolute;
	bottom: 0;
	width: 10em;
	left: -3em;
	height: 0em;
	margin-bottom: 1.5em;
	border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-pip-window .vjs-menu-button-popup .vjs-menu {
	left: unset;
	right: 1em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	background-color: #2B333F;
	background-color: rgba(43, 51, 63, 0.7);
	position: absolute;
	width: 100%;
	bottom: 1.5em;
	max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
	max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
	display: block;
}

.video-js .vjs-menu-button-inline {
	transition: all 0.4s;
	overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
	width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active {
	width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
	opacity: 0;
	height: 100%;
	width: auto;
	position: absolute;
	left: 4em;
	top: 0;
	padding: 0;
	margin: 0;
	transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
	display: block;
	opacity: 1;
}

.vjs-menu-button-inline .vjs-menu-content {
	width: auto;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.video-js .vjs-control-bar {
	display: none;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3em;
	background-color: #2B333F;
	background-color: rgba(43, 51, 63, 0.7);
}

.video-js.vjs-spatial-navigation-enabled .vjs-control-bar {
	gap: 1px;
}

.video-js:not(.vjs-controls-disabled, .vjs-using-native-controls, .vjs-error) .vjs-control-bar.vjs-lock-showing {
	display: flex !important;
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
	display: flex;
	visibility: visible;
	opacity: 1;
	transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	visibility: visible;
	opacity: 0;
	pointer-events: none;
	transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
	display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.video-js .vjs-control {
	position: relative;
	text-align: center;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 4em;
	flex: none;
}

.video-js .vjs-control.vjs-visible-text {
	width: auto;
	padding-left: 1em;
	padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
	font-size: 1.8em;
	line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
	display: block;
}

.vjs-button > .vjs-svg-icon {
	display: inline-block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
	text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.video-js .vjs-custom-control-spacer {
	display: none;
}

.video-js .vjs-progress-control {
	cursor: pointer;
	flex: auto;
	display: flex;
	align-items: center;
	min-width: 4em;
	touch-action: none;
}

.video-js .vjs-progress-control.disabled {
	cursor: default;
}

.vjs-live .vjs-progress-control {
	display: none;
}

.vjs-liveui .vjs-progress-control {
	display: flex;
	align-items: center;
}

.video-js .vjs-progress-holder {
	flex: auto;
	transition: all 0.2s;
	height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
	margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder,
.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-progress-holder {
	font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
	font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
	position: absolute;
	display: block;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 0;
}

.video-js .vjs-play-progress {
	background-color: #fff;
}

.video-js .vjs-play-progress:before {
	font-size: 0.9em;
	position: absolute;
	right: -0.5em;
	line-height: 0.35em;
	z-index: 1;
}

.vjs-svg-icons-enabled .vjs-play-progress:before {
	content: none !important;
}

.vjs-play-progress .vjs-svg-icon {
	position: absolute;
	top: -0.35em;
	right: -0.4em;
	width: 0.9em;
	height: 0.9em;
	pointer-events: none;
	line-height: 0.15em;
	z-index: 1;
}

.video-js .vjs-load-progress {
	background: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.video-js .vjs-load-progress div {
	background: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.75);
}

.video-js .vjs-time-tooltip {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.3em;
	color: #000;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	padding: 6px 8px 8px 8px;
	pointer-events: none;
	position: absolute;
	top: -3.4em;
	visibility: hidden;
	z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
	display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-time-tooltip {
	display: block;
	font-size: 0.6em;
	visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
	font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
	display: none;
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #000;
	z-index: 1;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
	display: block;
}

.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-mouse-display {
	display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display,
.video-js.vjs-touch-enabled:not(.vjs-scrubbing) .vjs-progress-control .vjs-mouse-display {
	visibility: hidden;
	opacity: 0;
	transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-time-tooltip {
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
	position: relative;
	cursor: pointer;
	padding: 0;
	margin: 0 0.45em 0 0.45em;
	/* iOS Safari */
	-webkit-touch-callout: none;
	/* Safari, and Chrome 53 */
	-webkit-user-select: none;
	/* Non-prefixed version, currently supported by Chrome and Opera */
	-moz-user-select: none;
	user-select: none;
	background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.video-js .vjs-slider.disabled {
	cursor: default;
}

.video-js .vjs-slider:focus {
	text-shadow: 0em 0em 1em white;
	box-shadow: 0 0 1em #fff;
}

.video-js.vjs-spatial-navigation-enabled .vjs-slider:focus {
	outline: 0.0625em solid white;
}

.video-js .vjs-mute-control {
	cursor: pointer;
	flex: none;
}

.video-js .vjs-volume-control {
	cursor: pointer;
	margin-right: 1em;
	display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
	width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
	visibility: visible;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin-left: -1px;
}

.video-js .vjs-volume-panel {
	transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
	visibility: visible;
	opacity: 1;
	position: relative;
	transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
	width: 5em;
	height: 3em;
	margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
	left: -3.5em;
	transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
	width: 10em;
	transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
	width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
	height: 8em;
	width: 3em;
	left: -3000em;
	transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
	transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel {
	display: flex;
}

.video-js .vjs-volume-bar {
	margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
	width: 5em;
	height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
	width: 0.3em;
	height: 5em;
	margin: 1.35em auto;
}

.video-js .vjs-volume-level {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fff;
}

.video-js .vjs-volume-level:before {
	position: absolute;
	font-size: 0.9em;
	z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
	width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
	top: -0.5em;
	left: -0.3em;
	z-index: 1;
}

.vjs-svg-icons-enabled .vjs-volume-level:before {
	content: none;
}

.vjs-volume-level .vjs-svg-icon {
	position: absolute;
	width: 0.9em;
	height: 0.9em;
	pointer-events: none;
	z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
	height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
	line-height: 0.35em;
	right: -0.5em;
}

.vjs-slider-horizontal .vjs-volume-level .vjs-svg-icon {
	right: -0.3em;
	transform: translateY(-50%);
}

.vjs-slider-vertical .vjs-volume-level .vjs-svg-icon {
	top: -0.55em;
	transform: translateX(-50%);
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
	width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
	height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
	width: 100%;
}

.video-js .vjs-volume-vertical {
	width: 3em;
	height: 8em;
	bottom: 8em;
	background-color: #2B333F;
	background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
	left: -2em;
}

.video-js .vjs-volume-tooltip {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.3em;
	color: #000;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	padding: 6px 8px 8px 8px;
	pointer-events: none;
	position: absolute;
	top: -3.4em;
	visibility: hidden;
	z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
	display: block;
	font-size: 1em;
	visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
	left: 1em;
	top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
	font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
	display: none;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #000;
	z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
	width: 1px;
	height: 100%;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
	display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
	visibility: hidden;
	opacity: 0;
	transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-volume-tooltip {
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
	display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster,
.vjs-pip-container.vjs-has-started .vjs-poster {
	display: block;
}

.vjs-poster img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.video-js .vjs-live-control {
	display: flex;
	align-items: flex-start;
	flex: auto;
	font-size: 1em;
	line-height: 3em;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
	display: none;
}

.video-js .vjs-seek-to-live-control {
	align-items: center;
	cursor: pointer;
	flex: none;
	display: inline-flex;
	height: 100%;
	padding-left: 0.5em;
	padding-right: 0.5em;
	font-size: 1em;
	line-height: 3em;
	width: auto;
	min-width: 4em;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
	display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
	cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
	margin-right: 0.5em;
	color: #888;
}

.vjs-svg-icons-enabled .vjs-seek-to-live-control {
	line-height: 0;
}

.vjs-seek-to-live-control .vjs-svg-icon {
	width: 1em;
	height: 1em;
	pointer-events: none;
	fill: #888888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
	color: red;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-svg-icon {
	fill: red;
}

.video-js .vjs-time-control {
	flex: none;
	font-size: 1em;
	line-height: 3em;
	min-width: 2em;
	width: auto;
	padding-left: 1em;
	padding-right: 1em;
}

.vjs-live .vjs-time-control,
.vjs-live .vjs-time-divider,
.video-js .vjs-current-time,
.video-js .vjs-duration {
	display: none;
}

.vjs-time-divider {
	display: none;
	line-height: 3em;
}

.vjs-normalise-time-controls:not(.vjs-live) .vjs-time-control {
	display: flex;
}

.video-js .vjs-play-control {
	cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
	flex: none;
}

.vjs-text-track-display {
	position: absolute;
	bottom: 3em;
	left: 0;
	right: 0;
	top: 0;
	pointer-events: none;
}

.vjs-error .vjs-text-track-display {
	display: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
	bottom: 1em;
}

.video-js .vjs-text-track {
	font-size: 1.4em;
	text-align: center;
	margin-bottom: 0.1em;
}

.vjs-subtitles {
	color: #fff;
}

.vjs-captions {
	color: #fc6;
}

.vjs-tt-cue {
	display: block;
}

video::-webkit-media-text-track-display {
	transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
	transform: translateY(-1.5em);
}

.video-js.vjs-force-center-align-cues .vjs-text-track-cue {
	text-align: center !important;
	width: 80% !important;
}

@supports not (inset: 10px) {
	.video-js .vjs-text-track-display > div {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
}
.video-js .vjs-picture-in-picture-control {
	cursor: pointer;
	flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control,
.vjs-pip-window .vjs-picture-in-picture-control {
	display: none;
}

.video-js .vjs-fullscreen-control {
	cursor: pointer;
	flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control,
.vjs-pip-window .vjs-fullscreen-control {
	display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
	pointer-events: none;
	font-size: 1.5em;
	line-height: 2;
	text-align: center;
}

.vjs-playback-rate .vjs-menu {
	width: 4em;
	left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
	font-size: 1.4em;
	text-align: center;
}

.vjs-loading-spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.85;
	text-align: left;
	border: 0.6em solid rgba(43, 51, 63, 0.7);
	box-sizing: border-box;
	background-clip: padding-box;
	width: 5em;
	height: 5em;
	border-radius: 50%;
	visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-error .vjs-loading-spinner {
	display: none;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
	content: "";
	position: absolute;
	box-sizing: inherit;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	opacity: 1;
	border: inherit;
	border-color: transparent;
	border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
	animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
	border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
	border-top-color: rgb(255, 255, 255);
	animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
	to {
		visibility: visible;
	}
}
@keyframes vjs-spinner-spin {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes vjs-spinner-fade {
	0% {
		border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	}
	20% {
		border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	}
	35% {
		border-top-color: white;
	}
	60% {
		border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	}
	100% {
		border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
	}
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
	display: none;
}

.vjs-chapters-button .vjs-menu ul {
	width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
	display: none;
}

.vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-svg-icon {
	width: 1.5em;
	height: 1.5em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
	vertical-align: middle;
	display: inline-block;
	margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
	font-family: VideoJS;
	content: "";
	font-size: 1.5em;
	line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
	display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-descriptions-menu-item .vjs-menu-item-text .vjs-icon-placeholder,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
	vertical-align: middle;
	display: inline-block;
	margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-descriptions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
	font-family: VideoJS;
	content: " ";
	font-size: 1.5em;
	line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
	display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
	width: auto;
	width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
	display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
	flex: auto;
	display: block;
}

.vjs-modal-dialog.vjs-text-track-settings {
	background-color: #2B333F;
	background-color: rgba(43, 51, 63, 0.75);
	color: #fff;
	height: 70%;
}

.vjs-spatial-navigation-enabled .vjs-modal-dialog.vjs-text-track-settings {
	height: 80%;
}

.vjs-error .vjs-text-track-settings {
	display: none;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
	display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
	display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
	text-align: right;
	vertical-align: bottom;
}

@supports (display: grid) {
	.vjs-text-track-settings .vjs-modal-dialog-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		padding: 20px 24px 0px 24px;
	}

	.vjs-track-settings-controls .vjs-default-button {
		margin-bottom: 20px;
	}

	.vjs-text-track-settings .vjs-track-settings-controls {
		grid-column: 1/-1;
	}

	.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
		grid-template-columns: 1fr;
	}
}
.vjs-text-track-settings select {
	font-size: inherit;
}

.vjs-track-setting > select {
	margin-right: 1em;
	margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
	margin: 10px;
	border: none;
}

.vjs-text-track-settings fieldset span {
	display: inline-block;
	padding: 0 0.6em 0.8em;
}

.vjs-text-track-settings fieldset span > select {
	max-width: 7.3em;
}

.vjs-text-track-settings legend {
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
}

.vjs-text-track-settings .vjs-label {
	margin: 0 0.5em 0.5em 0;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
	outline-style: solid;
	outline-width: medium;
	background-image: linear-gradient(0deg, #fff 88%, rgb(114.9141509434, 132.7028301887, 159.3858490566) 100%);
}

.vjs-track-settings-controls button:hover {
	color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
	background-color: #fff;
	background-image: linear-gradient(-180deg, #fff 88%, rgb(114.9141509434, 132.7028301887, 159.3858490566) 100%);
	color: #2B333F;
	cursor: pointer;
	border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
	margin-right: 1em;
}

.vjs-title-bar {
	background: rgba(0, 0, 0, 0.9);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
	font-size: 1.2em;
	line-height: 1.5;
	transition: opacity 0.1s;
	padding: 0.666em 1.333em 4em;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.vjs-error .vjs-title-bar {
	display: none;
}

.vjs-title-bar-title,
.vjs-title-bar-description {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vjs-title-bar-title {
	font-weight: bold;
	margin-bottom: 0.333em;
}

.vjs-playing.vjs-user-inactive .vjs-title-bar {
	opacity: 0;
	transition: opacity 1s;
}

.video-js .vjs-skip-forward-5 {
	cursor: pointer;
}

.video-js .vjs-skip-forward-10 {
	cursor: pointer;
}

.video-js .vjs-skip-forward-30 {
	cursor: pointer;
}

.video-js .vjs-skip-backward-5 {
	cursor: pointer;
}

.video-js .vjs-skip-backward-10 {
	cursor: pointer;
}

.video-js .vjs-skip-backward-30 {
	cursor: pointer;
}

.video-js .vjs-transient-button {
	position: absolute;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(50, 50, 50, 0.5);
	cursor: pointer;
	opacity: 1;
	transition: opacity 1s;
}

.video-js:not(.vjs-has-started) .vjs-transient-button {
	display: none;
}

.video-js.not-hover .vjs-transient-button:not(.force-display),
.video-js.vjs-user-inactive .vjs-transient-button:not(.force-display) {
	opacity: 0;
}

.video-js .vjs-transient-button span {
	padding: 0 0.5em;
}

.video-js .vjs-transient-button.vjs-left {
	left: 1em;
}

.video-js .vjs-transient-button.vjs-right {
	right: 1em;
}

.video-js .vjs-transient-button.vjs-top {
	top: 1em;
}

.video-js .vjs-transient-button.vjs-near-top {
	top: 4em;
}

.video-js .vjs-transient-button.vjs-bottom {
	bottom: 4em;
}

.video-js .vjs-transient-button:hover {
	background-color: rgba(50, 50, 50, 0.9);
}

@media print {
	.video-js > *:not(.vjs-tech):not(.vjs-poster) {
		visibility: hidden;
	}
}
.vjs-resize-manager {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
	outline: none;
}

.video-js *:focus:not(:focus-visible) {
	outline: none;
}

/**
 * Set up a decent box model on the root element
 */
html,
body {
	box-sizing: border-box;
	margin: 0 auto;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
	box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
	color: #012857;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #3E3E3E;
	text-decoration: none;
}

ul,
li {
	list-style: none;
	padding-left: 0;
}

button {
	cursor: pointer;
}

.fullWidth {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.fullWidth .container {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.mainContent {
	padding-top: 112px;
}

.logoWhite + .mainContent {
	padding-top: 0;
}

.textBlock__desc.content__collapse {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease;
	margin-top: 0 !important;
}
.withDiscoverMore .textBlock__desc.content__collapse {
	padding: 0;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
	cursor: pointer;
	padding: 14px 8px;
	display: inline-block;
	min-width: 140px;
	border: none;
	text-align: left;
	font-size: 15px;
	text-align: center;
	background-color: transparent;
	font-weight: 100;
	border: 1px solid #3e3e3e;
	margin-top: 30px;
	color: #838889;
}
.collapsible .collapsible__less {
	display: none;
}
.collapsible .collapsible__more {
	display: block;
}

.collapsible__btn {
	color: #3e3e3e;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #3e3e3e;
	border: 0;
}
.withDiscoverMore .collapsible__btn {
	padding: 0 !important;
	min-width: auto;
}
.Mod.withDiscoverMore__light .collapsible__btn, .withDiscoverMore__light .collapsible__btn {
	color: #eee;
}
.collapsible__btn.active {
	display: none;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active .collapsible__less {
	display: block;
}
.active .collapsible__more {
	display: none;
}

.splide__pagination__page {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: transparent;
	border-radius: 50%;
	margin: 3px;
	padding: 0;
	transition: transform 0.2s linear;
	border: 1px solid #505050;
	opacity: 1;
}

.splide__pagination__page.is-active {
	transform: none;
	background: #505050;
	border: 1px solid #505050;
}

.splide__pagination {
	bottom: -5px;
	/*bottom: -30px;*/
}

.splide__pagination li:only-child {
	visibility: hidden;
}

.splide__arrow {
	background-color: transparent;
}
.splide__arrow:disabled {
	display: none;
}
@media (max-width: 768px) {
	.splide__arrow {
		display: none;
	}
}

.arrowCustom--prev {
	opacity: 1;
	background: url("../images/gallery/arrow_left.svg") no-repeat center center;
	background-size: 30px 30px;
}
.arrowCustom--prev:hover {
	background: url("../images/gallery/arrow_left_hover.svg") no-repeat center center;
	background-size: contain;
}
.arrowCustom--prev svg {
	display: none;
}

.arrowCustom--next {
	opacity: 1;
	background: url("../images/gallery/arrow_right.svg") no-repeat center center;
	background-size: contain;
}
.arrowCustom--next:hover {
	background: url("../images/gallery/arrow_right_hover.svg") no-repeat center center;
	background-size: contain;
}
.arrowCustom--next svg {
	display: none;
}

/****** slider */
#back-to-top {
	z-index: 2;
}

.backToTop__arrow {
	display: block;
	width: 38px;
	text-align: center;
	height: 38px;
	background: transparent;
	border: 0;
	color: #fff;
}
.backToTop__arrow:before {
	line-height: 38px;
}

.library3dPage .Mod__imgBlock,
.samplesPage .Mod__imgBlock,
.supportPage .Mod__imgBlock {
	width: 100%;
}

.pageNotFound {
	min-height: 400px;
}

.App .library__wrapper {
	max-width: 1480px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}
.App .library__wrapper {
	padding-bottom: 60px;
}
.App .navigation__options > div {
	padding: 0;
}
.App .navigation__options > div:nth-child(2) {
	padding: 0 22px;
}

@media (min-width: 769px) {
	.logoWhite + .mainContent .mainContainer:first-child > .Mod:first-child:not(.modImgText) .Mod__imgBlock,
.logoWhite + .mainContent .mainContainer:first-child > .Mod.Mod__imgBlock {
		overflow: hidden;
	}
	.logoWhite + .mainContent .mainContainer:first-child > .Mod:first-child:not(.modImgText) .Mod__imgBlock:after,
.logoWhite + .mainContent .mainContainer:first-child > .Mod.Mod__imgBlock:after {
		background: transparent url("https://media21aws.flou.it/header/shadow.png") no-repeat top center;
		position: absolute;
		background-size: cover;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1;
		height: 500px;
		pointer-events: none;
		content: "";
	}
}
@media (max-width: 768px) {
	.logoWhite + .mainContent .mainContainer:first-child > .Mod:first-child:not(.modImgText) .Mod__imgBlock,
.logoWhite + .mainContent .mainContainer:first-child > .Mod.Mod__imgBlock {
		overflow: hidden;
	}
	.logoWhite + .mainContent .mainContainer:first-child > .Mod:first-child:not(.modImgText) .Mod__imgBlock:after,
.logoWhite + .mainContent .mainContainer:first-child > .Mod.Mod__imgBlock:after {
		background: transparent url("https://mediamobile21aws.flou.it/header/shadow.png") no-repeat top center;
		position: absolute;
		background-size: cover;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1;
		height: 500px;
		pointer-events: none;
		content: "";
	}
}

.version:after {
	content: "050821";
}

@media (max-width: 768px) {
	.splideFullscreen {
		margin-bottom: 20px;
	}
}

.availableColor {
	margin-top: 60px;
	/*width: 200px;*/
}
.availableColor .availableColor__title {
	padding-bottom: 10px;
}
.availableColor .availableColor__list > li {
	display: inline-block;
	padding-right: 10px;
	margin-top: 10px;
}
.availableColor .availableColor__list > li img {
	width: 100px;
	height: auto;
	display: block;
}
.availableColor .availableColor__list > li span {
	text-transform: uppercase;
	font-size: 0.6em;
	display: inline-block;
	line-height: 10px;
}
@media (max-width: 768px) {
	.availableColor .availableColor__list > li {
		width: 24%;
	}
	.availableColor .availableColor__list > li span {
		padding-top: 4px;
		font-size: 0.7em;
		line-height: 1em;
	}
}

.duvetsetsPage .App.AppSample .navigation__header,
.rivestimentiPage .App.AppSample .navigation__header {
	display: none;
}

.imgObjectAlign--right, .imgObjectAlign--right .Mod__imgBlock img {
	object-position: right;
}

.imgObjectAlign--left, .imgObjectAlign--left .Mod__imgBlock img {
	object-position: left;
}

/*lazy loading */
/* Placeholder style */
.lazyload, .placeholderImg {
	background-color: #fafafa;
	/* Colore del placeholder */
	display: block;
}

.skip-navigation {
	position: relative;
	z-index: 1000;
}

.skip-link {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	padding: 2px 4px;
	border-radius: 4px;
	white-space: nowrap;
	font-size: 12px;
	background: #fff;
	color: #012857;
}

.skip-link:focus {
	top: 6px;
}

input[type=text], input[type=password], input[type=tel], input[type=email], select {
	height: 40px;
	background-color: #fff;
	width: 100%;
	border: 1px solid #ccc;
	padding: 8px;
}

input[type=checkbox] + span, input[type=radio] + span {
	margin-left: 8px;
}

label {
	padding-bottom: 4px;
}

fieldset {
	border: 0;
	padding: 0;
}

@font-face {
	font-family: "icomoon";
	src: url("../fonts/icomoon.eot?tb34wh");
	src: url("../fonts/icomoon.eot?tb34wh#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?tb34wh") format("truetype"), url("../fonts/icomoon.woff?tb34wh") format("woff"), url("../fonts/icomoon.svg?tb34wh#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-ask:before {
	content: "9";
}

.icon-square-left:before {
	content: "a";
}

.icon-square-right:before {
	content: "b";
}

.icon-square-empty-left:before {
	content: "c";
}

.icon-square-empty-right:before {
	content: "d";
}

.icon-arrow-full-up:before {
	content: "e";
}

.icon-facebook:before {
	content: "f";
}

.icon-google:before {
	content: "g";
}

.icon-arrow-full-down:before {
	content: "h";
}

.icon-instagram:before {
	content: "i";
}

.icon-close:before {
	content: "j";
}

.icon-sqaures:before {
	content: "k";
}

.icon-arrow-full-left:before {
	content: "l";
}

.icon-arrow-down:before {
	content: "m";
}

.icon-arrow-filter-left:before {
	content: "n";
}

.icon-arrow-right-rounded:before {
	content: "o";
}

.icon-arrow-filter-right:before {
	content: "p";
}

.icon-pinterest:before {
	content: "q";
}

.icon-arrow-full-right:before {
	content: "r";
}

.icon-arrow-left-rounded:before {
	content: "s";
}

.icon-arrow-up:before {
	content: "t";
}

.icon-youtube:before {
	content: "y";
}

.icon-plus:before {
	content: "";
}

.icon-arrow-left-square:before {
	content: "";
}

.icon-phone:before {
	content: "";
}

.icon-arrow-right:before {
	content: "";
}

.icon-email:before {
	content: "";
}

.icon-whatsapp:before {
	content: "";
}

.icon-copy:before {
	content: "";
}

.icon-download:before {
	content: "";
}

.icon-schedatecnica:before {
	content: "";
}

.icon-disegni:before {
	content: "";
}

.icon-rivestimenti:before {
	content: "";
}

.icon-biancherie:before {
	content: "";
}

.icon-catalogo:before {
	content: "";
}

.icon-gallery:before {
	content: "";
}

.icon-arrow-left:before {
	content: "";
}

/**
 * Basic typography style for copy text
 */
html {
	font: normal 62.5%/1.4 "Roboto", "Arial", sans-serif;
}

body {
	color: #3E3E3E;
	font-size: 1.5rem;
	/* 16px */
}

/*h1 {
  font-size: 5rem; 
  font-weight: 400;
}*/
h1, h2, .h1, .h2 {
	font-size: 3.5rem;
	/* 16px */
	font-weight: 300;
	padding-bottom: 15px;
}

h3, .h3 {
	font-size: 2.2rem;
	/* 16px */
	font-weight: 300;
	padding-bottom: 15px;
}

h4, .h4 {
	font-size: 1.3rem;
	/* 16px */
	font-weight: 400;
	padding-bottom: 15px;
}

h5, .h5 {
	font-size: 2.5rem;
	/* 16px */
	font-weight: 400;
}

p {
	font-size: 1.2rem;
	/* 16px */
}

@media (max-width: 768px) {
	h1, .h1 {
		font-size: 3.5rem;
	}

	h2, .h2 {
		font-size: 2.5rem;
	}

	h3, .h3 {
		font-size: 1.5rem;
	}

	h5, .h5 {
		font-size: 1.8rem;
	}

	p {
		font-size: 1rem;
	}
}
a {
	color: #3e3e3e;
	text-decoration: none;
}

a:hover {
	color: #012858;
}

strong,
b {
	font-weight: 600 !important;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
	margin: 0;
}
h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
p + p,
ul + p {
	margin-top: 1em;
}

/**
 * Clear inner floats
 */
.clearfix::after {
	clear: both;
	content: "";
	display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
	max-width: 1480px;
	/* 1 */
	margin-left: auto;
	/* 2 */
	margin-right: auto;
	/* 2 */
	padding-left: 20px;
	/* 3 */
	padding-right: 20px;
	/* 3 */
	width: 100%;
	/* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
	overflow: hidden;
	padding: 0;
	/* 1 */
	text-indent: 101%;
	white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
}

.img-container {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 ratio */
	height: 0;
	overflow: hidden;
}

.img-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* margin padding */
.mt-0 {
	margin-top: 0 !important;
}

@media (min-width: 769px) {
	.p-sm-4 {
		padding: 4em 0 !important;
	}
}

/* buttons */
.btn {
	border: 1px solid #3E3E3E;
	padding: 11px 20px;
	background-color: transparent;
	color: #3E3E3E;
	font-size: 1.4rem;
	display: inline-block;
	font-style: normal;
	text-decoration: none;
	transition: 0.3s;
}
.btn:hover {
	border: 1px solid #012857;
	color: #fff;
	background-color: #012857;
}
.btn.btn-block {
	width: 100%;
	display: block;
	text-align: center;
}
.btn.primary {
	border: none;
	background-color: #3E3E3E;
	color: #fff;
}
.btn.primary:hover {
	background-color: #012857;
}
.btn.secondary {
	border: 1px solid #3E3E3E;
	background-color: transparent;
	color: #3E3E3E;
}
.btn.secondary:hover {
	border: 1px solid #012857;
	color: #fff;
	background-color: #012857;
}
.btn.ternary {
	padding: 0;
	font-size: 1.6rem;
	border: none;
	background-color: transparent;
	color: #3E3E3E;
}
.btn.ternary:hover {
	color: #012857;
	background-color: #01285700;
}
.btn.ternary::after {
	content: "";
	display: inline-block;
	font-family: "icomoon";
	font-size: 1.4rem;
	margin-left: 1em;
}
.btn.light.primary {
	border: none;
	background-color: #fff;
	color: #3E3E3E;
}
.btn.light.primary:hover {
	background-color: #012857;
	color: #fff;
}
.btn.light.secondary {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
}
.btn.light.secondary:hover {
	border: 1px solid #fff;
	color: #012857;
	background-color: #fff;
}
.btn.light.ternary {
	border: none;
	background-color: transparent;
	color: #fff;
}
.btn.light.ternary:hover {
	color: #012857;
}
.btn.submit-btn {
	cursor: pointer;
}

.btn.secondary:disabled {
	border: 1px solid #b0b0b0;
	background-color: #f0f0f0;
	color: #b0b0b0;
	cursor: not-allowed;
	opacity: 0.6;
}

body .CybotCookiebotDialogBodyLevelButtonSliderWrapper {
	transform: scale(0.8);
}
body #CybotCookiebotDialogHeader {
	display: none;
}
body #CybotCookiebotDialog {
	border-radius: 0;
}
body #CybotCookiebotDialog * {
	font-weight: 400;
	font-size: 13px;
	font: normal 13px "Roboto", "Arial", sans-serif;
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
	background-color: #fff;
	border-color: #fff;
	color: #3e3e3e;
}
body #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
	background-color: transparent;
	border: 1px solid #fff;
	padding: 11px 20px;
	border-radius: 0;
	font-size: 1.4rem;
	font-weight: 400;
}
@media screen and (min-width: 1280px) {
	body #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:first-of-type) {
		margin-bottom: 20px;
	}
}
@media screen and (min-width: 1280px) {
	body #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton,
body #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyContentControlsWrapper:not(.CybotCookiebotDialogHide) + #CybotCookiebotDialogBodyButtonsWrapper .CybotCookiebotDialogBodyButton {
		max-width: none;
		width: 200px;
	}
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize, body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
	background-color: transparent;
	border-color: #fff;
	color: rgba(255, 255, 255, 0.87);
}
body #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a {
	align-items: center;
	color: #fFF;
	display: flex;
	font-weight: 600;
	text-decoration: none;
}
body #CybotCookiebotDialogTabContent input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
	background-color: #5c94d0;
}
body #CybotCookiebotDialogBodyLevelButtonsSelectPane label:not([for=CybotCookiebotDialogBodyLevelButtonNecessary]) .CybotCookiebotDialogBodyLevelButtonDescription:hover {
	color: #5c94d0;
}
body #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
	border-bottom: 1px solid #5c94d0;
	color: #5c94d0;
}
body #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
	color: #5c94d0;
}
body .uc-deny-all-button {
	border-color: 1px solid #fff;
}
body #uc-show-more span {
	color: #fFF !important;
}

.mainHeader {
	position: fixed;
	width: 100%;
	z-index: 10;
}
.mainHeader .container {
	z-index: 2;
	position: relative;
}
.mainHeader .mainNav__optionsBar {
	position: sticky;
	top: calc(100%);
	margin-bottom: 20px;
	width: 100%;
}
@media (max-width: 768px) {
	.mainHeader .mainNav__optionsBar {
		border-top: 1px solid #cccccc;
		padding: 12px;
		bottom: 0;
		top: auto;
		position: fixed;
		background: transparent linear-gradient(341deg, #f2f2f2 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
		z-index: 2;
		margin-bottom: 0px;
	}
}
.mainHeader .mainNav__optionsBar .mainNav__optionsBarWrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.mainHeader .mainNav__optionsBar .mainNav__optionsBarWrapper .mainNav__social {
	font-size: 12px;
}
@media (max-width: 768px) {
	.mainHeader .mainNav__optionsBar .mainNav__optionsBarWrapper .mainNav__social {
		display: none;
	}
}
.mainHeader .mainHeader__color {
	z-index: 1;
	position: absolute;
	top: 0;
	bottom: 28px;
	left: 0;
	right: 0;
	opacity: 1;
	transition: all 0.15s ease;
	background: #fff;
	transform: translateY(0%);
}
.mainHeader .close-icon {
	visibility: hidden;
}
.mainHeader.open .burger-icon {
	visibility: hidden;
}
.mainHeader.open .close-icon {
	visibility: visible;
}
.mainHeader.open .close-icon span:nth-child(1) {
	transform: rotate(45deg);
}
.mainHeader.open .close-icon span:nth-child(2) {
	transform: rotate(-45deg);
}
@media (min-width: 769px) {
	.mainHeader.open .mainHeader__flyout {
		transition: transform 0.25s ease, opacity 0ms, visibility 0ms, max-height 0.25s ease;
		transform: scaleY(1);
		opacity: 1;
		visibility: visible;
		max-height: calc(100vh - 77px);
		max-height: calc(100dvh - 77px);
		height: 100vh;
		height: 100dvh;
		overflow-y: auto;
	}
	.mainHeader.open .mainHeader__flyout .mainNav {
		opacity: 1;
		transform: translateY(0);
		transition: transform 0.3s ease, opacity 0.2s linear;
		transition-delay: 0.2s;
	}
}

.mainHeader__wrapper {
	padding: 0;
}

.mainHeader__bar {
	padding: 16px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.mainHeader__flyout {
	transition: transform 0.1s ease, opacity 0ms linear 0.1s, visibility 0ms linear 0.1s, max-height 0.25s ease;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	overflow-y: scroll;
	max-height: 0;
	left: 0;
	right: 0;
	transform-origin: top center;
	transform: scaleY(0);
	will-change: transform;
	position: relative;
	z-index: 2;
}

.mainLogo__wrapper {
	align-items: center;
	display: flex;
}

.mainLogo {
	width: 101.25px;
	height: 45px;
	display: inline-block;
}

.mainLogo--large {
	width: 202.5px;
	height: 90px;
}

.mainLogo__name {
	display: flex;
	vertical-align: middle;
	padding-left: 24px;
	color: #012857;
	border-left: 1px solid #012857;
	line-height: 40px;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	margin-left: 24px;
	text-align: left;
}
@media (max-width: 768px) {
	.mainLogo__name {
		font-size: 18px;
		vertical-align: middle;
		line-height: 20px;
		height: 40px;
		margin-left: 20px;
		padding-left: 20px;
	}
}

.cookiePolicy {
	display: none;
}

.mainHeader__button {
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	background: none;
	border: 0;
	padding: 8px 0;
	cursor: pointer;
	position: relative;
}
.mainHeader__button span {
	display: block;
	height: 3px;
	width: 35px;
	background: #3e3e3e;
}

.burger-icon span {
	transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
	will-change: transform;
}
.burger-icon span + span {
	margin-top: 7px;
}

.close-icon span {
	will-change: transform;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -1px 0 0 -13px;
	width: 25px;
}

body {
	min-height: 100vh;
	min-height: -webkit-fill-available;
}

html {
	height: -webkit-fill-available;
	box-sizing: border-box;
}

.menu-overflow {
	overflow: hidden;
	position: relative;
}
.menu-overflow header {
	height: 100%;
}

.mainLogo {
	background: url("../images/Logo_Flou.png") no-repeat center center;
	background-size: cover;
}

.breadcrumbs {
	overflow: hidden;
	padding-bottom: 10px;
	line-height: 20px;
	position: relative;
	z-index: 10;
	text-align: right;
	font-size: 1.2rem;
}
.breadcrumbs .breadcrumb__sep {
	display: inline-block;
	padding: 0 10px;
	font-size: 9px;
}
.breadcrumbs .breadcrumbs__back .breadcrumb__sep {
	padding-left: 0;
}
.breadcrumbs .breadcrumbs__list {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}
.breadcrumbs .breadcrumbs__item:not(:last-child)::after {
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	content: "";
	font-size: 9px;
	margin-right: 10px;
	margin-left: 8px;
	/* Usa la tua icona arrow-right qui */
}
.breadcrumbs .breadcrumbs__inner {
	height: 20px;
	background-color: #eaeaea;
	box-shadow: 0px 2px 10px #00000029;
	transition: all 0.05s ease;
	transition-delay: 1s;
}
.breadcrumbs .breadcrumbs__inner > .container {
	display: flex;
	justify-content: space-between;
}
.breadcrumbs h3 {
	padding: 4px 22px;
	font-size: 1.2rem;
}

.mainNavLangList li {
	display: inline-block;
	font-weight: 100;
}
.mainNavLangList li.isActive a {
	color: #012857;
	font-weight: 600;
}

.mainNavUnitList {
	margin-top: 0.6em;
	margin-bottom: 0;
}
.mainNavUnitList li {
	display: inline-block;
}

.mainNavUnitList__btn {
	cursor: pointer;
	border: 0;
	background: none;
	padding: 0;
	font-weight: 100;
}
.cm .mainNavUnitList__btn[data-unity=cm], .in .mainNavUnitList__btn[data-unity=in] {
	color: #012857;
	font-weight: 400;
}
.mainNavUnitList__btn li {
	display: inline-block;
}

.mainHeader.logoWhite.open .breadcrumbs__inner {
	background-color: transparent;
	box-shadow: none;
}

.mainHeader.logoWhite:not(.open).headroom--top .mainLogo {
	background: url("../images/logo_flou_white@2x.png") no-repeat center center;
	background-size: cover;
}
.mainHeader.logoWhite:not(.open).headroom--top .mainLogo__name {
	color: #fff;
	border-left: 1px solid #fff;
}
.mainHeader.logoWhite:not(.open).headroom--top .mainHeader__color {
	transform: translateY(-100%);
}
.mainHeader.logoWhite:not(.open).headroom--top .mainHeader__button span {
	background-color: #ffffff;
}
.grey .mainHeader.logoWhite:not(.open).headroom--top .mainHeader__button span {
	background-color: #343434;
}
.mainHeader.logoWhite:not(.open).headroom--top .breadcrumbs,
.mainHeader.logoWhite:not(.open).headroom--top .breadcrumbs__inner {
	background: none;
	box-shadow: none;
	color: #fff;
	transition-delay: 0s;
}
.mainHeader.logoWhite:not(.open).headroom--top .breadcrumbs a,
.mainHeader.logoWhite:not(.open).headroom--top .breadcrumbs__inner a {
	color: #fff;
}
.mainHeader.logoWhite:not(.open).headroom--top .header__btnSearch {
	border-color: #fff;
}
.mainHeader.logoWhite:not(.open).headroom--top .header__btnSearch svg path {
	fill: white;
}

.mainHeader.logoWhite.grey:not(.open).headroom--top .mainHeader__buttonsWrapper .header__btnSearch {
	border-color: #3e3e3e;
}
.mainHeader.logoWhite.grey:not(.open).headroom--top .mainHeader__buttonsWrapper .mainHeader__button span {
	background-color: #3e3e3e;
}
.mainHeader.logoWhite.grey:not(.open).headroom--top .mainHeader__buttonsWrapper .mainHeader__button svg path {
	fill: #3e3e3e;
}
.mainHeader.logoWhite.grey:not(.open).headroom--top .breadcrumbs__inner {
	color: #3e3e3e;
}
.mainHeader.logoWhite.grey:not(.open).headroom--top .breadcrumbs__inner a {
	color: #3e3e3e;
}
.mainHeader.logoWhite.grey:not(.open).headroom--top .header__btnSearch {
	border-color: #fff;
}

@media (max-width: 768px) {
	.mainNav__options {
		width: 100%;
		text-align: center;
	}
}

.mainHeader__buttonMobile {
	position: absolute;
	right: 20px;
	top: 12px;
	z-index: 20;
	display: none;
}

@media (max-width: 768px) {
	.mainHeader__bar {
		padding: 12px 0;
	}

	.mainLogo {
		width: 72px;
		height: 32px;
	}

	.mainHeader__button span {
		width: 30px;
	}

	.burger-icon span + span {
		margin-top: 5px;
	}

	.mainHeader .mainHeader__barMobile {
		padding: 12px 0;
	}
}
.unsubscribe--logoWrapper {
	margin: 0 auto;
	text-align: center;
	margin-bottom: 48px;
}

.unsubscribeWrapperHelpUs {
	display: none;
	/* Nascondi la sezione per default */
}

.unsubscribeWrapperHelpUs.show {
	display: block;
	/* Mostra la sezione quando la classe "show" è presente */
}

.headroom {
	transition: transform 0.25s ease-in-out;
	will-change: transform;
}

.headroom--pinned {
	transform: translateY(0);
}

.headroom--unpinned {
	transform: translateY(-120%);
}

@media (prefers-reduced-motion) {
	.hidingHeader-in {
		transition-duration: 1ms;
		transition-timing-function: step-end;
	}
}
/* main nav */
.mainNav {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 44px 8px;
	opacity: 0;
	transform: translateY(-10px);
	transition: transform 0.1s, opacity 0.1s;
	transition-delay: 0s;
	will-change: transform;
	flex-wrap: wrap;
}
.mainNav .mainNav__li {
	margin-bottom: 0px;
	color: #3E3E3E;
}
.mainNav .mainNav__ul .mainNav__li {
	margin-bottom: 0;
}
.mainNav .mainNav__li--selected a {
	font-weight: 500;
	color: #012857;
}
.mainNav .mainNav__column {
	width: 21%;
	display: inline-block;
	flex-grow: 1;
}
.mainNav .mainNav__column:first-child {
	width: 10%;
}
.mainNav .mainNav__column--home {
	width: 16%;
}

.mainNav__linkSection {
	color: #3E3E3E;
	font-size: 1.4em;
	white-space: normal;
	line-height: 1.2em;
	font-weight: 600;
}

@media (max-width: 768px) {
	.mainNav__li--lightMobile > a, .mainNav__li--lightMobile > h2 {
		font-weight: 300;
	}
	.mainNav__li--lightMobile > a > h2, .mainNav__li--lightMobile > h2 > h2 {
		font-weight: 300;
	}
}
.mainNav__linkSection--selected {
	color: #012857;
}

@media (min-width: 769px) {
	.mainNav__linkSection--disable {
		cursor: default;
	}
	.mainNav__linkSection--disable:hover {
		color: #3E3E3E;
	}
}

.mainNav__subList {
	margin-bottom: 10px;
}
.mainNav__subList li {
	padding: 0;
	line-height: 1.5em;
}
.mainNav__subList li a {
	color: #535353;
	font-size: 1em;
}
.mainNav__subList li a:hover {
	color: #012857;
}

.mainNav__break {
	flex-basis: 100%;
	width: 0;
}

.mainNav__list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 20px;
	/* gap solo tra colonne */
	row-gap: 0;
	align-items: start;
}
.mainNav__list h2 {
	padding-bottom: 0;
}
@media (max-width: 768px) {
	.mainNav__list {
		display: flex;
		flex-direction: column;
		/*grid-template-columns: 1fr;
		gap: 10px;
		grid-template-rows: min-content;*/
	}
	.mainNav__list .mainNav__linkSection--withSubList {
		cursor: pointer;
	}
	.mainNav__list .mainNav__li {
		margin-bottom: 1em;
	}
	.mainNav__list .mainNav__li .mainNav__li {
		margin-bottom: 1em;
	}
}

@media (min-width: 769px) {
	.mainNav__li--home {
		grid-column: 1;
	}

	.mainNav__li--onlyDesktop,
.mainNav__li:nth-child(3),
.mainNav__li:nth-child(4) {
		grid-column: 2;
	}

	.mainNav__li:nth-child(5) {
		grid-column: 3;
		grid-row: 1/10;
	}

	.mainNav__li:nth-child(6),
.mainNav__li:nth-child(7) {
		grid-column: 4;
	}

	.mainNav__li:nth-child(6) {
		grid-row: 1/6;
	}

	.mainNav__li:nth-child(7) {
		grid-row: 7/12;
	}

	.mainNav__li:nth-child(8) {
		grid-column: 5;
		grid-row: 1/4;
	}

	.mainNav__li:nth-child(9) {
		grid-column: 5;
		grid-row: 4/8;
	}

	.mainNav__li:nth-child(n+8) {
		grid-column: 5;
	}
}
.mainNav__li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.mainFooter {
	background-color: #eaeaea;
	padding: 4em 0 4em;
	font-size: 1.5rem;
}

.mainFooter p {
	font-size: 1.5rem;
}

.mainFooter__references {
	display: flex;
	padding-bottom: 3em;
}
@media (max-width: 768px) {
	.mainFooter__references {
		flex-direction: column;
		text-align: center;
	}
}

.mainFooter__block {
	flex: 1 1 20%;
}
.mainFooter__block:nth-child(1) {
	flex: 1 1 15%;
}
.mainFooter__block:nth-child(4) {
	flex: 1 1 30%;
}
.mainFooter__block p {
	font-size: 12px;
}

.mainFooter__privacy {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #535353;
	padding-top: 1.5em;
}
@media (max-width: 768px) {
	.mainFooter__privacy {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.mainFooter__privacyBlock {
		margin: 8px 0;
	}
	.mainFooter__privacyBlock .mainFooter__privacyList {
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.mainFooter__privacyBlock .mainFooter__privacyList li {
		padding-right: 0;
		width: 33%;
	}
	.mainFooter__privacyBlock .mainFooter__privacyList li:nth-child(2) {
		text-align: left;
	}
	.mainFooter__privacyBlock .mainFooter__privacyList li:last-child {
		text-align: right;
	}
	.mainFooter__privacyBlock .mainFooter__privacyList li {
		width: 100%;
		display: flex;
		justify-content: center;
		padding-bottom: 12px;
	}
}

.mainFooter__privacyList {
	font-size: 12px;
	display: flex;
}
.mainFooter__privacyList > li {
	padding-right: 2em;
}
.mainFooter__privacyList > li a {
	text-decoration: underline;
}

.mainFooter__socialList {
	display: flex;
}
.mainFooter__socialList > li {
	padding-left: 1em;
	font-size: 1.8em;
}
@media (max-width: 768px) {
	.mainFooter__socialList {
		padding: 10px 0;
		justify-content: center;
		border-top: 1px solid #535353;
		border-bottom: 1px solid #535353;
	}
	.mainFooter__socialList > li {
		padding: 0.5em;
	}
}

.mainFooter h4, .mainFooter h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}
@media (max-width: 768px) {
	.mainFooter h4, .mainFooter h2 {
		margin-top: 20px;
		margin-bottom: 0px;
		padding-bottom: 4px;
	}
}

.mainFooter p {
	margin: 5px 0;
}

.subscribeNewsletter input {
	margin-right: 10px;
}

.subscribeNewsletter__block {
	display: flex;
}
@media (max-width: 768px) {
	.subscribeNewsletter__block {
		padding: 0 30px;
		flex-direction: column;
	}
	.subscribeNewsletter__block .btn.primary {
		margin-top: 16px;
	}
}

.subscribeNewsletter__privacy {
	font-size: 12px;
	margin-top: 10px;
}

.subscribeNewsletter__result {
	margin-top: 8px;
	font-size: 12px;
}

@media (max-width: 768px) {
	.header__btnOpen--secondLevel {
		position: absolute;
		right: 20px;
		top: 12px;
		z-index: 20;
		height: 63px;
		width: 40px;
	}

	.opening .mainHeader {
		transform: none;
		transform: none !important;
		will-change: unset;
	}
	.opening .mainHeader .mainHeader__wrapper {
		transform: none !important;
		will-change: unset;
	}
	.opening .mainHeader .mainHeader__wrapper .mainHeader__flyout {
		transform: none !important;
		will-change: unset;
		height: 100vh;
	}

	.mainHeader__flyout.slide-menu {
		background: transparent linear-gradient(309deg, #f2f2f2 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
		position: absolute;
		top: 0;
		opacity: 1;
		max-height: none;
		right: 0 !important;
		max-width: 100%;
		visibility: visible;
		height: 100%;
		visibility: visible;
		right: 0;
		display: none;
		overflow: hidden;
		box-sizing: border-box;
		transition: transform 250ms ease;
		transform: translateX(100%);
		overflow-y: auto;
		will-change: transform;
		z-index: 4;
		padding-bottom: 42px;
	}
	.mainHeader__flyout.slide-menu > .container {
		padding: 0;
	}
	.mainHeader__flyout.slide-menu .slide-menu__slider {
		width: 100%;
		transition: transform 250ms ease;
		transform: translateX(0);
		will-change: transform;
	}
	.mainHeader__flyout.slide-menu .mainNav__ul {
		position: relative;
		width: 100%;
		margin: 0;
		list-style: none;
		padding: 11px 20px;
	}
	.mainHeader__flyout.slide-menu .mainNav__ul .mainNav__ul {
		position: absolute;
		top: 0;
		height: 540px;
		left: 100%;
		display: none;
	}
	.mainHeader__flyout.slide-menu .mainNav__ul a {
		display: block;
	}
	.mainHeader__flyout.slide-menu a {
		cursor: pointer;
	}
}
@media (max-width: 768px) {
	.mainNav {
		opacity: 1;
		display: block;
	}
	.mainNav .mainNav__subList li a.slide-menu__backlink {
		text-transform: uppercase;
		font-size: 16px;
		font-weight: 800;
		height: 63px;
		line-height: 63px;
		margin-bottom: 30px;
		color: #3e3e3e;
	}
	.mainNav .mainNav__subList li a.slide-menu__backlink:before {
		font-family: "icomoon";
		content: "";
		display: inline-block;
		padding-right: 20px;
	}
	.mainNav .mainNav__subList li a.slide-menu__backlink:after {
		content: "";
		display: block;
		line-height: 1px;
		width: 100%;
		border-bottom: 1px solid #cccccc;
	}
	.mainNav .mainNav__column {
		width: 100%;
		display: block;
	}
	.mainNav .mainNav__subList {
		position: absolute;
		top: 0;
		right: 0;
		display: none;
		width: 100%;
		will-change: transform;
		overflow: hidden;
		box-sizing: border-box;
		transition: transform 250ms ease;
		overflow-y: auto;
		height: 500px;
	}
	.mainNav .mainNav__subList li {
		margin-bottom: 1em;
	}
	.mainNav .mainNav__subList li a {
		font-size: 1.6rem;
	}
	.mainNav .slide-menu__submenu--active {
		transform: translateX(0);
	}
}

@media (max-width: 768px) {
	.mainNav__linkSection--withSubList {
		text-transform: uppercase;
		position: relative;
		padding-right: 20px;
	}
	.mainNav__linkSection--withSubList:after {
		font-size: 1.2rem;
		position: absolute;
		top: 0;
		right: 0;
		font-family: "icomoon";
		content: "";
	}

	.mainNav__li--home {
		text-transform: uppercase;
	}
}
.mainHeader.open .mainHeader__line {
	display: block;
}
.mainHeader.open .breadcrumbs {
	display: none;
}
.mainHeader.open .mainHeader__color {
	display: none;
}
.mainHeader.open .mainHeader__wrapper {
	background: transparent linear-gradient(309deg, #f2f2f2 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
}

@media (max-width: 768px) {
	.mainHeader .mainHeader__wrapper > .container {
		text-align: right;
	}
	.mainHeader.open .mainHeader__wrapper {
		background: transparent;
	}
	.mainHeader.open .mainHeader__wrapper .mainHeader__buttonMobile {
		display: block;
	}
	.mainHeader.open .mainHeader__wrapper .mainHeader__bar {
		background: transparent;
	}
	.mainHeader.open .mainHeader__wrapper .mainHeader__bar .mainLogo {
		visibility: hidden;
	}
	.mainHeader.open .mainHeader__wrapper .mainHeader__color {
		height: 63px;
	}
}
.mainHeader__line {
	display: none;
	position: relative;
	z-index: 50;
}
.mainHeader__line .line {
	border-bottom: 1px solid #cccccc;
}

.mainHeader .mainHeader__barMobile {
	height: 63px;
	display: none;
	padding: 16px 20px;
	margin-left: -20px;
	margin-right: -20px;
	background: #ffffff 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000010;
	opacity: 1;
	margin-bottom: 30px;
}
.mainHeader .mainHeader__barMobile .burger-icon {
	opacity: 0;
}
@media (max-width: 768px) {
	.mainHeader .mainHeader__barMobile {
		display: flex;
		padding: 12px 20px;
		justify-content: space-between;
	}
	.mainHeader .mainHeader__barMobile .mainLogo {
		visibility: visible;
		height: 32px;
	}
}

.mainNav__li--onlyMobile {
	display: none;
}
@media (max-width: 768px) {
	.mainNav__li--onlyMobile {
		display: block;
	}
}

@media (max-width: 768px) {
	.mainNav__li--onlyDesktop {
		display: none;
	}
}

.imageModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 1000;
	align-items: center;
	justify-content: center;
}
.imageModal--open {
	display: flex;
}
.imageModal__close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
	line-height: 0;
	z-index: 1;
}
.imageModal__prev, .imageModal__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 48px;
	padding: 16px;
	color: #3e3e3e;
	font-weight: 300;
	line-height: 1;
}
.imageModal__prev {
	left: 8px;
}
.imageModal__next {
	right: 8px;
}
.imageModal__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: calc(100% - 120px);
}
.imageModal__img {
	max-width: 100%;
	max-height: calc(100vh - 80px);
	max-height: calc(100dvh - 80px);
	object-fit: contain;
	display: block;
	transition: opacity 0.2s ease;
}
.imageModal__counter {
	margin-top: 16px;
	margin-bottom: 0;
	font-size: 1.2rem;
	color: #3e3e3e;
	text-align: center;
	font-weight: 300;
}

.imageModal__trigger {
	cursor: pointer;
}

body.imageModal-bodyOpen {
	overflow: hidden;
}

/* common m odules */
.Mod {
	position: relative;
}
@media (max-width: 768px) {
	.Mod .container .Mod__inner {
		display: flex;
		flex-direction: column;
	}
	.Mod .container .Mod__inner .Mod__imgBlock {
		width: 100%;
	}
}

.Mod__inner {
	display: flex;
	padding-top: 4em;
	padding-bottom: 4em;
	position: relative;
}

.Mod__innerWrapper {
	position: relative;
	width: 100%;
	display: flex;
}

.Mod__imgBlock {
	width: 65%;
}
.Mod__imgBlock img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	display: block;
}

.Mod__videoInternalWrapper {
	height: 100%;
}
.Mod__videoInternalWrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.Mod__textBlock {
	width: 35%;
	padding: 0;
	display: flex;
	align-items: center;
}
.Mod__textBlock .textBlock {
	width: 100%;
	align-items: center;
	padding: 4vw 7vw;
}
.Mod__textBlock .textBlock .textBlock__designer {
	font-size: 1.6rem;
}
.Mod__textBlock .textBlock img {
	max-width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 768px) {
	.Mod__textBlock {
		width: 100% !important;
	}
	.Mod__textBlock .textBlock {
		padding: 5vw 0;
	}
	.Mod__textBlock .textBlock .textBlockButtons {
		flex-direction: column;
		gap: 20px;
	}
	.Mod__textBlock .textBlock .textBlockButtons .textBlockButtons__item {
		margin: 20px 0 0 0;
	}
	.Mod__textBlock .textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
		margin: 20px 0 0 0;
	}
}
.Mod__textBlock .numberBlock {
	position: absolute;
	font-size: 18em;
	line-height: 1em;
	margin: 0;
	top: 60px;
	transform: translateY(-70%);
	font-weight: 300;
	z-index: 1;
	right: 20px;
	left: auto;
}
@media (max-width: 1024px) {
	.Mod__textBlock .numberBlock {
		font-size: 8em;
	}
}
@media (max-width: 768px) {
	.Mod__textBlock .numberBlock {
		font-size: 6em;
	}
}
.Mod__textBlock .numberBlock.numberBlock--posLeft {
	left: 20px;
	right: auto;
}
.Mod__textBlock .numberBlock.numberBlock--posRight {
	left: auto;
	right: 20px;
}

.Mod__debug {
	position: absolute;
	top: 20px;
	left: 20px;
	display: inline-block;
	font-size: 12px;
	padding: 4px;
	color: #fff;
	background: blue;
	z-index: 10;
}

.Mod__videoAwsWrapper {
	position: relative;
	overflow: hidden;
	height: 100%;
}
.Mod__videoAwsWrapper .autoplay .vjs-control-bar {
	display: none;
}
.Mod__videoAwsWrapper .autoplay .vjs-big-play-button {
	display: none !important;
}

.Mod__videoAwsPoster {
	background-size: cover;
}

.Mod__videoAwsBackground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
	z-index: 1;
	/* sotto il video-js */
}

.Mod__videoAwsWrapper video-js {
	position: relative;
	z-index: 2;
	/* sopra il background */
}

.Mod__videoAwsWrapper--mobile {
	position: relative;
	min-height: 200px;
}
.Mod__videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	height: 100%;
}
.Mod__videoWrapper iframe,
.Mod__videoWrapper object,
.Mod__videoWrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.Mod__videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	.Mod__videoWrapper {
		padding-bottom: 184%;
	}
}

/* module not found */
.modNotFound .Mod__inner {
	border: 5px solid red;
}
.modNotFound .Mod__debug {
	background: red;
}

.textBlockButtons {
	margin-top: 20px;
}

.textBlockButtons__item + .textBlockButtons__item {
	margin-top: 20px;
}

p.textBlock__subtitle {
	margin-top: 0;
	font-weight: 300;
}

.textBlock__bigTitle {
	font-size: 4rem;
	font-weight: 600;
}

.textBlock__descTwoColumn .textBlock__desc {
	text-align: justify;
	columns: 2;
	column-gap: 30px;
}
@media (max-width: 1024px) {
	.textBlock__descTwoColumn .textBlock__desc {
		columns: 1;
	}
}

.modImgVerticalWithText + .modImgVerticalWithText {
	margin-top: 8vw;
}

.modImgVerticalWithText + .modTwoImgVerticalWithText {
	margin-top: 8vw;
}

.modImgVerticalWithText + .modImg {
	margin-top: 8vw;
}

.modImgVerticalWithText + .modGallery {
	margin-top: 8vw;
}

.modTwoImgVerticalWithText + .modImgVerticalWithText {
	margin-top: 8vw;
}

.modTwoImgVerticalWithText + .modTwoImgVerticalWithText {
	margin-top: 8vw;
}

.modTwoImgVerticalWithText + .modImg {
	margin-top: 8vw;
}

.modTwoImgVerticalWithText + .modGallery {
	margin-top: 8vw;
}

.modImg + .modImgVerticalWithText {
	margin-top: 8vw;
}

.modImg + .modTwoImgVerticalWithText {
	margin-top: 8vw;
}

.modImg + .modImg {
	margin-top: 8vw;
}

.modImg + .modGallery {
	margin-top: 8vw;
}

.modGallery + .modImgVerticalWithText {
	margin-top: 8vw;
}

.modGallery + .modTwoImgVerticalWithText {
	margin-top: 8vw;
}

.modGallery + .modImg {
	margin-top: 8vw;
}

.modGallery + .modGallery {
	margin-top: 8vw;
}

.modTwoImgVerticalWithText.modTwoImgVerticalWithText--padding.inverted + .modTwoImgVerticalWithText.modTwoImgVerticalWithText--padding {
	margin-top: 0;
}

.modImgText .Mod__imgBlock {
	width: 70%;
	order: 1;
}
.modImgText .Mod__textBlock {
	order: 2;
}
.modImgText .Mod__textBlock .textBlock {
	padding: 2em 4vw;
	margin-left: 1.5vw;
	margin-top: 2vw;
}
@media (max-width: 768px) {
	.modImgText .Mod__textBlock .textBlock {
		padding: 1em 0;
		margin-left: 0;
	}
}
.modImgText .Mod__textBlock .textBlock .textBlock__desc img {
	max-width: 100%;
	height: auto;
}
@media (min-width: 769px) {
	.modImgText.inverted .Mod__imgBlock {
		order: 2;
	}
	.modImgText.inverted .Mod__textBlock {
		order: 1;
	}
}
.modImgText.fullWidth .Mod__inner {
	padding: 0;
}
@media (max-width: 768px) {
	.modImgText.fullWidth .Mod__textBlock .textBlock, .modImgText.modInteriorDesignerVariant .Mod__textBlock .textBlock {
		margin-top: 0;
		padding: 2em 2em;
		margin-left: 0;
	}
}

/* class for module designer */
.modInteriorDesignerVariant .Mod__imgBlock {
	width: 55%;
}
.modInteriorDesignerVariant .Mod__imgBlock img {
	height: 100%;
	object-fit: cover;
}
.modInteriorDesignerVariant .Mod__textBlock {
	width: 45%;
	color: #fff;
	background-color: #31344D;
}
.modInteriorDesignerVariant .Mod__textBlock .textBlock {
	margin-bottom: 2vw;
}
.modInteriorDesignerVariant .Mod__textBlock .textBlock table,
.modInteriorDesignerVariant .Mod__textBlock .textBlock th,
.modInteriorDesignerVariant .Mod__textBlock .textBlock td {
	color: white;
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	padding: 5px 20px 20px 0px;
	line-height: 14px;
}
@media (max-width: 768px) {
	.modInteriorDesignerVariant .Mod__textBlock .textBlock table,
.modInteriorDesignerVariant .Mod__textBlock .textBlock th,
.modInteriorDesignerVariant .Mod__textBlock .textBlock td {
		padding: 0px;
	}
}
@media (max-width: 1024px) {
	.modInteriorDesignerVariant .Mod__textBlock .textBlock .iconsHome {
		display: none;
	}
}
.modInteriorDesignerVariant .Mod__textBlock .textBlock .iconsHome .modArItemBlock__img {
	margin-bottom: 10px;
}

.modArItemBlock__img {
	display: block;
}

.modArItemBlock__description,
.modArc__description,
.textBlock__desc, .textBlock__desc * {
	font-size: 16px;
	line-height: 24px;
}

.modArc {
	background-image: none;
}

.architettiPage .modArc__title {
	font-size: 32px;
	font-weight: 500;
}

.iconsHomeList {
	list-style: none;
	padding: 0;
	margin: 80px 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.iconsHomeList li {
	text-align: center;
}
.iconsHomeList li img {
	margin: 0 auto;
}

.iconsHomeList li span {
	display: block;
	margin-top: 10px;
	font-size: 11px;
	line-height: 1.2;
}

.iconsHomeList li .modArItemBlock__img {
	height: 30px !important;
	width: auto !important;
}

/* Responsive per schermi piccoli */
@media (max-width: 1024px) {
	.iconsHomeList {
		display: none;
	}
}
/* common m odules */
.modGallery {
	color: #fff;
}
@media (max-width: 768px) {
	.modGallery {
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.modGallery .container {
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
.modGallery .Mod__imgBlock {
	width: 100%;
}
.modGallery .Mod__textBlock {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.modGallery .Mod__textBlock .textBlock {
	text-align: center;
	padding: 7em 20vw;
	z-index: 2;
}
@media (max-width: 768px) {
	.modGallery .Mod__textBlock {
		position: relative;
	}
	.modGallery .Mod__textBlock .textBlock {
		padding: 7em 7vw;
		width: auto;
	}
	.modGallery .Mod__textBlock + .Mod__imgBlock {
		position: absolute;
		top: 0;
		bottom: 0;
	}
	.modGallery .Mod__textBlock + .Mod__imgBlock img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
	}
}

.modGalleryModules.modGalleryModules--withNumber .splide__list {
	margin-top: 8em !important;
}
@media (max-width: 768px) {
	.modGalleryModules.modGalleryModules--withNumber .splide__list .splide__slide > .Mod {
		display: flex;
		height: 100%;
	}
	.modGalleryModules.modGalleryModules--withNumber .splide__list .splide__slide > .Mod .Mod__textBlock {
		height: 100%;
		align-items: normal;
	}
	.modGalleryModules.modGalleryModules--withNumber .splide__list .splide__slide .textBlockHeading {
		padding: 1em;
	}
}
@media (max-width: 768px) {
	.modGalleryModules.modGalleryModules--withNumber .splide__arrow {
		display: block;
	}
	.modGalleryModules.modGalleryModules--withNumber .splide__arrow:disabled {
		display: none;
	}
}

.leonardoPage .modGalleryModules:last-child {
	margin-bottom: 6em;
}

.modGalleryModules + .modGalleryModules {
	margin-top: 6em;
}
@media (max-width: 768px) {
	.modGalleryModules + .modGalleryModules {
		margin-top: 20px;
	}
}

.modImgCenterWithCaption {
	text-align: center;
}
.modImgCenterWithCaption .Mod__inner {
	padding: 14em;
	flex-wrap: wrap;
	justify-content: center;
}
@media (max-width: 768px) {
	.modImgCenterWithCaption .Mod__inner {
		padding: 2em;
	}
}
.modImgCenterWithCaption .Mod__inner .Mod__imgBlock {
	width: 100%;
	justify-content: center;
}
.modImgCenterWithCaption .Mod__inner .Mod__textBlock {
	width: 100%;
	padding-bottom: 0;
	justify-content: center;
	text-align: center;
}
.modImgCenterWithCaption .Mod__inner .Mod__textBlock .textBlock {
	padding: 1em;
	padding-bottom: 0;
}

.modImgCenterWithCta {
	text-align: center;
}
.modImgCenterWithCta .Mod__inner {
	padding: 8em 8em;
	flex-wrap: wrap;
	width: 100%;
}
.modImgCenterWithCta .Mod__inner .Mod__imgBlock {
	width: 100%;
	justify-content: center;
}
.modImgCenterWithCta .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock {
	width: 100%;
	padding: 0;
	padding-bottom: 1em;
	display: flex;
}
.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockHeading {
	text-align: left;
	width: 50%;
}
.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockHeading .textBlock__title {
	margin: 0;
	margin-bottom: 0.5em;
}
.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockButtons {
	text-align: right;
	width: 50%;
	justify-content: flex-end;
	display: flex;
	align-items: center;
}
@media (max-width: 768px) {
	.modImgCenterWithCta .Mod__inner {
		padding: 0;
		display: flex;
	}
	.modImgCenterWithCta .Mod__inner .Mod__imgBlock {
		padding: 4em 0;
		order: 1;
	}
	.modImgCenterWithCta .Mod__inner .Mod__textBlock {
		padding: 5vw 0;
		text-align: left;
		order: 2;
	}
	.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock {
		flex-direction: column;
	}
	.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockHeading {
		width: 100%;
	}
	.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockHeading .textBlock__title {
		margin: 0;
	}
	.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockButtons {
		width: 100%;
		text-align: left;
		justify-content: flex-start;
	}
	.modImgCenterWithCta .Mod__inner .Mod__textBlock .textBlock .textBlockButtons__item {
		margin: 0;
		width: 100%;
	}
}

.modImgVerticalWithText.inverted .Mod__imgBlock {
	order: 2;
}
.modImgVerticalWithText.inverted .Mod__textBlock {
	order: 1;
}
.modImgVerticalWithText .Mod__inner {
	padding: 0;
}
.modImgVerticalWithText .Mod__inner .Mod__imgBlock {
	width: 50%;
	justify-content: center;
}
.modImgVerticalWithText .Mod__inner .Mod__textBlock {
	width: 50%;
	display: flex;
	align-items: center;
	padding: 0;
}
@media (max-width: 768px) {
	.modImgVerticalWithText .Mod__inner {
		padding: 4em 0;
	}
	.modImgVerticalWithText.inverted .Mod__imgBlock {
		order: 1;
	}
	.modImgVerticalWithText.inverted .Mod__textBlock {
		order: 2;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.modTextures .Mod__inner {
	padding: 8em 5em;
}
.modTextures .Mod__inner .modTextures__list {
	display: flex;
	margin: 0;
}
.modTextures .Mod__inner .modTextures__list .modTextures__listItem {
	flex: 1 1 0px;
}
.modTextures .Mod__inner .modTextures__list .modTextures__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
	padding: 5px;
}
@media (max-width: 768px) {
	.modTextures .Mod__inner {
		padding: 10%;
	}
	.modTextures .Mod__inner .modTextures__list {
		flex-direction: column;
	}
}

.modTwoImgVertical .Mod__inner {
	padding: 8vw 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	.modTwoImgVertical .Mod__inner {
		flex-direction: column;
	}
	.modTwoImgVertical .Mod__inner .modTwoImgVertical__imgBlock {
		margin-left: -20px;
		margin-right: -20px;
	}
	.modTwoImgVertical .Mod__inner .modTwoImgVertical__imgBlock:nth-child(2) .Mod__imgBlock {
		padding: 12vw !important;
	}
}
.modTwoImgVertical .Mod__inner .modTwoImgVertical__imgBlock {
	flex: 1 1 0px;
}
.modTwoImgVertical .Mod__inner .modTwoImgVertical__imgBlock .Mod__imgBlock {
	width: auto;
}
.modTwoImgVertical .Mod__inner .modTwoImgVertical__imgBlock:nth-child(2) .Mod__imgBlock {
	padding: 8vw;
}
.modTwoImgVertical.inverted .modTwoImgVertical__imgBlock:nth-child(1) {
	order: 2;
}
.modTwoImgVertical.inverted .modTwoImgVertical__imgBlock:nth-child(2) {
	order: 1;
}
.modTwoImgVertical.modTwoImgVertical--secondHorizontal .Mod__inner {
	align-items: unset;
}
.modTwoImgVertical.modTwoImgVertical--secondHorizontal .Mod__inner .modTwoImgVertical__imgBlock .Mod__imgBlock {
	width: auto;
}
.modTwoImgVertical.modTwoImgVertical--secondHorizontal .Mod__inner .modTwoImgVertical__imgBlock:nth-child(2) {
	display: flex;
	flex: 2 1;
	align-items: stretch;
	margin-left: 10px;
}
@media (max-width: 768px) {
	.modTwoImgVertical.modTwoImgVertical--secondHorizontal .Mod__inner .modTwoImgVertical__imgBlock:nth-child(2) {
		margin-left: 0;
		margin-right: 0;
	}
}
.modTwoImgVertical.modTwoImgVertical--secondHorizontal .Mod__inner .modTwoImgVertical__imgBlock:nth-child(2) .Mod__imgBlock {
	padding: 0;
}

.modTwoImgVerticalWithText .Mod__inner {
	display: flex;
	padding: 8em 0;
}
@media (max-width: 768px) {
	.modTwoImgVerticalWithText .Mod__inner {
		flex-direction: column;
		margin-left: -20px;
		margin-right: -20px;
		padding: 0 0;
	}
}
.modTwoImgVerticalWithText .Mod__inner .Mod__imgBlock {
	flex: 1 1 0px;
	justify-content: center;
}
.modTwoImgVerticalWithText .Mod__inner .Mod__textBlock {
	flex: 1 1 0px;
	display: flex;
	align-items: center;
}
.modTwoImgVerticalWithText .Mod__inner .Mod__textBlock .textBlock {
	padding: 5em;
}
.modTwoImgVerticalWithText.inverted .Mod__textBlock {
	order: 1;
}
.modTwoImgVerticalWithText.inverted .Mod__imgBlock:nth-child(1) {
	order: 2;
}
.modTwoImgVerticalWithText.inverted .Mod__imgBlock:nth-child(2) {
	order: 3;
}

.modTwoImgVerticalWithText--padding .Mod__inner .Mod__imgBlock {
	flex: none;
	width: 37%;
}
.modTwoImgVerticalWithText--padding .Mod__inner .Mod__imgBlock + .Mod__imgBlock {
	margin-left: 10px;
}
@media (max-width: 768px) {
	.modTwoImgVerticalWithText--padding .Mod__inner .Mod__imgBlock + .Mod__imgBlock {
		margin-left: 0px;
	}
}
.modTwoImgVerticalWithText--padding .Mod__inner .Mod__textBlock .textBlock {
	padding: 4em;
}
@media (max-width: 768px) {
	.modTwoImgVerticalWithText--padding .Mod__inner .Mod__textBlock .textBlock {
		padding: 20px 20px;
	}
}
@media (max-width: 768px) {
	.modImg.modImg__relative .Mod__inner .Mod__textBlock + .Mod__imgBlock {
		position: relative !important;
		top: 0;
		bottom: 0;
	}
	.modImg.modImg__relative .Mod__inner .Mod__textBlock + .Mod__imgBlock img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
	}
}
@media (max-width: 768px) {
	.modImg .container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
.modImg .Mod__inner {
	padding: 0;
}
.modImg .Mod__inner .Mod__imgBlock {
	width: 100%;
}
.modImg .Mod__inner .Mod__textBlock {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: #fff;
}
.modImg .Mod__inner .Mod__textBlock .textBlock {
	text-align: center;
	width: 60%;
	z-index: 2;
}
@media (max-width: 768px) {
	.modImg .Mod__inner .Mod__textBlock {
		position: relative;
	}
	.modImg .Mod__inner .Mod__textBlock .textBlock {
		padding: 7em 7vw;
		width: auto;
	}
	.modImg .Mod__inner .Mod__textBlock + .Mod__imgBlock {
		position: absolute;
		top: 0;
		bottom: 0;
	}
	.modImg .Mod__inner .Mod__textBlock + .Mod__imgBlock img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
	}
	.modImg.autoHeightMobile .Mod__inner .Mod__textBlock + .Mod__imgBlock {
		position: relative;
	}
	.modImg.autoHeightMobile .Mod__textBlock {
		position: absolute;
	}
	.modImg.autoHeightMobile .Mod__imgBlock {
		position: relative;
	}
}

.modTwoImgShiftedWithText.inverted .Mod__textBlock {
	order: 1;
}
.modTwoImgShiftedWithText.inverted .modTwoImgShiftedWithText__imgsBlock {
	order: 2;
}
.modTwoImgShiftedWithText.modTwoImgShiftedWithText--center .Mod__inner {
	justify-content: center;
}
.modTwoImgShiftedWithText.modTwoImgShiftedWithText--center .Mod__inner .Mod__textBlock {
	display: none;
}
.modTwoImgShiftedWithText .Mod__inner {
	padding: 0;
	display: flex;
	padding: 8em 0;
}
.modTwoImgShiftedWithText .Mod__inner .modTwoImgShiftedWithText__imgsBlock {
	display: flex;
	width: 55%;
}
.modTwoImgShiftedWithText .Mod__inner .modTwoImgShiftedWithText__imgsBlock .Mod__imgBlock {
	flex: 1 1 0px;
	justify-content: center;
	padding: 0 0;
	padding-bottom: 2em;
}
.modTwoImgShiftedWithText .Mod__inner .modTwoImgShiftedWithText__imgsBlock .Mod__imgBlock + .Mod__imgBlock {
	padding-left: 1em;
	padding-top: 2em;
	padding-bottom: 0;
}
.modTwoImgShiftedWithText .Mod__inner .Mod__textBlock {
	display: flex;
	width: 45%;
	align-items: center;
}
.modTwoImgShiftedWithText .Mod__inner .Mod__textBlock .textBlock {
	padding: 4vw 9vw 4vw 7vw;
}
@media (max-width: 768px) {
	.modTwoImgShiftedWithText .Mod__inner {
		flex-direction: column;
	}
	.modTwoImgShiftedWithText .Mod__inner .Mod__textBlock .textBlock {
		padding: 4vw 0 4vw 0;
	}
	.modTwoImgShiftedWithText .Mod__inner .modTwoImgShiftedWithText__imgsBlock {
		flex-direction: column;
		width: 100%;
	}
	.modTwoImgShiftedWithText .Mod__inner .modTwoImgShiftedWithText__imgsBlock .Mod__imgBlock {
		padding-left: 0;
	}
	.modTwoImgShiftedWithText .Mod__inner .modTwoImgShiftedWithText__imgsBlock .Mod__imgBlock + .Mod__imgBlock {
		padding-left: 0;
		padding-top: 0;
	}
}

.modGalleryCentral {
	text-align: center;
}
.modGalleryCentral .Mod__inner {
	padding: 8vw;
	flex-wrap: wrap;
}
.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides {
	width: 100%;
	position: relative;
}
.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .Mod__imgBlock {
	width: 100%;
	justify-content: center;
}
.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .Mod__textBlock {
	position: absolute;
	z-index: 1;
}
.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .Mod__textBlock .textBlock {
	display: block;
	padding: 2em;
}
.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .Mod__textBlock .textBlock .textBlockButtons {
	justify-content: flex-start;
}
.modGalleryCentral .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modGalleryCentral .Mod__inner .Mod__textBlock .textBlock {
	width: 100%;
	padding: 0;
	padding-bottom: 1em;
	display: flex;
}
.modGalleryCentral .Mod__inner .Mod__textBlock .textBlock .textBlockHeading {
	text-align: left;
	width: 50%;
}
.modGalleryCentral .Mod__inner .Mod__textBlock .textBlock .textBlockHeading .textBlock__title {
	margin: 0;
}
.modGalleryCentral .Mod__inner .Mod__textBlock .textBlock .textBlockButtons {
	width: 50%;
	justify-content: flex-end;
	display: flex;
	align-items: center;
}
@media (max-width: 768px) {
	.modGalleryCentral .Mod__inner {
		padding: 0;
		display: flex;
	}
	.modGalleryCentral .Mod__inner .Mod__textBlock .textBlock {
		flex-direction: column;
	}
	.modGalleryCentral .Mod__inner .Mod__textBlock .textBlock .textBlockHeading {
		width: 100%;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide {
		display: flex;
		flex-direction: column;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__imgBlock {
		order: 1;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__textBlock {
		padding: 5vw 0;
		text-align: left;
		position: static;
		order: 2;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__textBlock .textBlock {
		flex-direction: column;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__textBlock .textBlock .textBlockHeading {
		width: 100%;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__textBlock .textBlock .textBlockHeading .textBlock__title {
		margin: 0;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__textBlock .textBlock .textBlockButtons {
		width: 100%;
		text-align: left;
		justify-content: flex-start;
	}
	.modGalleryCentral .Mod__inner .modGalleryCentral__wrapperSlides .splide__slide .Mod__textBlock .textBlock .textBlockButtons__item {
		margin: 0;
		width: 100%;
	}
}

.modTextCenter .Mod__inner {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.modTextCenter .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modTextCenter .Mod__inner .Mod__textBlock .textBlock {
	padding: 4em 20vw;
}
@media (max-width: 768px) {
	.modTextCenter .Mod__inner .Mod__textBlock .textBlock {
		padding: 4em 2vw;
	}
}
.modTextCenter .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 2em;
}
.modTextCenter .Mod__inner .Mod__textBlock .textBlockButtons {
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 3em;
	display: flex;
}
.modTextCenter .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item {
	display: inline-block;
}
.modTextCenter .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
	margin: 0 0 0 20px;
}
@media (max-width: 768px) {
	.modTextCenter .Mod__inner .textBlock .textBlockButtons .textBlockButtons__item {
		margin: 0 0 0 0;
	}
	.modTextCenter .Mod__inner .textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
		margin: 0 0 0 0;
	}
}

.modTextCenter--twoColumn .textBlock__subtitle {
	columns: 2;
	text-align: left;
	column-gap: 2vw;
	font-size: 16px;
}

.modTextCenter--twoColumnTextSmall .textBlock__subtitle {
	columns: 2;
	text-align: left;
	column-gap: 2vw;
	font-size: 16px;
}

.modGridProducts .Mod__inner {
	padding: 2em;
}
@media (max-width: 768px) {
	.modGridProducts .Mod__inner {
		padding: 0;
	}
}
.modGridProducts .Mod__inner .modGridProducts__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin: 0;
	width: 100%;
}
.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem {
	flex-basis: 33.33334%;
	display: inline-block;
	padding: 10px 30px;
}
.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem .Mod__textBlock .textBlock {
	width: 100%;
	padding: 1em;
}
.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem .Mod__textBlock .textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 0;
}
.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem .Mod__textBlock .textBlock .textBlock__subtitle {
	font-size: 1.6rem;
}
.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
}
@media (max-width: 768px) {
	.modGridProducts {
		padding: 2em 0;
	}
	.modGridProducts .Mod__inner .modGridProducts__list .modGridProducts__listItem {
		flex-basis: 50%;
		padding: 10px;
		width: 50%;
	}
}

.modCategoryList .Mod__inner {
	padding: 2em;
}
@media (max-width: 768px) {
	.modCategoryList .Mod__inner {
		padding: 0;
	}
	.modCategoryList .Mod__inner .modCategoryList__list {
		flex-direction: column;
	}
}
.modCategoryList .Mod__inner .modCategoryList__list {
	display: flex;
	justify-content: flex-start;
	margin: 0;
	width: 100%;
	gap: 40px;
	margin-bottom: 60px;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem {
	flex: 1;
	padding: 0;
	background-color: #eee9e8;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem:nth-child(2) {
	background-color: #f2f0ec;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem:nth-child(2) .Mod__textBlock {
	background-color: #f2f0ec;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem:nth-child(3) {
	background-color: #dce2d8;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem:nth-child(3) .Mod__textBlock {
	background-color: #dce2d8;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem .Mod__textBlock {
	background-color: #eee9e8;
	padding: 40px 30px;
	width: 100%;
	text-align: left;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem .Mod__textBlock .textBlock {
	width: 100%;
	padding: 1em;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem .Mod__textBlock .textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 20px;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem .Mod__textBlock .textBlock .textBlock__subtitle {
	font-size: 1.6rem;
}
.modCategoryList .Mod__inner .modCategoryList__list .modCategoryList__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
}
@media (max-width: 768px) {
	.modCategoryList {
		padding: 2em 0;
	}
}

.modListRetailers .Mod__inner {
	display: block;
}
.modListRetailers .modListRetailersHeader {
	text-align: center;
	margin-bottom: 60px;
	margin-top: 60px;
}
.modListRetailers .modListRetailersHeader__title {
	font-size: 32px;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
.modListRetailers .modListRetailersHeader__desc {
	font-size: 20px;
	font-weight: 400;
}
.modListRetailers .modListRetailers__regionList {
	width: 100%;
}
.modListRetailers .modListRetailers__header {
	background-color: #638aab;
	color: #fff;
	padding: 14px 22px;
}
.modListRetailers .modListRetailers__header h3 {
	display: inline;
	padding-right: 10px;
}
.modListRetailers .modListRetailersItem__wrapperContent {
	display: flex;
	flex-direction: column;
	align-items: space-between;
}
.modListRetailers .Mod__inner {
	padding: 2em;
}
@media (max-width: 768px) {
	.modListRetailers .Mod__inner {
		padding: 0;
	}
}
.modListRetailers .Mod__inner .modListRetailers__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin: 0;
	width: 100%;
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 60px;
}
.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem {
	flex-basis: 25%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem .Mod__textBlock .textBlock {
	width: 100%;
	padding: 1em;
}
.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem .Mod__textBlock .textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 0;
}
.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem .Mod__textBlock .textBlock .textBlock__subtitle {
	font-size: 1.6rem;
}
.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
}
.modListRetailers .modListRetailers__listItem {
	margin: 0;
	padding: 16px;
	box-shadow: 0px 2px 7px #00000029;
	position: relative;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.4em;
	color: #3e3e3e;
	border: 2px solid #fff;
}
.modListRetailers .modListRetailersItem__title {
	font-weight: 700;
	color: #012857;
	text-transform: uppercase;
	font-size: 14px;
}
.modListRetailers .modListRetailersItem__icon {
	width: 20px;
}
.modListRetailers .modListRetailersItem__address {
	display: flex;
	text-transform: uppercase;
}
.modListRetailers .modListRetailersItem__address p {
	margin: 0;
	padding: 0;
}
.modListRetailers .modListRetailersItem__phone {
	display: flex;
	margin-top: 5px;
}
.modListRetailers .modListRetailersItem__email {
	display: flex;
	margin-top: 5px;
}
.modListRetailers .modListRetailersItem__link {
	margin-top: 5px;
	display: block;
	margin: 0 auto;
	width: 100%;
	padding-top: 6px;
	padding-bottom: 6px;
	border: 1px solid #535353;
	font-weight: 500;
	text-align: center;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.modListRetailers {
		padding: 2em 0;
	}
	.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem {
		flex-basis: 100%;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.modListRetailers .Mod__inner .modListRetailers__list .modListRetailers__listItem {
		flex: 1 0 0;
	}
}

.modStripProducts .Mod__inner {
	padding: 2em;
	display: block;
}
.modStripProducts .Mod__inner .modStripProducts__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modStripProducts .Mod__inner .modStripProducts__heading .Mod__textBlock .textBlock {
	padding: 1em;
}
.modStripProducts .Mod__inner .modStripProducts__heading .Mod__textBlock .textBlock .textBlock__title {
	font-weight: 100;
}
.modStripProducts .Mod__inner .modStripProducts__heading .Mod__textBlock .textBlock .textBlock__desc {
	padding-top: 1em;
	font-weight: 300;
}
.modStripProducts .Mod__inner .modStripProducts__link {
	display: inline-block;
	position: relative;
}
.modStripProducts .Mod__inner .modStripProducts__link .Mod__imgBlock img {
	height: auto;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides {
	width: 100%;
	position: relative;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides .Mod__textBlock .textBlock {
	width: 100%;
	padding: 1em;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides .Mod__textBlock .textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 0;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides .Mod__textBlock .textBlock .textBlock__subtitle {
	font-size: 1.6rem;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides .Mod__imgBlock {
	justify-content: center;
	width: auto;
}
.modStripProducts .Mod__inner .modStripProducts__wrapperSlides .Mod__imgBlock img {
	width: auto;
}

.modProductMenuDetails {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	z-index: 2;
	transition: top 250ms ease-in-out;
}
.modProductMenuDetails .Mod__inner {
	padding: 0;
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list {
	display: flex;
	width: 100%;
	justify-content: space-around;
	margin: 0;
}
@media (max-width: 768px) {
	.modProductMenuDetails .Mod__inner .modProductMenuDetails__list {
		justify-content: flex-start;
	}
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem {
	display: inline-block;
	padding: 10px;
	padding: 0px;
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem a {
	text-decoration: none;
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem a.active .textBlock__title {
	font-weight: 500;
	color: #012857;
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem .Mod__textBlock .textBlock {
	padding: 1em;
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem .Mod__textBlock .textBlock__title {
	color: #838889;
	font-size: 1.6rem;
	padding-bottom: 0;
	font-weight: 300;
}
@media (max-width: 768px) {
	.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem .Mod__textBlock .textBlock__title {
		font-size: 1.2rem;
		font-weight: 400;
	}
}
.modProductMenuDetails .Mod__inner .modProductMenuDetails__list .modProductMenuDetails__listItem .textBlock__title:hover {
	color: #012857;
	text-decoration: none;
}

/***************************/
/***************************/
.headroom--unpinned + .mainContent .modProductMenuDetails {
	transition: top 100ms ease-in-out;
	top: -60px !important;
}

.headroom--pinned + .mainContent .modProductMenuDetails {
	transition: top 500ms ease-in-out;
	top: 96px !important;
}
@media (max-width: 768px) {
	.headroom--pinned + .mainContent .modProductMenuDetails {
		top: 82px !important;
	}
}

.modProductDownloads {
	background: url("/images/n021.jpg") no-repeat center center;
	background-size: cover;
}
.modProductDownloads .Mod__inner {
	padding: 6vw;
	display: block;
}
.modProductDownloads .Mod__inner .modProductDownloads__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modProductDownloads .Mod__inner .modProductDownloads__heading .Mod__textBlock .textBlock {
	width: 100%;
	padding-top: 0;
}
.modProductDownloads .Mod__inner .modProductDownloads__heading .Mod__textBlock .textBlock__desc {
	padding-top: 1em;
	font-weight: 300;
}
.modProductDownloads .Mod__inner .modProductDownloads__heading .Mod__textBlock .textBlock__desc a {
	font-weight: 500;
	text-decoration: underline;
}
.modProductDownloads .Mod__inner .modProductDownloads__list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
	justify-content: center;
	margin: 0;
	padding-bottom: 0;
}
@media (max-width: 768px) {
	.modProductDownloads .Mod__inner .modProductDownloads__list {
		flex-flow: initial;
		flex-direction: column;
	}
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem {
	display: inline-block;
	padding: 10px;
	text-align: center;
	justify-content: center;
}
@media (max-width: 768px) {
	.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem {
		flex: 1 1 0px;
		margin: auto;
	}
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .modProductDownloads__icon {
	font-size: 40px;
	color: #3e3e3e;
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .modProductDownloads__link {
	display: inline-block;
	text-align: center;
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .modProductDownloads__link:hover .modProductDownloads__icon {
	color: #012857;
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .modProductDownloads__link .textBlockHeading .textBlock__desc:before {
	font-family: "icomoon";
	content: "";
	display: inline-block;
	font-size: 0.8em;
	margin-right: 8px;
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .Mod__textBlock .textBlock {
	padding: 1em;
}
.modProductDownloads .Mod__inner .modProductDownloads__list .modProductDownloads__listItem .Mod__imgBlock {
	display: inline-block;
	width: 50px;
	justify-content: center;
}

.modProductSizes .mainNavUnitListWrapper {
	text-align: right;
}
.modProductSizes .mainNavUnitListWrapper .mainNavUnitList {
	margin-top: 36px;
	color: #3e3e3e;
	border: 1px solid #3e3e3e;
	display: inline-block;
}
.modProductSizes .mainNavUnitListWrapper .mainNavUnitList .mainNavUnitList__btn {
	padding: 8px 14px;
	font-size: 12px;
}
.modProductSizes .Mod__inner {
	padding: 6vw;
	display: block;
}
@media (max-width: 768px) {
	.modProductSizes .Mod__inner {
		padding: 0;
	}
}
.modProductSizes .Mod__inner .modProductSizes__heading {
	border-bottom: 1px solid #ccc;
}
.modProductSizes .Mod__inner .modProductSizes__heading .textBlock {
	width: 100%;
	padding-top: 0;
}
.modProductSizes .Mod__inner .modProductSizes__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .cm,
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .in,
.modProductSizes .Mod__inner .modProductSizes__note .cm,
.modProductSizes .Mod__inner .modProductSizes__note .in {
	display: none;
}
.cm .modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .cm,
.cm .modProductSizes .Mod__inner .modProductSizes__note .cm {
	display: block;
}
.in .modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .in,
.in .modProductSizes .Mod__inner .modProductSizes__note .in {
	display: block;
}
.modProductSizes .Mod__inner .modProductSizes__note {
	padding: 16px 0;
	color: #838889;
}
.modProductSizes .Mod__inner .modProductSizes__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin: 0;
}
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem {
	max-width: 25%;
	display: inline-block;
	padding: 10px;
}
.modProductSizes--2Columns .modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem {
	max-width: 50%;
}
@media (max-width: 768px) {
	.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem {
		max-width: 50%;
	}
}
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .Mod__textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 15px;
}
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .Mod__textBlock .textBlock {
	padding: 1em;
	font-size: 1.5rem;
}
.modProductSizes .Mod__inner .modProductSizes__list .modProductSizes__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
}
.modProductSizes.modProductSizes--2Columns .Mod__inner .modProductSizes__list .modProductSizes__listItem {
	width: 50%;
	max-width: 50%;
}
@media (max-width: 768px) {
	.modProductSizes.modProductSizes--2Columns .Mod__inner .modProductSizes__list .modProductSizes__listItem {
		width: 100%;
		max-width: 100%;
	}
}

.modProductConfigure .Mod__inner {
	padding: 8vw;
	display: block;
}
.modProductConfigure .Mod__inner .modProductConfigure__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
	font-weight: 300;
}
.modProductConfigure .Mod__inner .modProductConfigure__heading .Mod__textBlock .textBlock {
	padding-top: 0;
}
.modProductConfigure .Mod__inner .modProductConfigure__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-end;
	margin: 0;
}
@media (max-width: 768px) {
	.modProductConfigure .Mod__inner .modProductConfigure__list {
		flex-direction: column;
	}
}
.modProductConfigure .Mod__inner .modProductConfigure__list .modProductConfigure__listItem {
	flex-basis: 35%;
	display: inline-block;
	padding: 10px;
	text-align: center;
}
@media (max-width: 768px) {
	.modProductConfigure .Mod__inner .modProductConfigure__list .modProductConfigure__listItem {
		width: auto;
	}
}
.modProductConfigure .Mod__inner .modProductConfigure__list .modProductConfigure__listItem .textBlock__title {
	font-size: 1.7rem;
}
.modProductConfigure .Mod__inner .modProductConfigure__list .modProductConfigure__listItem .textBlock {
	padding: 1em;
}
.modProductConfigure .Mod__inner .modProductConfigure__list .modProductConfigure__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
	background-color: #EAEAEA;
}

.modProductTechnicalFeatures {
	text-align: center;
	background-color: #eee;
}
.modProductTechnicalFeatures .Mod__inner {
	flex-wrap: wrap;
	display: block;
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__heading .Mod__textBlock .textBlock__desc {
	padding-top: 1em;
	font-weight: 300;
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides {
	width: 100%;
	position: relative;
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides .splide__slide {
	display: flex;
}
@media (max-width: 768px) {
	.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides .splide__slide {
		flex-direction: column;
	}
	.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides .splide__slide .Mod__textBlock .textBlock .textBlockHeading {
		text-align: center;
	}
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides .splide__slide .Mod__textBlock {
	order: 2;
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides .splide__slide .Mod__textBlock .textBlockHeading {
	text-align: left;
}
.modProductTechnicalFeatures .Mod__inner .modProductTechnicalFeatures__wrapperSlides .splide__slide .Mod__textBlock .textBlockHeading .textBlock__title {
	font-size: 1.8rem;
	font-weight: 500;
}

.modProductDescription .Mod__inner {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.modProductDescription .Mod__inner .Mod__textBlock {
	width: 100%;
	padding: 3vw 14vw 0vw 14vw;
}
@media (max-width: 768px) {
	.modProductDescription .Mod__inner .Mod__textBlock {
		padding: 0;
	}
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__title {
	font-weight: 300;
	font-size: 3.5rem;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__designer {
	margin-top: 1em;
	text-transform: uppercase;
	font-weight: 300;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__subtitle {
	margin-top: 1em;
	font-weight: 300;
	font-size: 2.2rem;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 4em;
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockButtons {
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 2em;
	display: flex;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item {
	display: inline-block;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item .btn {
	min-width: 144px;
}
.modProductDescription .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
	margin: 0 0 0 20px;
}
@media (max-width: 768px) {
	.modProductDescription .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
		margin: 20px 0 0 0px;
	}
}
.modProductDescription .collapsible__btn {
	border: 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #3e3e3e;
}
.modProductDescription .collapsible__btn.active {
	display: none;
}
.modProductDescription.modProductDescription--open .content__collapse {
	max-height: none;
}
.modProductDescription.modProductDescription--open .collapsible__btn {
	display: none;
}
.modProductDescription .collapsible__btn:hover {
	color: #a4a4a4;
}

.modProductDescriptionAndDownload {
	background: linear-gradient(30deg, #f7f4ee, #d3c9c2);
	margin-bottom: 8vw;
}
.modProductDescriptionAndDownload .container {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}
.modProductDescriptionAndDownload .textBlock__titleDownload {
	text-align: left;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.8rem;
}
.modProductDescriptionAndDownload .Mod__inner {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
	text-align: center;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock {
	padding: 6vw 6vw;
	width: 30%;
	max-width: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.05);
	flex-direction: column;
}
@media (max-width: 768px) {
	.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock {
		width: 100%;
		max-width: 100%;
		order: 2;
	}
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .Mod__downloadBlockList {
	width: 100%;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .textBlockButtons {
	width: 100%;
	margin-top: 40px;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .textBlockButtons__item a {
	width: 100%;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .modProductDownloads__link {
	border-top: 1px solid #9b9993;
	padding: 12px 0;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #222222;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .modProductDownloads__link:hover {
	color: #012858;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .modProductDownloads__link .Mod__textBlock {
	padding: 0;
	width: auto;
	height: auto;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .modProductDownloads__link .Mod__textBlock .textBlock {
	padding: 0;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .modProductDownloads__link .Mod__textBlock .textBlock .textBlock__desc {
	margin-top: 0;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__downloadBlock .modProductDownloads__listItem:last-child {
	border-bottom: 1px solid #9b9993;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock {
	height: 100%;
	width: 70%;
	padding: 3vw 6vw 3vw 6vw;
	text-align: left;
}
@media (max-width: 768px) {
	.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock {
		padding: 4vw 7vw;
	}
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__title {
	font-weight: 300;
	font-size: 3.5rem;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__designer {
	margin-top: 1em;
	text-transform: uppercase;
	font-weight: 300;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__subtitle {
	margin-top: 1em;
	font-weight: 300;
	font-size: 2.2rem;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 1em;
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockButtons {
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	display: flex;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item {
	display: inline-block;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item .btn {
	min-width: 144px;
}
.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
	margin: 0 0 0 20px;
}
@media (max-width: 768px) {
	.modProductDescriptionAndDownload .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
		margin: 20px 0 0 0px;
	}
}
.modProductDescriptionAndDownload .collapsible__btn {
	border: 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #3e3e3e;
}
.modProductDescriptionAndDownload .collapsible__btn.active {
	display: none;
}
.modProductDescriptionAndDownload.modProductDescription--open .content__collapse {
	max-height: none;
}
.modProductDescriptionAndDownload.modProductDescription--open .collapsible__btn {
	display: none;
}
.modProductDescriptionAndDownload .collapsible__btn:hover {
	color: #a4a4a4;
}

.modDesigner.inverted .Mod__inner > .Mod__imgBlock {
	order: 2;
}
@media (max-width: 768px) {
	.modDesigner.inverted .Mod__inner > .Mod__imgBlock {
		order: initial;
	}
}
.modDesigner .Mod__imgBlock {
	width: 40%;
}
.modDesigner .Mod__imgBlock img {
	object-fit: initial;
	height: auto;
}
.modDesigner .Mod__textBlock {
	width: 60%;
}
.modDesigner .Mod__textBlock .textBlock .textBlock__title {
	font-weight: 300;
}
.modDesigner .Mod__textBlock .textBlock .textBlock__title b,
.modDesigner .Mod__textBlock .textBlock .textBlock__title strong {
	font-weight: 400;
}
.modDesigner .Mod__textBlock .textBlock .textBlock__subtitle {
	font-weight: 100;
	font-size: 1.8rem;
}
.modDesigner .Mod__textBlock .textBlock .textBlock__desc {
	padding: 4vw;
	font-weight: 300;
	font-size: 1.6rem;
}
@media (max-width: 768px) {
	.modDesigner .Mod__textBlock .textBlock {
		padding-left: 0;
		padding-right: 0;
	}
	.modDesigner .Mod__textBlock .textBlock .textBlock__desc {
		padding-left: 0;
		padding-right: 0;
	}
	.modDesigner .Mod__textBlock .textBlock .splide__arrows {
		display: none;
	}
}
.modDesigner .splideGrid .Mod__imgBlock {
	width: auto;
}
.modDesigner .splideGrid .Mod__textBlock {
	width: 100%;
}
.modDesigner .splideGrid .Mod__textBlock .textBlock {
	padding: 0.6em 0;
	font-size: 1.4rem;
}
.modDesigner .splideGrid .Mod__textBlock .textBlock .textBlock__title {
	font-size: 1.4rem;
}

.modDesigner .splideGrid .Mod__textBlock .textBlock .textBlock__title {
	text-align: center;
}

.Mod.modDesigner .splide__pagination {
	padding: 0 4vw;
	border-top: 1px solid #eaeaea;
	padding-top: 16px;
	bottom: -30px;
}
.Mod.modDesigner .splide__arrow.splide__arrow--next {
	top: -40px;
	left: 50px;
}
.Mod.modDesigner .splide__arrow.splide__arrow--prev {
	top: -40px;
	left: 0;
}
.Mod.modDesigner .splide__arrow:disabled {
	display: flex;
	opacity: 0.1;
}

.modDiscoverAlso {
	text-align: center;
}
.modDiscoverAlso .splide {
	margin: 0 auto;
	/* Centra il carosello */
}
.modDiscoverAlso .splide__list {
	margin: 0 auto !important;
}
.modDiscoverAlso .btn.ternary {
	font-size: 1.6rem;
	font-weight: 400;
}
.modDiscoverAlso .Mod__inner {
	padding: 2em;
	padding-bottom: 4em;
	display: block;
	text-align: center;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__heading .Mod__textBlock .textBlock {
	padding: 1em;
	padding-bottom: 4em;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__heading .Mod__textBlock .textBlock .textBlock__title {
	font-weight: 300;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__heading .Mod__textBlock .textBlock .textBlock__desc {
	font-weight: 400;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides {
	width: 100%;
	position: relative;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock .textBlock {
	width: 100%;
	padding: 1em;
	padding-top: 0;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock .textBlock .textBlockButtons {
	margin-top: 0;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock .textBlock .textBlockButtons .textBlockButtons__item .btn.ternary {
	display: block;
	margin-top: -2px;
	padding-top: 24px;
	padding-bottom: 8px;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock .textBlock .modDiscoverAlso__linkImg {
	display: block;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock .textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 0;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__textBlock .textBlock .textBlock__subtitle {
	display: none;
}
.modDiscoverAlso .Mod__inner .modDiscoverAlso__wrapperSlides .Mod__imgBlock {
	width: auto;
	justify-content: center;
	margin-left: 20px;
	margin-right: 20px;
}

.modDiscoverProduct {
	background: url("");
	background: #b28e3d url("../images/discover_product_tile_small.jpg") 0% 0% repeat;
}
.modDiscoverProduct .Mod__inner {
	padding: 2em;
	display: block;
}
@media (max-width: 768px) {
	.modDiscoverProduct .Mod__inner {
		padding: 0;
	}
	.modDiscoverProduct .Mod__inner .modDiscoverProduct__label {
		display: none;
	}
}
.modDiscoverProduct .Mod__inner .Tab__numberPhone {
	font-size: 22px;
	margin: 1em;
}
.modDiscoverProduct .Mod__inner .Tab__numberPhone button, .modDiscoverProduct .Mod__inner .Tab__numberPhone input, .modDiscoverProduct .Mod__inner .Tab__numberPhone input:focus {
	border: 0;
	background: none;
	outline: none;
}
.modDiscoverProduct .Mod__inner .Tab__numberPhone span {
	margin-right: 16px;
	display: inline-block;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__heading .Mod__textBlock .textBlock {
	width: 100%;
	color: #fff;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__heading .Mod__textBlock .textBlock__title {
	font-weight: 500;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__heading .Mod__textBlock .textBlock__desc {
	padding-top: 0;
	font-weight: 300;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs {
	text-align: center;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__tabs {
	display: flex;
	width: 100%;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__wrapper {
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f7f7f7 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #00000022;
	max-width: 800px;
	min-height: 200px;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__tab {
	cursor: pointer;
	padding: 20px 20px;
	margin: 10px 2px;
	flex: 0 1 33.33334%;
	color: #3E3E3E;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__tab span {
	margin-right: 8px;
	color: #3E3E3E;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__tab + .Tabs__tab {
	border-left: 1px solid #3e3e3e;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__panels {
	width: 100%;
	border-radius: 3px;
	overflow: hidden;
	padding: 20px;
	border-top: 1px solid #3e3e3e;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__panel {
	display: none;
	animation: fadein 0.8s;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs .Tabs__radio {
	display: none;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs #whatsapp:checked ~ .Tabs__panels #whatsapp-panel,
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs #meeting:checked ~ .Tabs__panels #meeting-panel,
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs #mail:checked ~ .Tabs__panels #mail-panel {
	display: block;
}
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs #whatsapp:checked ~ .Tabs__tabs #whatsapp-tab,
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs #meeting:checked ~ .Tabs__tabs #meeting-tab,
.modDiscoverProduct .Mod__inner .modDiscoverProduct__tabs #mail:checked ~ .Tabs__tabs #mail-tab {
	color: #000;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.modImgButtons {
	background-color: #eeeeee;
}
.modImgButtons .Mod__inner {
	padding: 3em 7em;
	display: block;
}
@media (max-width: 768px) {
	.modImgButtons .Mod__inner {
		padding: 0;
		padding-top: 3em;
	}
}
.modImgButtons .Mod__inner .modImgButtons__heading .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modImgButtons .Mod__inner .modImgButtons__heading .Mod__textBlock .textBlock {
	width: 100%;
}
.modImgButtons .Mod__inner .modImgButtons__heading .Mod__textBlock .textBlock__desc {
	padding-top: 0;
	font-weight: 300;
}
.modImgButtons .Mod__inner .modImgButtons__imgLink {
	display: block;
}
.modImgButtons .Mod__inner .modImgButtons__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0;
	padding-bottom: 3em;
}
@media (max-width: 768px) {
	.modImgButtons .Mod__inner .modImgButtons__list {
		flex-direction: column;
	}
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem {
	flex: 0 0 33%;
	display: inline-block;
	padding: 10px 10px 60px 10px;
	text-align: center;
	justify-content: center;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .modImgButtons__link {
	display: inline-block;
	text-align: center;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .modImgButtons__linkImg {
	display: block;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .Mod__textBlock {
	width: 100%;
	text-align: center;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .Mod__textBlock .textBlock {
	padding: 0;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .Mod__textBlock .textBlock .textBlockButtons {
	margin-top: 0;
	font-size: 1.6rem !important;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .Mod__textBlock .textBlock .textBlockButtons .textBlockButtons__item .btn.ternary {
	display: block;
	margin-top: -2px;
	padding-bottom: 8px;
}
.modImgButtons .Mod__inner .modImgButtons__list .modImgButtons__listItem .Mod__imgBlock {
	width: 100%;
	display: inline-block;
	justify-content: center;
	padding-bottom: 20px;
}

/* common m odules */
.modBudget {
	font-size: 1.6rem;
	padding: 4em 0;
	padding-top: 0;
}
@media (max-width: 768px) {
	.modBudget .submit-btn {
		width: 100%;
	}
}
.modBudget .containerBudget {
	max-width: 1024px;
}
.modBudget .rowForm {
	display: flex;
	margin-left: -20px;
	margin-right: -20px;
}
@media (max-width: 768px) {
	.modBudget .rowForm {
		flex-direction: column;
		margin-top: 0px;
	}
}
.modBudget .rowForm--inline {
	flex-direction: initial;
}
@media (max-width: 768px) {
	.modBudget .rowForm--inline {
		flex-direction: column;
		margin-top: 0px;
	}
}
@media (max-width: 768px) {
	.modBudget .rowForm--inline .fieldBlock--33 {
		width: 100%;
	}
}
.modBudget .rowForm .fieldBlock {
	padding: 0 20px;
	padding-top: 20px;
	display: inline-block;
}
.modBudget .rowForm .fieldBlock label {
	display: block;
}
@media (max-width: 768px) {
	.modBudget .rowForm .fieldBlock {
		margin-top: 20px;
	}
}
.modBudget .rowForm .fieldBlock--50 {
	width: 50%;
}
@media (max-width: 768px) {
	.modBudget .rowForm .fieldBlock--50 {
		width: 100%;
	}
}
.modBudget .rowForm .fieldBlock--nopadding {
	padding-top: 0px;
}
.modBudget .rowForm .fieldBlock--100 {
	width: 100%;
}
.modBudget .rowForm .fieldBlock--33 {
	width: 33.3334%;
}
@media (max-width: 768px) {
	.modBudget .rowForm .fieldBlock--33 {
		width: 100%;
	}
}
.modBudget .rowForm--sub {
	margin-top: 0;
}
.modBudget .rowForm--submit {
	justify-content: center;
}
.modBudget .j-jobForm .jobArea,
.modBudget .j-jobForm .jobLang,
.modBudget .j-jobForm .uploadCV {
	margin-top: 20px;
	margin-bottom: 20px;
}
.modBudget .j-jobForm .jobArea > label,
.modBudget .j-jobForm .jobLang > label,
.modBudget .j-jobForm .uploadCV > label {
	display: block;
}
@media (max-width: 768px) {
	.modBudget .j-jobForm .jobArea > div,
.modBudget .j-jobForm .jobLang > div,
.modBudget .j-jobForm .uploadCV > div {
		display: block;
	}
}
.modBudget .j-jobForm .readMoreJob {
	display: block;
	margin-top: 15px;
}
.modBudget .j-jobForm .jobLangTitle,
.modBudget .j-jobForm .jobAreaTitle {
	display: block !important;
	margin-bottom: 4px;
}
.modBudget .j-jobForm .wallRow.formRow9 p {
	font-size: 1.5rem;
}
.modBudget .j-jobForm .wallRow.formRow9 + .wallRow.formRow1 {
	margin-top: 20px;
	width: 50%;
	padding-right: 20px;
}
.modBudget .j-jobForm .wallRow.formRowUpload {
	margin-top: 20px;
	width: 100%;
	padding-right: 20px;
}
@media (max-width: 768px) {
	.modBudget .j-jobForm .wallRow.formRowUpload {
		padding-right: 0;
	}
}
.modBudget .j-jobForm .wallRow.formRowUpload .fieldBlock--study {
	width: 50%;
}
@media (max-width: 768px) {
	.modBudget .j-jobForm .wallRow.formRowUpload .fieldBlock--study {
		width: 100%;
	}
}
.modBudget .j-jobForm .wallRow.formRowUpload #fileList .info {
	font-weight: 500;
	padding: 10px 0 0 0;
}
.modBudget .j-jobForm .wallRow.formRow7 label {
	font-size: 22px;
}
.modBudget .j-jobForm .jobPosWrapper {
	margin-top: 20px;
	margin-bottom: 40px;
}
.modBudget .j-jobForm .jobPosWrapper .wp2.fieldBlock p {
	padding-left: 22px;
	font-size: 1.6rem;
}
.modBudget .j-jobForm .jobPosWrapper > div {
	position: relative;
}
.modBudget .j-jobForm .jobPosWrapper > div .jobPosCheck {
	position: absolute;
	left: 0;
	top: 0;
}
.modBudget .j-jobForm .jobPosWrapper > div .jobPosLabel {
	margin-left: 22px;
	font-weight: 600;
}
.modBudget .j-jobForm .jobPosWrapper > div > div {
	display: inline-block;
}
.modBudget .j-jobForm input[type=checkbox] + label {
	margin-left: 2px;
}
.modBudget .j-jobForm input[type=file]::file-selector-button {
	border: 1px solid #3e3e3e;
	padding: 11px 20px;
	background-color: transparent;
	color: #3e3e3e;
	font-size: 1.4rem;
	display: inline-block;
	font-style: normal;
	text-decoration: none;
	transition: 0.3s;
	margin-right: 14px;
}
.modBudget .j-jobForm input[type=file]::file-selector-button:hover {
	border: 1px solid #012857;
	color: #fff;
	background-color: #012857;
}
.modBudget .j-jobForm .jobPosCheck + .jobPosLabel {
	margin-left: 2px;
}

.genericSuccess,
.genericError {
	line-height: 2em;
	font-size: 20px;
	font-weight: 300;
	margin-top: 30px;
}

textarea.drawYourSpace__textArea {
	padding: 0 4px;
	height: 160px;
	width: auto;
	background-color: #fff;
	color: #222;
	width: 100%;
	font-size: 13px;
	border: 1px solid #ccc;
}

.drawYourSpace__choiceType {
	font-size: 1.8rem;
	padding-bottom: 8px;
	font-weight: 300;
}

.drawYourSpace__groupRadio label {
	display: inline-block !important;
	vertical-align: middle;
	margin-right: 30px;
}
.drawYourSpace__groupRadio label input {
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}
.drawYourSpace__groupRadio label span {
	display: inline-block;
	vertical-align: middle;
}
.drawYourSpace__groupRadio label img {
	width: 20px;
	display: inline-block;
	vertical-align: middle;
	height: auto;
}

.drawYourSpace__contact {
	font-weight: 400;
}

.drawYourSpace__link img {
	width: 22px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}

.j-genericDrawAlert {
	text-align: center;
	display: block;
}

.fieldBlock__inlineSubmit {
	display: flex;
	justify-content: center;
	align-items: center;
}
.fieldBlock__inlineSubmit .supportForm__input {
	border: 1px solid #3e3e3e;
	border-right: 0;
	max-width: 300px;
}
.fieldBlock__inlineSubmit .btn {
	border: 1px solid #3e3e3e;
}

.fieldBlock--flex {
	display: flex;
	align-items: center;
	gap: 20px;
}

.jobLang legend, .jobArea legend {
	margin-bottom: 4px;
	font-weight: 300;
}

.fieldBlock--study label, .uploadCV label {
	display: block;
	padding-bottom: 4px;
	font-weight: 300;
}

.containerBudget {
	font-weight: 300;
}

.modMattressCard {
	border-radius: 20px;
	background-color: #f1f1f1;
	border: 1px solid #bcbcbc;
}
.modMattressCard .rigidityItem {
	margin-right: 20px;
	display: flex;
	white-space: nowrap;
	flex-wrap: nowrap;
	align-items: center;
}
.modMattressCard .rigidityLabel {
	margin-right: 20px;
}
.modMattressCard .Mod__inner {
	padding-top: 0;
	padding-bottom: 0;
	flex-direction: column;
}
@media (max-width: 768px) {
	.modMattressCard .modMattressCard__wrapperDesktopButtons {
		display: none;
	}
}
.modMattressCard .modMattressCard__wrapperMobileButtons {
	display: none;
}
.modMattressCard .modMattressCard__wrapperMobileButtons .textBlockButtons {
	justify-content: space-between;
}
@media (max-width: 768px) {
	.modMattressCard .modMattressCard__wrapperMobileButtons {
		display: block;
		margin-bottom: 20px;
	}
	.modMattressCard .modMattressCard__wrapperMobileButtons .textBlockButtons {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 16px;
	}
	.modMattressCard .modMattressCard__wrapperMobileButtons .textBlockButtons .btn {
		padding: 10px 14px;
		white-space: nowrap;
	}
	.modMattressCard .modMattressCard__wrapperMobileButtons .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
		margin-top: 0;
	}
}
.modMattressCard .modMattressCard__wrapperHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	width: 100%;
	margin-top: 25px;
}
@media (max-width: 768px) {
	.modMattressCard .modMattressCard__wrapperHeader {
		padding: 20px;
		padding-top: 0;
	}
}
.modMattressCard .modMattressCard__wrapperHeader .textBlock {
	margin-left: 0;
	margin-top: 0;
	width: 50%;
}
@media (max-width: 768px) {
	.modMattressCard .modMattressCard__wrapperHeader .textBlock {
		width: 100%;
	}
}
.modMattressCard .modMattressCard__wrapperHeader .textBlock .textBlock__title {
	margin: 0;
	padding: 0;
	font-size: 2.5rem;
	font-weight: 500;
}
.modMattressCard .modMattressCard__wrapperHeader .textBlockButtons {
	display: flex;
	margin-top: 0;
	align-items: center;
	gap: 18px;
}
.modMattressCard .modMattressCard__wrapperHeader .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
	margin: 0;
}
.modMattressCard .maMattressCard__wrapperContent {
	display: flex;
	padding: 30px;
	gap: 20px;
	/*position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;*/
}
@media (max-width: 768px) {
	.modMattressCard .maMattressCard__wrapperContent {
		padding: 20px;
		padding-top: 0;
	}
}
.modMattressCard .Mod__imgBlock {
	width: 100%;
}
.modMattressCard .Mod__textBlock {
	width: 100%;
}
.modMattressCard .Mod__textBlock .textBlock {
	margin-left: 0;
	margin-top: 0;
	padding: 0;
}
@media (max-width: 768px) {
	.modMattressCard .Mod__textBlock .textBlock {
		padding-left: 0;
		padding-right: 0;
	}
}
.modMattressCard.inverted .Mod__imgBlock {
	order: 2;
}
.modMattressCard.fullWidth .Mod__inner {
	padding: 0;
}

.maDetailsWrapper {
	width: 50%;
	padding: 30px 48px;
	background-color: #fff;
}
@media (max-width: 768px) {
	.maDetailsWrapper {
		background-color: transparent;
		padding: 0;
	}
}
.maDetailsWrapper .textBlock__desc {
	margin-bottom: 15px;
	font-weight: 300;
}

.mattressInfoWrapper {
	background-color: #fff;
	width: 50%;
	padding: 30px 46px;
}

.maDetails {
	display: block;
	/*position: absolute;
	  bottom: 80px;
	  right: 40px;*/
	margin: 10px 0 0 0;
	text-shadow: none;
}
.maDetails .rigidity {
	width: 100%;
	display: flex;
	margin: 10px 0;
	align-items: center;
	flex-wrap: wrap;
}
@media (max-width: 768px) {
	.maDetails .rigidity {
		width: 100%;
	}
}
.maDetails .rigidity img {
	display: inline-block;
	width: 50px;
	margin-left: 10px;
}
.maDetails .maSize table {
	border-collapse: collapse;
	width: 100%;
}
.maDetails .maSize table tbody tr {
	border-bottom: 1px solid #aaa6a3;
	opacity: 0.9;
}
.maDetails .maSize table tbody tr.first-row {
	background-color: #f9f8f6;
}
.maDetails .maSize table tbody tr.second-row {
	background-color: #f5f1ee;
}
.maDetails .maSize table tbody tr.third-row {
	background-color: #eeeae7;
}
.maDetails .maSize table tbody tr td {
	color: #3E3E3E;
	font-size: 0.7em;
	font-weight: 300;
	text-align: center;
	/*padding:10px 33px 3px 20px;*/
	padding: 2px 1px;
}
.maDetails .maSize table tbody tr td:first-child {
	border-right: 1px solid #aaa6a3;
	text-align: left;
	padding: 2px 4px;
}
.maDetails .maSize table tbody tr td.noBorderChart {
	border-right: 0;
	text-align: left;
	font-size: 0.8em;
}
.maDetails .maSize table tbody tr.mobile-rigidity {
	display: none;
}
.maDetails .maSize table tbody tr.mobile-rigidity td {
	border: none;
}
.iconList {
	margin-top: 16px;
}
.iconList:before, .iconList:after {
	display: table;
	content: " ";
}
.iconList:after {
	clear: both;
}
.iconList img {
	width: 7%;
	height: auto;
	display: block;
	float: left;
	margin-left: 0.75%;
	opacity: 0.8;
	border-bottom: 1px solid transparent;
	-moz-transition: opacity 0.1s ease-in-out;
	-o-transition: opacity 0.1s ease-in-out;
	-webkit-transition: opacity 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out;
}
.iconList img:first-child {
	margin-left: 0;
}

.info__mattress {
	bottom: 10%;
	left: auto;
	padding: 20px;
	z-index: 9;
	overflow: auto;
}
.info__mattress .primary_title {
	font-size: 1.2em;
	font-weight: 100;
}
.info__mattress .title {
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.3;
	float: left;
	width: 100%;
}
@media (max-width: 768px) {
	.info__mattress .title {
		font-size: 1.5em;
	}
}
.info__mattress .title a {
	background-color: transparent;
	border: none;
	text-align: left;
	font-size: 1em;
	float: left;
	display: block;
	text-decoration: none;
}
.info__mattress h2 {
	font-weight: 400;
	line-height: 0.9em;
}
.info__mattress * + .desc {
	padding-top: 15px;
}
.info__mattress .mattressInfoItem__wrapper {
	display: flex;
	flex-direction: row;
	gap: 40px;
}
.info__mattress .mattressInfoItem__title {
	font-size: 1.2em;
	margin-bottom: 10px;
	font-weight: 400;
}
.info__mattress .desc {
	width: 100%;
	font-size: 0.8em;
	font-weight: 300;
	line-height: 1.5em;
}
.info__mattress .desc * + p {
	padding-top: 15px;
}
.info__mattress .desc .mattressInfoItem__img {
	max-width: 50%;
	height: auto;
	float: right;
	padding: 5px 0px 10px 10px;
}
@media (max-width: 768px) {
	.info__mattress .desc {
		font-size: 0.7em;
	}
}
.info__mattress .desc .dimTitle {
	font-weight: 700;
}
.info__mattress .desc img {
	margin-top: 10px;
}
.info__mattress .buttonWrapper {
	width: auto;
	border: 1px solid white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	margin-top: 10px;
	text-align: left;
	display: inline-block;
}
.info__mattress .buttonWrapper a {
	background-color: transparent;
	color: inherit;
	font-size: 0.8em;
	font-weight: 300;
	padding: 8px 30px 8px 8px;
	position: relative;
	text-decoration: none;
	vertical-align: middle;
	display: block;
}
.info__mattress .buttonWrapper a .arrowRight {
	display: inline-block;
	padding-right: 5px;
	right: 0px;
	top: 10px;
	position: absolute;
	font-size: 0.7em;
}
.info__mattress .buttonWrapper:hover {
	background-color: white;
	color: #5f5f63;
	text-shadow: none;
}
.info__mattress .buttonWrapper:hover a {
	color: black;
}

.info__mattress {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 10px;
	overflow: visible;
	padding: 0;
}
.info__mattress .mattressInfo__text {
	/*position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 0;*/
	overflow: auto;
}
@media (max-width: 768px) {
	.info__mattress .mattressInfo__text {
		position: relative;
		left: 0;
		padding-right: 0;
	}
}
.info__mattress .desc {
	font-size: 0.7em;
	padding-top: 0;
}
.info__mattress .desc img {
	margin-top: 0;
}
.info__mattress .mattressInfoItem + .mattressInfoItem {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #c3c3c3;
}

@media (max-width: 768px) {
	.mattressCompactCard {
		width: 100%;
	}
}
.mattressCompactCard .maMattressCard__wrapperContent {
	position: absolute;
	top: 0;
	z-index: 2;
	width: 100%;
}
@media (max-width: 768px) {
	.mattressCompactCard .maMattressCard__wrapperContent {
		padding-top: 0;
	}
}
.mattressCompactCard .maMattressCard__wrapperContent .Mod__textBlock {
	width: 100%;
	top: 0;
	position: relative;
}
.mattressCompactCard .maMattressCard__wrapperContent .maDetailsWrapper {
	position: relative;
}
.mattressCompactCard .Mod__inner {
	display: block;
}
.mattressCompactCard .blockHalfMattress__infoMattressDescription {
	padding-left: 8px;
	display: table-cell;
	font-size: 10px;
	line-height: 12px;
	position: relative;
	white-space: normal;
}
.mattressCompactCard .info__mattress {
	bottom: 20px;
	left: 40px;
	width: auto;
	right: 50px;
	top: auto;
	min-height: 140px;
}
.mattressCompactCard .mattressInfo__text {
	/*top: 0;
	left: 0;
	right: 0;
	bottom: 0;*/
	padding: 10px;
	position: relative;
	overflow: initial;
	display: flex;
}
.mattressCompactCard .mattressInfo__text .desc {
	display: table;
	vertical-align: top;
	width: auto;
	float: none;
	color: #000;
	font-size: 10px;
}
.mattressCompactCard .mattressInfo__text .mattressInfoItem__img {
	vertical-align: top;
	display: inline-block;
	width: auto;
	float: none;
	max-width: 120px;
	height: auto;
	flex-grow: unset;
	padding: 0;
}

@media (max-width: 768px) {
	.mattress .modGalleryModules .splide__pagination {
		bottom: 30px;
	}

	.modMattressCard .maMattressCard__wrapperContent {
		position: relative;
		width: 100%;
	}
	.modMattressCard .maMattressCard__wrapperContent .textBlock {
		margin: 0;
	}
	.modMattressCard .maMattressCard__wrapperContent .maDetailsWrapper {
		position: relative;
		bottom: 0;
		width: 100%;
	}
	.modMattressCard .mattressInfoWrapper {
		display: none;
	}
	.modMattressCard .mattressInfoWrapper .info__mattress.ge_im {
		position: relative;
		width: 100%;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
	}
	.modMattressCard .mattressInfoWrapper .info__mattress.ge_im .mattressInfo__text {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}
	.modMattressCard .mattressInfoWrapper .info__mattress.ge_im .mattressInfo__text .mattressInfoItem .mattressInfoItem__title {
		margin-top: 2em;
	}
}
.leonardoPage {
	/*.info__mattress {
	  width: 35%;
	}
	.mattressInfoItem {
	  .desc .mattressInfoItem__img {
	    padding: 30px 30px 10px 30px;
	    width: 100%;
	    max-width: 100%;
	    display: block;
	    float: none;
	  }
	  .desc {
	    font-size: 0.9em;
	  }
	  .blockHalfMattress__infoMattressDescription {
	    margin-top: 10px;
	    padding: 0 30px;
	  }
	}*/
}

.modTwoModules > .Mod__inner {
	display: flex;
}

.modMapRetailer {
	position: relative;
}
.modMapRetailer .infoPointRetailer {
	top: 64px;
	bottom: auto;
	left: 32px;
	box-shadow: none;
}
@media (max-width: 768px) {
	.modMapRetailer .infoPointRetailer {
		padding-left: 0;
		padding-right: 0;
		top: auto;
		bottom: auto;
		position: relative;
		left: auto;
		right: auto;
	}
}

.retailerMapWrapper {
	width: 100%;
	height: 525px;
}

.infoPointRetailer {
	padding: 30px;
}
.infoPointRetailer .infoPointRetailer__addressWrapper > * + * {
	margin-top: 3px;
	vertical-align: middle;
}

.retailerGallery .infoPointRetailer {
	color: #3e3e3e;
	min-height: 140px;
	position: absolute;
	bottom: 0;
	right: 60px;
	z-index: 1;
	background: #fff;
	padding: 12px 24px;
	font-size: 9px;
	line-height: 12px;
	font-size: 11px;
	line-height: 15px;
	min-width: 270px;
	max-width: 300px;
	padding: 14px 26px;
	background: rgba(255, 255, 255, 0.8);
}
.retailerGallery .infoPointRetailer .infoPointRetailer__wrapperBtn {
	text-align: center;
}
.retailerGallery .infoPointRetailer .infoPointRetailer__addressWrapper > * + * {
	margin-top: 3px;
	vertical-align: middle;
}
@media (max-width: 768px) {
	.retailerGallery .infoPointRetailer {
		width: auto;
		max-width: none;
		margin: 0;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
}

@media (max-width: 768px) {
	.retailerGallery .Mod__textBlock .textBlock {
		padding-bottom: 260px;
	}
}
.retailerGallery .Mod__textBlock {
	align-items: flex-start;
}
.retailerGallery .Mod__textBlock .textBlock {
	text-align: left;
	max-width: 1182px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}
.retailerGallery .Mod__textBlock .textBlock .textBlock__title {
	font-weight: 400;
}
.retailerGallery .Mod__textBlock .textBlock .textBlockHeading {
	width: 50%;
}
@media (max-width: 768px) {
	.retailerGallery .Mod__textBlock .textBlock .textBlockHeading {
		width: 100%;
	}
}

.infoPointRetailer__addressWrapper {
	margin-top: 8px;
}

.infoPointRetailer__title {
	line-height: 20px;
	font-size: 18px;
	font-weight: 700;
	margin-top: 4px;
}
@media (max-width: 768px) {
	.infoPointRetailer__title {
		font-size: 16px;
	}
}

.infoPointRetailer__btnCta {
	margin-top: 24px;
}

.infoPointRetailer__wrapperBtn {
	margin-top: 20px;
}

.infoPointRetailer__appointment {
	font-weight: 500;
	margin-left: 20px;
}

.modLibrary {
	/* skin application */
}
.modLibrary .Mod__inner {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.modLibrary .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modLibrary .Mod__inner .Mod__textBlock .textBlock {
	padding: 4em 20vw;
}
@media (max-width: 768px) {
	.modLibrary .Mod__inner .Mod__textBlock .textBlock {
		padding: 4em 2vw;
	}
}
.modLibrary .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 2em;
}
.modLibrary .Mod__inner .Mod__textBlock .textBlockButtons {
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 3em;
	display: flex;
}
.modLibrary .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item {
	display: inline-block;
}
.modLibrary .Mod__inner .Mod__textBlock .textBlockButtons .textBlockButtons__item + .textBlockButtons__item {
	margin: 0 0 0 20px;
}
.modLibrary #root {
	width: 100%;
}
.modLibrary .AppSample {
	background-color: transparent;
}
.modLibrary .AppSample .navigation__summary {
	display: none;
}
.modLibrary .AppSample .navigation__shadowWrapper {
	background-color: transparent;
}
.modLibrary .AppSample .navigation__listWrapper {
	background-color: transparent;
}
.modLibrary .AppSample .navigation__favorites {
	visibility: hidden;
}
.modLibrary .AppSample .library__container {
	max-height: 800px;
	overflow: auto;
}
.modLibrary .AppSample .itemLibrary__btnPrefered {
	display: none;
}

.modSupportForm .Mod__inner {
	text-align: center;
	display: block;
}
.modSupportForm .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modSupportForm .Mod__inner .Mod__textBlock .textBlock {
	padding: 4em 20vw;
}
@media (max-width: 768px) {
	.modSupportForm .Mod__inner .Mod__textBlock .textBlock {
		padding: 4em 2vw;
	}
}
.modSupportForm .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 2em;
}
.modSupportForm__errorMsg {
	padding: 20px 10px;
	color: #861407;
}

.modConfiguratorForm .Mod__inner {
	margin-top: 0;
	padding-top: 0;
	display: block;
}
.modConfiguratorForm .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modConfiguratorForm .Mod__inner .Mod__textBlock .textBlock {
	padding: 4em 20vw;
	padding-top: 0;
	margin-top: 0;
}
@media (max-width: 768px) {
	.modConfiguratorForm .Mod__inner .Mod__textBlock .textBlock {
		padding: 4em 2vw;
	}
}
.modConfiguratorForm .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 2em;
}
.modSupportForm__errorMsg {
	padding: 20px 10px;
	color: #861407;
}

.modRemForm .Mod__inner {
	text-align: center;
	display: block;
	padding-top: 0;
	padding-bottom: 0;
	flex-direction: column;
}
.modRemForm .Mod__inner .Mod__textBlock {
	width: 100%;
}
.modRemForm .Mod__inner .Mod__textBlock .textBlock {
	padding: 4em 20vw;
}
@media (max-width: 768px) {
	.modRemForm .Mod__inner .Mod__textBlock .textBlock {
		padding: 4em 2vw;
	}
}
.modRemForm .Mod__inner .Mod__textBlock .textBlockHeading .textBlock__desc {
	margin-top: 2em;
}
.modSupportForm__errorMsg {
	padding: 20px 10px;
	color: #861407;
}

.modFabricDetail {
	background-color: #f2f0ef;
}
.modFabricDetail .Mod__inner {
	padding: 8vw;
	display: block;
}
.modFabricDetail .Mod__inner .modFabricDetail__content .textBlock__title {
	font-weight: 500;
}
.modFabricDetail .Mod__inner .modFabricDetail__content .textBlock__subtitle {
	font-size: 1.6rem;
}
.modFabricDetail .Mod__inner .modFabricDetail {
	position: relative;
	display: flex;
}
.modFabricDetail .Mod__inner .modFabricDetail__img {
	width: 100%;
	max-height: auto;
}
.modFabricDetail .Mod__inner .modFabricDetail__imageWrapper {
	display: inline-block;
	box-sizing: border-box;
	width: 50%;
	flex: 1;
}
.modFabricDetail .Mod__inner .modFabricDetail__detailPanel {
	box-sizing: border-box;
	width: 50%;
	padding-left: 36px;
	vertical-align: top;
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.modFabricDetail .Mod__inner .modFabricDetailContent {
	flex: 1 0 0;
}
.modFabricDetail .Mod__inner .modFabricDetail__title {
	color: #012857;
	margin: 0;
	margin-top: 0;
	font-size: 16px;
	font-weight: 700;
	padding-right: 28px;
}
.modFabricDetail .Mod__inner .modFabricDetail__description {
	margin-top: 16px;
	font-size: 11px;
}
.modFabricDetail .Mod__inner .modFabricDetail__titleSection {
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
	margin-top: 10px;
	font-weight: 600;
	letter-spacing: -0.2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.modFabricDetail .Mod__inner .modFabricDetail__contentSection {
	padding: 0;
	margin: 0;
	margin-top: 2px;
	font-size: 1.6rem;
	font-weight: 300;
}
.modFabricDetail .Mod__inner .modFabricDetail__section {
	margin-top: 20px;
}
.modFabricDetail .Mod__inner .modFabricDetail__maintenanceText {
	font-size: 12px;
	margin-top: 2px;
	display: inline-block;
}
.modFabricDetail .Mod__inner .modFabricDetail__characteristics {
	box-sizing: border-box;
	font-size: #afafaf;
	margin: 0 -10px;
}
.modFabricDetail .Mod__inner .modFabricDetail__characteristicColumn {
	box-sizing: border-box;
	display: inline-block;
	padding: 0 10px;
	vertical-align: top;
	width: 100%;
}
.modFabricDetail .Mod__inner .modFabricDetail__characteristicColumnBorder {
	border-top: 1px solid #3e3e3e;
}
.modFabricDetail .Mod__inner .modFabricDetail__characteristicItem {
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	font-size: 1.6rem;
	padding: 5px 0;
	border-bottom: 1px solid #3e3e3e;
	display: flex;
	justify-content: space-between;
}
.modFabricDetail .Mod__inner .modFabricDetail__dt {
	display: inline-block;
	text-align: left;
	text-transform: uppercase;
	font-weight: 300;
}
.modFabricDetail .Mod__inner .modFabricDetail__dl {
	display: inline-block;
	text-align: right;
	font-weight: 700;
	text-transform: uppercase;
	padding-left: 18px;
}
.modFabricDetail .Mod__inner .iconMaintenance {
	display: inline-block;
	width: 30px;
	margin-right: 10px;
}
.modFabricDetail .Mod__inner .iconMaintenance img {
	display: inline-block;
	width: 100%;
}
.modFabricDetail .Mod__inner .modFabricDetail__wrapperIcons {
	margin-top: 10px;
}
@media all and (max-width: 767px) {
	.modFabricDetail .Mod__inner {
		padding: 8vw 0;
		margin-bottom: 8vw;
	}
	.modFabricDetail .Mod__inner .modFabricDetail {
		position: relative;
		display: block;
	}
	.modFabricDetail .Mod__inner .modFabricDetail__imageWrapper {
		display: inline-block;
		box-sizing: border-box;
		width: 100%;
	}
	.modFabricDetail .Mod__inner .modFabricDetail__detailPanel {
		display: inline-block;
		box-sizing: border-box;
		width: 100%;
		padding-left: 0;
	}
	.modFabricDetail .Mod__inner .modFabricDetail__title {
		margin-top: 16px;
	}
	.modFabricDetail .Mod__inner .modFabricDetail__characteristicColumn {
		box-sizing: border-box;
		display: inline-block;
		width: 100%;
	}
	.modFabricDetail .Mod__inner .modFabricDetail__characteristicColumn + .modFabricDetail .Mod__inner .modFabricDetail__characteristicColumn {
		border-top: 0;
	}
	.modFabricDetail .Mod__inner .modFabricDetail__characteristicColumn + .modFabricDetail .Mod__inner .modFabricDetail__characteristicColumn .modFabricDetail__characteristicColumnBorder {
		border-top: 0;
	}
}

.modListModules {
	/*& + &:nth-child(odd) {
	    margin-top: 120px;
	    background-color: #F2F0EC;
	    padding-bottom: 120px;
	    .modMattressCard {
	        background-color:  #E6E2DC;
	    }


	  }*/
}
.modListModules .modListModules__listItem + .modListModules__listItem {
	margin-top: 40px;
}
.modListModules.modListModules--withNumber .splide__list {
	margin-top: 8em !important;
}
@media (max-width: 768px) {
	.modListModules.modListModules--withNumber .splide__list .splide__slide > .Mod {
		display: flex;
		height: 100%;
	}
	.modListModules.modListModules--withNumber .splide__list .splide__slide > .Mod .Mod__textBlock {
		height: 100%;
		align-items: normal;
	}
	.modListModules.modListModules--withNumber .splide__list .splide__slide .textBlockHeading {
		padding: 1em;
	}
}
@media (max-width: 768px) {
	.modListModules.modListModules--withNumber .splide__arrow {
		display: block;
	}
	.modListModules.modListModules--withNumber .splide__arrow:disabled {
		display: none;
	}
}

.modListModules + .modListModules {
	margin-top: 6em;
}
@media (max-width: 768px) {
	.modListModules + .modListModules {
		margin-top: 20px;
	}
}

/* common m odules */
.modForm {
	font-size: 1.6rem;
	padding: 4em 0;
	padding-top: 0;
}
.modForm .containerModForm {
	max-width: 1024px;
}

.modForm__genericError {
	text-align: center;
	color: #3e3e3e;
	margin-top: -20px;
	scroll-margin-top: 120px;
	min-height: 44px;
	font-weight: 300;
	margin-bottom: 0px;
	font-weight: bold;
}
.modForm__genericError.success {
	font-size: 20px;
}
.modForm__genericError.error {
	color: #f00;
}

.modForm__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	font-weight: 300;
}
@media (max-width: 768px) {
	.modForm__wrapper {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}
.modForm__wrapper label {
	padding-bottom: 6px;
	display: inline-block;
	text-align: left;
}
.modForm__wrapper input[type=text],
.modForm__wrapper input[type=password],
.modForm__wrapper input[type=tel],
.modForm__wrapper input[type=email],
.modForm__wrapper select {
	height: 50px;
	font-weight: 300;
}
.modForm__wrapper select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* Aggiungi una freccia personalizzata */
	background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMjQiIGhlaWdodD0iMTAyNCIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCI+Cjx0aXRsZT48L3RpdGxlPgo8ZyBpZD0iaWNvbW9vbi1pZ25vcmUiPgo8L2c+CjxwYXRoIGZpbGw9IiMwMDAiIGQ9Ik04NDEuNzgxIDMzMS41NjNsLTMuOTQ1LTMuNTQ3LTQuMjY4LTIuOTA2Yy0xNC42NjMtOC41OTUtMzMuMzM5LTYuMjgzLTQ1LjcyNyA2LjQ1M2wtMjc1Ljc1OSAyODMuNTMtMjc1Ljg0My0yODMuNTMtMy4yMjEtMi45MjZjLTE2LjE3Ni0xMi40MjEtMzcuMTY2LTExLjAwOC01MC43MiAyLjkyNy0xNS41MTEgMTUuOTQ3LTE1LjUxMSA0Mi4yMzIgMCA1OC4xNzlsMjg4LjUwNyAyOTYuNjE2IDMuNjA0IDMuMzljMTEuMTE0IDkuNDA3IDI0LjEzOCAxNC4yNTIgMzcuNjMgMTQuMjUyIDE1LjQxOSAwIDMwLjI0NS02LjMyOCA0MS4yNTQtMTcuNjYybDI4OC40ODctMjk2LjU5NiAzLjI4My0zLjg2NmMxMi4yNjgtMTYuOTQ4IDEwLjY0OC0zOS45OS0zLjI4My01NC4zMTN6Ij48L3BhdGg+Cjwvc3ZnPgo=");
	background-repeat: no-repeat;
	background-position: right 5px center;
	background-size: 30px 20px;
	/* Aggiusta il padding */
	padding-right: 30px;
	/* Modifica il valore di padding-right secondo le tue esigenze */
}
.modForm__wrapper .mandatoryLabel {
	font-size: 12px;
	margin-top: -10px;
}

.modForm__wrapper .fieldBlock {
	text-align: left;
	/*padding: 20px; Spazio interno */
}

.modForm__wrapper .fieldBlock.fieldBlock--span {
	grid-column: span 2;
	/* Estendi la cella su due colonne */
}
@media (max-width: 768px) {
	.modForm__wrapper .fieldBlock.fieldBlock--span {
		grid-column: span 1;
	}
}

.error-message {
	font-size: 12px;
	height: 14px;
	color: #f00;
	display: block;
	padding-top: 2px;
}

.modForm__wrapper .fieldBlock.fieldBlock--submit {
	text-align: center;
}
.modForm__wrapper .fieldBlock.fieldBlock--submit .btn {
	margin-top: 50px;
	height: 50px;
	min-width: 120px;
}

.modForm__identityDescription {
	padding-bottom: 8px;
}

/* Spinner */
.spinner-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	/* Colore di sfondo leggermente opaco */
	z-index: 9999;
	/* Assicura che lo spinner sia sopra tutti gli altri elementi */
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner {
	border: 4px solid rgba(255, 255, 255, 0.3);
	/* Colore del bordo leggermente opaco */
	border-top: 4px solid #fff;
	/* Colore del bordo superiore */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	/* Animazione di rotazione */
}

.spinner-overlay.visible {
	display: flex !important;
}

.fieldBlock--radio label {
	display: flex;
	font-size: 15px;
}
.fieldBlock--radio label input {
	margin-top: 3px;
}
.fieldBlock--radio .error-message {
	padding-left: 6px;
}

.fieldBlock__textPrivacy {
	font-size: 15px;
	font-weight: 400;
}

.fieldBlock legend {
	margin-bottom: 20px;
}

legend.fieldBlock__textPrivacy {
	margin-bottom: 20px;
}

.fieldBlock__row + .fieldBlock__row {
	margin-top: 8px;
}

.error-message + .fieldBlock__row {
	margin-top: 8px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.modForm__wrapper--inline {
	grid-template-columns: 1fr;
	gap: 10px;
}

.fieldBlock legend {
	margin-bottom: 8px;
}

.modSearch .Mod__inner {
	padding: 2em;
}
@media (max-width: 768px) {
	.modSearch .Mod__inner {
		padding: 0;
	}
}
.modSearch .Mod__inner .modSearch__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin: 0;
	width: 100%;
}
.modSearch .Mod__inner .modSearch__list .modSearch__listItem {
	flex-basis: 33.33334%;
	display: inline-block;
	padding: 10px 30px;
}
.modSearch .Mod__inner .modSearch__list .modSearch__listItem .modSearch__textBlock {
	width: 100%;
	text-align: center;
	width: 100%;
	padding: 1em;
}
.modSearch .Mod__inner .modSearch__list .modSearch__listItem .modSearch__textBlock .textBlock__title {
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 12px;
}
.modSearch .Mod__inner .modSearch__list .modSearch__listItem .modSearch__textBlock .textBlock__subtitle {
	font-size: 1.6rem;
}
.modSearch .Mod__inner .modSearch__list .modSearch__listItem .Mod__imgBlock {
	width: auto;
	justify-content: center;
}
@media (max-width: 768px) {
	.modSearch {
		padding: 2em 0;
	}
	.modSearch .Mod__inner .modSearch__list .modSearch__listItem {
		flex-basis: 50%;
		padding: 10px;
		width: 50%;
	}
}

.wrapperStore {
	position: relative;
	padding: 1em 0 4em 0;
}

.mapWrapper {
	width: 76%;
	padding-left: 15px;
}
@media (max-width: 768px) {
	.mapWrapper {
		display: none;
	}
}

.loadingStore {
	bottom: 0;
	top: 15%;
	left: 0;
	right: 0;
	background: url(../../../images/loader.gif) no-repeat center center;
	position: absolute;
	width: 24%;
	z-index: 1000;
	display: none;
	height: 80px;
}

.storeOptions {
	width: 24%;
	position: relative;
}
.storeOptions .gpsLocate {
	position: relative;
	margin-bottom: 13px;
}
.storeOptions .countryLocate {
	color: #3e3e3e;
	display: block;
	margin-bottom: 13px;
	position: relative;
	width: 100%;
}
.storeOptions .countryLocate .search-box {
	display: block;
	position: relative;
	background-color: transparent;
}
.storeOptions .regionLocate {
	color: #3e3e3e;
	display: block;
	margin-bottom: 13px;
	position: relative;
	width: 100%;
	display: none;
}
.storeOptions .regionLocate .search-box-region {
	border: 1px solid #3e3e3e;
	display: block;
	position: relative;
	background-color: transparent;
}
.storeOptions .regionLocate .search-box-region:hover, .storeOptions .regionLocate .search-box-region.isActive {
	background-color: black;
	color: white;
	border: 1px solid black;
}
.storeOptions .regionLocate .search-box-region:hover select, .storeOptions .regionLocate .search-box-region.isActive select {
	color: white;
}
.storeOptions .regionLocate .search-box-region .size-container-region {
	background-size: 9px 5px;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.storeOptions .regionLocate .search-box-region .size-container-region .arrowUD {
	font-size: 0.6em;
	height: 100%;
	position: absolute;
	right: 10px;
	top: 1px;
}
.storeOptions .regionLocate .search-box-region .size-container-region .arrowUD span:first-child {
	position: absolute;
	right: 0;
	top: 5px;
}
.storeOptions .regionLocate .search-box-region .size-container-region .arrowUD span:nth-child(2) {
	bottom: -12px;
	position: relative;
	right: 0;
}
.storeOptions .regionLocate .search-box-region .size-container-region select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: inherit;
	border: 0 none;
	cursor: pointer;
	padding: 6px 6px 6px 4px;
	display: block;
	text-align: left;
	width: 107%;
	font-size: 0.77em;
	outline: none !important;
	margin: 0;
	color: inherit;
	z-index: 9;
}
.storeOptions .regionLocate .search-box-region .size-container-region select option {
	color: #3e3e3e;
	background: white;
}
.storeOptions .active {
	border: 1px solid black !important;
}
.storeOptions .resultsAllWrapper {
	height: 100%;
	/* @include breakpoint(m,min) {
	  	 max-height: 430px;
	  	 overflow: scroll;
	  }*/
}
.storeOptions .resultsAllWrapper .resultsWrapper {
	overflow: hidden;
	height: auto !important;
	display: none;
}
@media (max-width: 768px) {
	.storeOptions .resultsAllWrapper .resultsWrapper {
		height: auto !important;
	}
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultmainTitle {
	color: #3e3e3e;
	font-size: 20px;
	font-weight: 600;
	padding: 10px 0px 20px 0px;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore {
	display: inline-block;
	width: 100%;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore .info {
	margin: 2px;
	padding: 16px;
	box-shadow: 0px 2px 7px #00000029;
	position: relative;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.4em;
	color: #3e3e3e;
	border: 2px solid #fff;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore .info .storeinfoTitle {
	font-weight: 700;
	color: #012857;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore .info .storeinfoAddress {
	padding-top: 5px;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore .info .promo {
	color: #a6a6a6;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore .info .goToMaps {
	display: none;
	visibility: hidden;
}
.storeOptions .resultsAllWrapper .resultsWrapper .resultBoxStore .info:hover {
	border: 2px solid #535353;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent {
	height: auto;
	margin-top: 15px;
	display: none;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultmainTitle {
	color: #3e3e3e;
	font-size: 20px;
	font-weight: 600;
	padding: 10px 0px 20px 0px;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore {
	display: inline-block;
	width: 100%;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info {
	position: relative;
	margin: 2px;
	margin-bottom: 25px;
	padding: 16px;
	font-size: 0.8em;
	line-height: 1.4em;
	box-shadow: 0px 2px 7px #00000029;
	border: 2px solid #fff;
	color: #3e3e3e;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info:hover {
	border: 2px solid #535353;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info .storeinfoTitle {
	font-weight: 700;
	color: #012857;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info .storeinfoDistance {
	font-size: 0.79em;
	font-weight: 400;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info .storeinfoAddress {
	line-height: 1.2em;
	padding-top: 5px;
	font-size: 0.89em;
	font-weight: 400;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info .storeinfoPromo {
	padding-top: 5px;
}
.storeOptions .resultsAllWrapper .resultsWrapperAgent .resultBoxStore .info .goToMaps {
	display: none;
	visibility: hidden;
}

.storeAreaFocusOnMap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.markerWebLink {
	z-index: 2;
	position: relative;
	margin-top: 4px;
	display: inline-block;
}

.storeinfoAddress a.storeinfoAddress__gotoSite {
	margin: 0 auto;
	width: 100%;
	padding-top: 6px;
	padding-bottom: 6px;
	border: 1px solid #3e3e3e;
	font-weight: 500;
	text-align: center;
	margin-top: 20px;
}
.storeinfoAddress a.storeinfoAddress__gotoSite:hover {
	text-decoration: underline;
}

.storeinfoAddress {
	vertical-align: middle;
}
.storeinfoAddress a {
	vertical-align: middle;
	text-decoration: none;
}

.timingTable__desc {
	font-weight: 500;
	margin-right: 8px;
}

.timingTable__content {
	display: none;
}

.loadingData {
	color: gray;
	line-height: 140%;
	padding: 4px 4px 4px 4px;
}

.gm-style .gm-style-iw {
	font-size: 1em;
	line-height: 1.3em;
	width: 230px;
	height: auto;
	font-weight: 400;
}
.gm-style .gm-style-iw div {
	overflow: hidden !important;
}
.gm-style .gm-style-iw div .storeboxTitle {
	color: black;
	font-weight: 700;
}
.gm-style .gm-style-iw div .storeboxAddress {
	color: #3e3e3e;
	margin-bottom: 12px;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxTimetable,
.gm-style .gm-style-iw div .storeboxAddress .storeboxTimeXtra {
	font-weight: 700;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxTable table {
	width: 100%;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxTable table tr {
	display: block;
	margin: 2px 0;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxTable table tr th {
	width: 70px;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxTable table .dayLabel {
	width: 70px;
}
.gm-style .gm-style-iw div .storeboxAddress a {
	color: #012857;
	text-decoration: none;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxService {
	color: black;
	padding: 8px 0px;
	border-top: 1px solid black;
}
.gm-style .gm-style-iw div .storeboxAddress .storeboxService:hover {
	background: black;
	color: white;
}

@media (max-width: 768px) {
	.storeOptions {
		border: none;
		float: left;
		width: 100%;
	}
	.storeOptions .resultsWrapper .resultBoxStore {
		display: inline-block;
		width: 100%;
	}
	.storeOptions .resultsWrapper .resultBoxStore .info .goToMaps {
		display: block;
		visibility: visible;
	}
	.storeOptions .resultsWrapper .resultBoxStore .info .goToMaps a {
		text-decoration: none;
		color: #3e3e3e;
		font-size: 0.8em;
	}
	.storeOptions .resultsWrapper .resultBoxStore .info .goToMaps a span {
		padding-right: 5px;
		top: 2px;
		position: relative;
	}
	.storeOptions .resultsWrapper .resultBoxStore .info .goToMaps a:hover {
		color: #012857;
	}

	.mapWidth {
		display: none;
	}
}
.mapWidth {
	height: 100%;
	position: relative;
	width: 100%;
}

#map-canvas {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.j-timeTableWrapper {
	display: none;
}

.j-timeTable {
	z-index: 2;
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.infopoint_icon {
	display: inline-block;
	margin-right: 8px;
	width: 12px;
	height: 12px;
	vertical-align: middle;
}

.infopoint_icon--time {
	vertical-align: top;
	margin-top: 3px;
}

.infopoint_icon--arrow {
	vertical-align: top;
	margin-top: 3px;
	width: 8px;
}

.infopoint_icon--marker {
	vertical-align: top;
	margin-top: 2px;
}

.infopoint_addressBlock {
	display: inline-block;
	width: calc(100% - 20px);
}

.storeinfoAddress {
	color: #535353;
}

.storeinfoAddress--email a {
	color: #535353;
}
.storeinfoAddress--email a:hover {
	color: #012857;
}

.storeinfoAddress--web a {
	margin-top: 0;
}
.storeinfoAddress--web a span {
	text-decoration: underline;
}

.infopoint_icon--arrowLink {
	width: 8px;
	height: 8px;
	margin-left: 14px;
}
.infopoint_icon--arrowLink span {
	text-decoration: underline;
}

.retailersLegend {
	margin-bottom: 16px;
}

.retailersLegend__icon {
	width: 16px;
	margin-right: 6px;
	display: inline-block;
	vertical-align: middle;
}

.retailersLegend__item {
	font-weight: 500;
	font-size: 12px;
	color: #535353;
	display: inline-block;
	vertical-align: middle;
}
.retailersLegend__item:first-child {
	margin-right: 16px;
}

.todayClass {
	color: #535353;
	font-weight: 500;
}

.retailersLegendTooltip {
	font-size: 11px;
	max-width: 300px;
	text-align: left;
	padding: 10px;
	line-height: 16px;
}

.retailersLegendTooltip__title {
	font-size: 14px;
	margin-bottom: 4px;
	font-weight: 500;
}

.modStore__wrapper {
	display: flex;
}
@media (max-width: 768px) {
	.modStore__wrapper {
		display: flex;
		flex-direction: column;
	}
}

.modStore__fieldBlock {
	margin-bottom: 16px;
	position: relative;
}

.modStore__arrowRightLink {
	display: inline-block;
	width: 34px;
	height: 34px;
	position: absolute;
	top: 0;
	margin-top: 4px;
	right: 0;
	background: transparent;
	border: 0;
}

.infoPointRetailer__time.open .timingTable__content {
	display: block;
}

.header__btnSearch {
	border: 3px solid #B1B1B1;
	width: 124px;
	height: 35px;
	border-radius: 21px;
	display: flex;
	align-items: center;
}
.header__btnSearch img, .header__btnSearch svg {
	display: block;
	height: 22px;
	width: auto;
	margin-left: 7px;
}

.mainHeader__buttonsWrapper {
	display: flex;
	gap: 20px;
	align-items: center;
}

/* Backdrop */
/* Backdrop */
#backdropSearch {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

/* Pannello */
/* Stato visibile */
#backdropSearch.visible {
	opacity: 1;
	pointer-events: auto;
}

.panelSearch {
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	left: 0;
	z-index: 20;
	display: none;
}

.panelSearch__search {
	position: absolute;
	z-index: 4;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
	width: 500px;
	height: 100vh;
	background-color: white;
	padding: 30px;
	right: 0;
	/* Inizialmente nascosta fuori schermo a destra */
	transform: translateX(100%);
	transition: transform 0.25s ease;
	overflow: auto;
}

.panelSearch__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: right;
	margin-bottom: 24px;
}
.panelSearch__header > * {
	padding-bottom: 0;
}
.panelSearch__header .closeSearchButton {
	position: relative;
}
.panelSearch__header .closeSearchButton img {
	width: 20px;
	height: auto;
}

#panelSearch.visible .panelSearch__search {
	/* Porta il pannello visibile */
	transform: translateX(0);
}

.panelSearch__results {
	background-color: white;
	position: absolute;
	height: 100vh;
	top: 0;
	width: calc(100vw - 500px);
	overflow: auto;
	z-index: 3;
	/* Inizialmente nascosta fuori schermo a sinistra */
	transform: translateX(calc(100% + 500px));
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.panelSearch__results.visible {
	/* Porta il contenuto visibile */
	transform: translateX(0);
	opacity: 1;
}

.autocompleteSearchList {
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: white;
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	z-index: 100;
}

.panelSearch__links {
	margin-top: 20px;
}

.panelSearchBlockLinks {
	margin-top: 10px;
}
.panelSearchBlockLinks h4 {
	font-weight: bold;
	color: #343434;
	margin-top: 20px;
	font-size: 18px;
}
.panelSearchBlockLinks li a {
	font-size: 17px;
}

.autocompleteSearchList li {
	padding: 8px;
	cursor: pointer;
}

.autocompleteSearchList li:hover {
	background-color: #f0f0f0;
}

.inputSearch {
	border-radius: 8px;
	border: 1px solid #3D3D3D;
}

.no-scroll {
	height: 100%;
	overflow: hidden !important;
}

.searchResultsHeading {
	display: flex;
	justify-content: space-between;
}

#modifySearchBtn {
	background: none;
	border: none;
	color: #343434;
}

.modTouchMatchClassVariant .Mod__textBlock .textBlock table td {
	color: #505050;
	line-height: 1.3em;
	font-weight: 300;
	text-align: left;
	padding: 0 20px 15px 0;
	line-height: 16px;
	vertical-align: top;
}
.modTouchMatchClassVariant .Mod__textBlock .textBlock table td img.modArItemBlock__img {
	width: auto;
	height: 30px;
	margin-bottom: 10px;
}

.mod3dLibraryVariant .Mod__textBlock .textBlock table td {
	color: #505050;
	line-height: 1.3em;
	text-align: left;
	padding: 0 20px 15px 0;
	line-height: 16px;
	vertical-align: top;
	font-size: 11px;
	font-weight: 500;
}
.mod3dLibraryVariant .Mod__textBlock .textBlock table td img.modArItemBlock__img {
	width: auto;
	height: 30px;
	margin-bottom: 10px;
}

/*  moduli architetti*/
.modArc {
	color: #505050;
	text-align: center;
	padding: 50px 50px 70px 50px;
	background: url("https://media03.flou.it/media/architetti/bg_cataloghi.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

/*  tabella icone */
table .modArItemBlock__img {
	width: auto;
	height: 30px;
	margin-bottom: 10px;
}

.page.architettiPage .info table,
th,
td {
	color: #001739;
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	padding: 5px 20px 20px 0px;
	line-height: 14px;
}

/*  ARCHITETTI HOME */
.architettiHome .info {
	width: 50%;
}

.architettiHome .info table td {
	color: white;
}

/* */
.modArc {
	width: 100%;
}

.modArc.configuratori {
	background: url("https://media03.flou.it/media/architetti/bg_configuratori.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.modArc.appuntamento {
	background: url("https://media03.flou.it/media/architetti/banner_form.jpg");
	color: white;
	background-size: cover;
	background-repeat: no-repeat;
}

.modArc.appuntamento .modArItemBlock__img {
	width: 15%;
}

.modArc.appuntamento .modArc__btn {
	color: white;
	border: 1px solid white;
}

.modArc.appuntamento .modArc__btn:hover {
	color: #001739;
	background-color: white;
}

.modArc.appuntamento .modArc__linkWrapper {
	border-top: 1px solid white;
	padding-top: 30px;
	padding-bottom: 30px;
}

.modArc__description {
	margin-top: 20px;
	font-size: 13px;
	line-height: 21px;
	font-weight: 300;
}

.modArc__title {
	font-size: 25px;
	font-weight: 400;
	text-align: center;
}

.modArc__blocks {
	margin-top: 60px;
	margin-left: -10px;
	margin-right: -10px;
	font-size: 0;
}

.modArItemBlock {
	width: 33.33334%;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 8px;
	vertical-align: top;
}

@media only screen and (max-width: 767px) {
	.modArItemBlock {
		width: 100%;
		margin-bottom: 24px;
	}

	.modArc {
		padding: 24px;
	}
}
.modArItemBlock__wrapperImage {
	position: relative;
	text-align: center;
}

.modArItemBlock__btnImage {
	position: absolute;
	bottom: 20px;
	margin: auto;
	left: 10%;
	right: 10%;
	/*margin-left: -25%;*/
}

.modArItemBlock__img {
	display: inline-block;
	width: 100%;
}

.modArItemBlock__title {
	font-size: 18px;
	margin-top: 14px;
	font-weight: 500;
}

.modArItemBlock__description {
	margin-top: 20px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 300;
}

.modArc__linkWrapper {
	margin-top: 30px;
}

.modArc__btn {
	color: #505050;
	border: 1px solid #505050;
	font-weight: 400;
}

.reservationArc__wrapperBlock {
	margin-top: 30px;
	padding-left: 15%;
	padding-right: 15%;
	box-sizing: border-box;
}

.reservationArc__wrapperContent {
	/* white-space: nowrap;*/
	margin-left: -20px;
	margin-right: -20px;
	font-weight: 0;
}

.reservationArc__block {
	text-align: center;
	color: #fff;
	width: 33.33334%;
	padding: 0 20px;
	display: inline-block;
	box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
	.reservationArc__block {
		width: 100%;
		margin-bottom: 24px;
		color: #505050;
	}

	.modArc {
		padding: 24px;
	}
}
.reservationArc__imgWrapper {
	display: inline-block;
	width: 80px;
}

.modArItemBlock__img {
	display: inline-block;
	width: 100%;
	height: auto;
}

.reservationArc__title {
	margin-top: 20px;
	font-size: 13px;
	font-weight: 600;
}

.reservationArc__paragraph {
	font-weight: 11px;
}

.video-js {
	background-color: transparent;
	width: 100%;
	height: 100%;
}

.video-js .vjs-picture-in-picture-control {
	display: none !important;
}

.video-js.vjs-playing .vjs-tech {
	pointer-events: none;
}

.vjs-waiting {
	visibility: hidden;
	background: transparent;
}

.vjs-loading-spinner {
	opacity: 0.3;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}