﻿/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* For older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

:focus {
	outline: none !important;
}

/* Globals */
html,
* {
	font-family: var(--font);
}

body {
	width: 100%;
	min-width: 320px;
	background: var(--background);
	font-family: 'Open Sans', sans-serif;
}

.clear {
	height: 0;
	width: 0;
	clear: both;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.no-scroll {
	overflow: hidden;
}

/* ASP.Net Error messages */
.field-validation-error {
	display: block;
	margin: 5px 0 12px;
	color: #b40b1b;
	font-size: 13px;
	font-weight: bold;
}

/* Lean modal plugin */
#lean_overlay {
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background: #000;
	display: none;
}

/* Main wrapper */
#main-wrapper {
	min-height: 400px;
	width: 1200px;
	min-width: 320px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 1px;
}

@media all and (max-width: 1200px) {
	#main-wrapper {
		box-sizing: border-box;
		height: auto;
		width: 100%;
		padding: 0 0 20px;
	}
}

/* Columns */
#bottom-container {
	clear: both;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	padding-top: 40px;
	margin-top: 167px;
	background-color: var(--primary-color);
}

#bottom-container:before {
	content: '';
	position: absolute;
	top: -70px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 70px 1200px;
	border-color: transparent transparent var(--primary-color) transparent;
}

#bottom-container:after {
	content: '';
	clear: both;
	display: block;
}

#bottom-container>.title {
	display: block;
	width: 100%;
	padding: 0 0 40px;
	color: var(--primary-highcontrast-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#bottom-container .columns {
	padding: 0 50px;
}

#bottom-container .column {
	display: inline-block;
	float: left;
	width: calc(33.33% - (100px / 3));
	margin-right: 50px;
}

#bottom-container .column>div:nth-child(2),
#bottom-container .column>div:nth-child(3) {
	margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
	#bottom-container:before {
		display: none;
	}

	#bottom-container .column {
		width: calc(50% - 50px);
	}
}

@media only screen and (max-width: 850px) {
	#bottom-container .columns {
		padding: 0 25px;
	}

	#bottom-container .column {
		clear: both;
		width: 100%;
		margin: 0 0 20px;
	}
}

/* Schedules */
#bottom-container #schedules {
	display: block;
}

#bottom-container #schedules .title {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-highcontrast-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 17px;
}

#bottom-container #schedules table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	font-size: 16px;
	line-height: 32px;
}

#bottom-container #schedules table tr:first-of-type th:first-of-type {
	border-radius: 4px 0 0 0;
}

#bottom-container #schedules table tr:first-of-type td:last-of-type {
	border-radius: 0 4px 0 0;
}

#bottom-container #schedules table tr:last-of-type th:first-of-type {
	border-radius: 0 0 0 4px;
}

#bottom-container #schedules table tr:last-of-type td:last-of-type {
	border-radius: 0 0 4px 0;
}

#bottom-container #schedules table tr {
	color: var(--primary-highcontrast-color);
}

#bottom-container #schedules table th {
	width: 28%;
	color: var(--primary-highcontrast-color);
	text-align: left;
}

#bottom-container #schedules table td {
	width: 36%;
	color: var(--primary-highcontrast-color);
	text-align: center;
}

#bottom-container #schedules table td[colspan="2"] {
	width: 72%;
	padding-right: 36%;
}

#bottom-container #schedules table tr th:first-letter {
	text-transform: uppercase;
}

#bottom-container #schedules .more-text {
	box-sizing: border-box;
	display: block;
	clear: both;
	width: 100%;
	padding: 0;
	margin-top: 7px;
	color: var(--primary-highcontrast-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	text-align: center;
}

@media only screen and (max-width: 1200px) {
	#bottom-container #schedules {
		width: calc(100% - 50px);
	}
}

@media only screen and (max-width: 850px) {
	#bottom-container #schedules {
		clear: both;
		width: 100%;
		margin: 0 0 20px;
	}
}

/* Facilites */
#bottom-container #facilites {
	display: inline-block;
	float: left;
	width: calc(33.33% - (100px / 3));
}

#bottom-container #facilites .title {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-highcontrast-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 17px;
}

#bottom-container #facilites ul li {
	display: block;
	color: var(--primary-highcontrast-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
}

@media only screen and (max-width: 1200px) {
	#bottom-container #facilites {
		width: calc(50% - 50px);
	}
}

@media only screen and (max-width: 850px) {
	#bottom-container #facilites {
		clear: both;
		width: 100%;
		margin: 0 0 20px;
	}
}

/* Spoken languages */
#bottom-container #spoken-languages {
	display: block;
	width: 100%;
}

#bottom-container #spoken-languages .title {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-highcontrast-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 17px;
}

#bottom-container #spoken-languages ul {
	font-size: 0;
}

#bottom-container #spoken-languages ul li {
	display: inline-block;
	margin-right: 5px;
}

/* Links */
#bottom-container #links {
	display: block;
	width: 100%;
}

#bottom-container #links .title {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-highcontrast-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 17px;
}

#bottom-container #links ul {
	clear: both;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#bottom-container #links ul li {
	display: block;
	position: relative;
	width: 100%;
	margin: 8px 0;
	font-size: 13px;
	color: #333;
}

#bottom-container #links ul li:last-child:after {
	display: none;
}

#bottom-container #links ul li>a {
	display: block;
	color: var(--primary-highcontrast-color);
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	text-decoration: underline;
}

#bottom-container #links ul li>a:hover {
	text-decoration: none;
}

#bottom-container #links .view-more-block-button {
	text-align: left;
}

#bottom-container #links .view-more-block-button .icon {
	float: left;
	margin: 0 5px 0 0;
}

/* Files */
#bottom-container #files {
	display: block;
	width: 100%;
}

#bottom-container #files .title {
	display: block;
	margin-bottom: 10px;
	color: var(--primary-highcontrast-color);
	font-size: 17px;
	font-weight: 600;
	line-height: 17px;
}

#bottom-container #files ul {
	clear: both;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#bottom-container #files ul li {
	display: block;
	position: relative;
	width: 100%;
	padding: 7px 0;
	margin: 0;
	font-size: 13px;
	color: var(--primary-highcontrast-color);
}

#bottom-container #files ul li:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 100%;
	background-color: var(--primary-highcontrast-color);
	opacity: .25;
}

#bottom-container #files ul li:last-child:after {
	display: none;
}

#bottom-container #files ul li>a {
	display: block;
	color: var(--primary-highcontrast-color);
	font-size: 15px;
	line-height: 18px;
	font-weight: bold;
	text-decoration: underline;
}

#bottom-container #files ul li>a:before {
	content: '\f15c';
	display: inline-block;
	height: 18px;
	width: 12px;
	margin-right: 7px;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-weight: 900;
	line-height: 18px;
	text-align: center;
}

#bottom-container #files ul li>a:hover {
	text-decoration: none;
}

/* Header */
#main-header {
	height: 120px;
	width: 100%;
	background-color: #fff;
	overflow: visible;
}

@media only screen and (max-width: 1200px) {
	#main-header {
		padding-bottom: 20px;
	}
}

/* Site logo */
#main-header #site-logo {
	box-sizing: border-box;
	display: block;
	float: left;
	height: 120px;
	width: 300px;
	padding: 3px 0 0 50px;
}

#main-header #site-logo a {
	display: block;
	height: 100%;
	width: 100%;
	text-align: left;
	text-decoration: none;
}

#main-header #site-logo a img {
	display: block;
	position: relative;
	top: 50%;
	max-height: 100%;
	max-width: 100%;
	transform: translateY(-50%);
}

/* Site title */
#main-header #site-title-container {
	float: left;
	display: block;
	height: 28px;
	padding: 45px 0 7px 15px;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#main-header #site-title-container .site-title {
	width: auto;
	max-width: 650px;
	margin: 0;
	font-weight: normal;
}

#main-header #site-title-container a {
	color: var(--primary-color);
	text-decoration: none;
}

/* Languages */
#languages {
	float: right;
	height: 12px;
	margin: 15px 15px 0;
}

#languages ul {
	height: 12px;
}

#languages ul li {
	position: relative;
	display: block;
	float: right;
	padding: 0;
	margin: 0 0 0 5px;
}

#languages ul li a {
	display: block;
	height: 12px;
	width: 18px;
	background: url('~/Custom_Code/Images/E101/languages.png') no-repeat top left;
	opacity: 0.6;
	transition: opacity 0.2s;
	text-indent: -9999px;
}

#languages ul li a.fr {
	background-position: -54px 0;
}

#languages ul li a.lu {
	background-position: 0 0;
}

#languages ul li a.de {
	background-position: -36px 0;
}

#languages ul li a.en {
	background-position: -18px 0;
}

#languages ul li a:hover {
	opacity: 0.8;
}

#languages ul li a.active {
	margin: -2px 0 0 -2px;
	border: 2px solid #dcdcdc;
	border-radius: 2px;
	opacity: 1;
}

/* Highlight products */
#highlight-products {
	clear: both;
	padding-top: 15px;
	font-size: 0;
	text-align: center;
}

#highlight-products .title {
	width: 100%;
	margin: 20px 0 40px;
	color: #222;
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#highlight-products .product {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	height: 214px;
	width: calc(25% - 16px);
	margin: 0 8px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 1px;
	line-height: 12px;
	vertical-align: top;
}

#highlight-products .product:hover:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .3);
	z-index: 2;
}

#highlight-products .product:hover .label {
	position: absolute;
	top: 40px;
	left: 0;
	height: 25px;
	width: 100%;
	color: #fff;
	font-size: 19px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	z-index: 3;
}

#highlight-products .product:hover .price {
	position: absolute;
	bottom: 78px;
	left: 0;
	height: 25px;
	width: 100%;
	color: #fff;
	font-size: 19px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	z-index: 3;
}

#highlight-products .product:hover .button {
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	bottom: 40px;
	left: 50%;
	width: auto;
	padding: 5px 10px;
	transform: translateX(-50%);
	background: var(--primary-color);
	border: none;
	border-radius: 1px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	z-index: 3;
}

#highlight-products .product .banner {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 90px;
	width: 90px;
	z-index: 2;
	overflow: hidden;
}

#highlight-products .product .banner .banner-label {
	box-sizing: border-box;
	position: absolute;
	top: 20px;
	left: -25px;
	height: 18px;
	width: 120px;
	padding-top: 1px;
	color: #fff;
	line-height: 18px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: .5px;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

#highlight-products .product .banner.promo .banner-label {
	background-color: #ac0f2d;
}

#highlight-products .product .banner.sale .banner-label {
	background-color: #cf920f;
}

#highlight-products .product .banner.new .banner-label {
	background-color: #75ac0f;
	font-size: 10px;
}

#highlight-products .product .picture-container {
	height: 100%;
	width: 100%;
	border-radius: 1px;
	text-align: center;
	overflow: hidden;
}

#highlight-products .product .picture-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: 100%;
	transform: translate(-50%, -50%);
}

#highlight-products .product .label {
	display: none;
	position: absolute;
	max-height: 38px;
	width: 100%;
	top: 48px;
	left: 0;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	line-height: 19px;
	text-align: center;
	text-transform: uppercase;
	overflow: hidden;
	z-index: 4;
}

#highlight-products .product:hover .label {
	display: block;
}

#highlight-products .product .price {
	display: none;
	position: absolute;
	width: 100%;
	top: 92px;
	left: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	z-index: 4;
}

#highlight-products .product:hover .price {
	display: block;
}

#highlight-products .product .crossed {
	display: none;
	position: absolute;
	width: 100%;
	top: 112px;
	left: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	text-decoration: line-through;
	opacity: .8;
	z-index: 4;
}

#highlight-products .product:hover .crossed {
	display: block;
}

#highlight-products .product .button {
	box-sizing: border-box;
	display: none;
	position: absolute;
	bottom: 52px;
	left: 50%;
	width: auto;
	padding: 0 10px;
	background: var(--primary-color);
	border: none;
	border-radius: 1px;
	transform: translateX(-50%);
	color: var(--primary-highcontrast-color);
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	z-index: 4;
}

#highlight-products .product:hover .button {
	display: inline-block;
}

/* Services */
#services>div:last-child:not(:first-child) {
	margin-right: 10px;
}

#services #basket-mini,
#services #booking-mini {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	float: right;
	height: 36px;
	padding: 8px 10px 8px 8px;
	background-color: var(--primary-color);
	border-radius: 0 0 4px 4px;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
	z-index: 11;
}

#services #basket-mini>a,
#services #booking-mini>a {
	color: #fff;
	text-decoration: none;
}

/* Main navigation */
#main-nav {
	float: right;
	height: 40px;
	width: 820px;
	margin: 30px 80px 0 0;
}

#main-nav>ul {
	float: right;
}

#main-nav>ul li {
	display: block;
	position: relative;
	float: left;
	height: 54px;
	margin-left: 20px;
	overflow: hidden;
}

#main-nav>ul li:first-of-type {
	margin-left: 0;
}

#main-nav>ul li a,
#main-nav>ul li span {
	display: table-cell;
	position: relative;
	height: 40px;
	max-width: 120px;
	color: #555;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	transition: background 0.1s;
	vertical-align: middle;
}

#main-nav>ul li:hover {
	overflow: hidden;
}

#main-nav>ul li:hover {
	overflow: visible;
}

#main-nav>ul li ul {
	box-sizing: border-box;
	display: none;
	position: absolute;
	top: 40px;
	left: 50%;
	width: 150px;
	padding: 0 10px;
	margin-left: -75px;
	background: var(--primary-color);
	border-radius: 1px;
	z-index: 999999;
}

#main-nav>ul li ul:before {
	content: '';
	position: absolute;
	top: -7px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -8px;
	border-style: solid;
	border-width: 0 8px 8px 8px;
	border-color: transparent transparent var(--primary-color) transparent;
}

#main-nav>ul li:hover ul {
	display: block;
}

#main-nav>ul li ul li {
	height: auto;
	min-height: 18px;
	width: 100%;
	margin: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .25);
	text-align: center;
}

#main-nav>ul li ul li:last-of-type {
	border-bottom: none;
}

#main-nav>ul li ul li a {
	box-sizing: border-box;
	width: 150px;
	max-width: 150px;
	padding: 10px 0;
	color: var(--primary-highcontrast-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 17px;
	opacity: .75;
}

#main-nav>ul li ul li:hover>a {
	color: var(--primary-highcontrast-color);
	opacity: 1;
}

#main-nav>ul li ul li:first-of-type a {
	padding-top: 12px;
}

#main-nav>ul li ul li:last-of-type a {
	padding-bottom: 12px;
}

#main-nav>ul li.Highlighted>a,
#main-nav>ul li.Highlighted>a:hover {
	color: var(--primary-color);
	font-weight: 600;
}

#main-nav>ul>li>ul li.Highlighted>a,
#main-nav>ul>li>ul li.Highlighted>a:hover {
	color: var(--primary-highcontrast-color);
	font-weight: 600;
	opacity: 1;
}

@media all and (max-width: 1200px) {
	#main-nav {
		display: block;
		width: calc(100% - 80px);
		margin: 0 80px 20px 0;
	}
}

@media all and (max-width: 979px) {

	#main-nav>ul li.Highlighted>a,
	#main-nav>ul li.Highlighted>a:hover {
		background-color: var(--secondary-color);
		color: var(--secondary-highcontrast-color);
	}
}

/* Home slider */
#home-slider {
	position: relative;
	height: 50vw;
	max-height: 600px;
	margin-bottom: 25px;
}

#home-slider:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 70px 1200px 0 0;
	border-color: #fff transparent transparent transparent;
	z-index: 99999;
}

#home-slider:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 70px 1200px;
	border-color: transparent transparent #fff transparent;
	z-index: 99998;
}

#home-slider .slider {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

#home-slider .slider .slide {
	display: block;
	position: relative;
	float: left;
	height: 100%;
	height: 100%;
	list-style: none;
}

#home-slider .slider .slide>img {
	min-width: 100%;
}

#home-slider .slider .slide .text {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	padding: 180px 50px 0;
	background: rgba(0, 0, 0, .3);
	text-align: center;
}

#home-slider .slider .slide .text .title {
	box-sizing: border-box;
	display: block;
	width: 100%;
	color: #fff;
	font-size: 30px;
	font-weight: normal;
	line-height: 38px;
}

#home-slider .slider .slide .text .description {
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin-top: 40px;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	line-height: 36px;
}

#home-slider .slick-dots {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0;
	z-index: 999996;
}

#home-slider .slick-dots li {
	display: inline-block;
	height: 12px;
	width: 12px;
	margin-right: 8px;
	list-style-type: none;
}

#home-slider .slick-dots li:last-of-type {
	margin-right: 0;
}

#home-slider .slick-dots li button {
	display: block;
	height: 12px;
	width: 12px;
	padding: 0;
	background: rgba(255, 255, 255, .3);
	border: 1px solid #fff;
	border-radius: 6px;
	font-size: 0;
	opacity: 0.8;
	transition: opacity 0.2s;
	cursor: pointer;
}

#home-slider .slick-dots li button:hover {
	opacity: 1;
}

#home-slider .slick-dots li.slick-active button {
	background: #fff;
	opacity: 1;
}

@media only screen and (max-width: 979px) {

	#home-slider:before,
	#home-slider:after {
		display: none;
	}

	#home-slider {
		margin-bottom: 40px;
	}

	#home-slider .social .booking-button {
		width: 36px !important;
		padding-right: 0;
	}

	#home-slider .social .booking-button span {
		display: none;
	}

	#home-slider .slider .slide .text .title {
		font-size: 20px;
		line-height: 25px;
	}

	#home-slider .slider .slide>img {
		min-width: 0;
		max-width: 100%;
	}
}

/* Social */
#home-slider .social,
#page-title-band-container .social {
	position: absolute;
	top: 40px;
	right: 0;
	height: 144px;
	width: auto;
	z-index: 100001;
	overflow: visible;
}

#home-slider .social ul,
#page-title-band-container .social ul {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	float: left;
}

#home-slider .social ul li,
#page-title-band-container .social ul li {
	display: block;
}

#home-slider .social ul li:nth-child(even) a,
#page-title-band-container .social ul li:nth-child(even) a {
	background-color: #939393;
}

#home-slider .social ul li:nth-child(odd) a,
#page-title-band-container .social ul li:nth-child(odd) a {
	background-color: #747474;
}

#home-slider .social ul li:nth-child(odd) a.booking-button,
#page-title-band-container .social ul li:nth-child(odd) a.booking-button {
	background-color: var(--primary-color);
}

#home-slider .social ul li a,
#page-title-band-container .social ul li a {
	display: block;
	height: 36px;
	width: 36px;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

#home-slider .social .booking-button {
	width: auto;
	padding-right: 7px;
	margin-bottom: 7px;
	font-size: 14px;
	line-height: 36px;
	white-space: nowrap;
}

#home-slider .social .booking-button:before {
	display: inline-block;
	height: 36px;
	width: 36px;
	margin: 7px 0 0 7px;
}

#home-slider .social ul li:first-of-type a,
#page-title-band-container .social ul li:first-of-type a {
	border-radius: 1px 0 0 1px;
}

#home-slider .social ul li:last-of-type a,
#page-title-band-container .social ul li:last-of-type a {
	border-radius: 0 1px 1px 0;
}

#home-slider .social ul li a i,
#page-title-band-container .social ul li a i {
	display: block;
	height: 36px;
	width: 36px;
	font-size: 14px;
	line-height: 36px;
	text-align: center;
}

#home-slider .social ul li a.facebook:hover,
#page-title-band-container .social ul li a.facebook:hover {
	background-color: #1b74e4;
}

#home-slider .social ul li a.x svg,
#page-title-band-container .social ul li a.x svg {
	height: 14px;
	margin: 11px;
	fill: #fff;
}

#home-slider .social ul li a.x:hover,
#page-title-band-container .social ul li a.x:hover {
	background-color: #000;
}

/* View more block button */
.view-more-block-button {
	display: block;
	margin-top: 10px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: bold;
	text-align: right;
	text-decoration: none;
	cursor: pointer;
}

#bottom-container .view-more-block-button {
	color: var(--primary-highcontrast-color);
}

.view-more-block-button:hover {
	text-decoration: underline;
}

.view-more-block-button .icon {
	margin-left: 5px;
}

/* Pratical information */
#pratical-information {
	box-sizing: border-box;
	width: 100%;
	padding: 25px;
	margin: 20px 0 15px;
	line-height: 20px;
	border-radius: 7px;
	background: var(--secondary-color);
}

#pratical-information.light-view {
	padding: 0;
	border-radius: 0;
	background: none;
}

#pratical-information h3 {
	display: block;
	margin-bottom: 15px;
	color: var(--secondary-highcontrast-color);
	font-size: 20px;
	text-transform: uppercase;
}

#pratical-information.light-view h3 {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
	text-transform: none;
}

#pratical-information h4,
#pratical-information ul li.address {
	color: var(--secondary-highcontrast-color);
	font-size: 17px;
}

#pratical-information.light-view h4,
#pratical-information.light-view ul li.address {
	color: #4d4d4d;
	font-size: 15px;
}

#pratical-information ul li.phone,
#pratical-information ul li.gsm,
#pratical-information ul li.fax {
	padding-left: 20px;
	margin-top: 5px;
	color: var(--secondary-highcontrast-color);
	font-size: 17px;
}

#pratical-information.light-view ul li.phone,
#pratical-information.light-view ul li.gsm,
#pratical-information.light-view ul li.fax {
	color: #000;
	font-size: 15px;
	font-weight: bold;
}

#pratical-information ul li.phone {
	background: url('~/Custom_Code/Images/E101/telephone_var(--secondary-highcontrast-color).png') no-repeat top left;
}

#pratical-information ul li.gsm {
	padding-left: 14px;
	background: url('~/Custom_Code/Images/E101/mobile_var(--secondary-highcontrast-color).png') no-repeat top left;
}

#pratical-information ul li.fax {
	background: url('~/Custom_Code/Images/E101/fax_var(--secondary-highcontrast-color).png') no-repeat top left;
}

#pratical-information.light-view ul li.phone {
	background: url('~/Custom_Code/Images/E101/telephone_black.png') no-repeat top left;
}

#pratical-information.light-view ul li.gsm {
	background: url('~/Custom_Code/Images/E101/mobile_black.png') no-repeat top left;
}

#pratical-information.light-view ul li.fax {
	background: url('~/Custom_Code/Images/E101/fax_black.png') no-repeat top left;
}

/* Catalog terms */
#catalog-terms {
	float: left;
	width: 100%;
	padding-top: 30px;
	margin: 30px 0;
	border-top: 1px solid #d0d0d0;
}

#catalog-terms .title {
	display: block;
	margin: 0 0 10px 0;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

#catalog-terms .link {
	display: block;
	color: var(--primary-color);
	font-size: 14px;
	line-height: 17px;
	text-decoration: underline;
}

#catalog-terms .link:hover {
	text-decoration: none;
}

/* Decision makers */
#decision-makers {
	width: 100%;
	margin: 30px 0;
}

#decision-makers .title {
	display: block;
	margin-bottom: 10px;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#decision-makers .decision-maker {
	box-sizing: border-box;
	height: auto;
	min-height: 56px;
	width: 100%;
	padding: 8px 10px;
	background: #f1f1f1;
	border-bottom: 1px solid #e1e1e1;
	border-radius: 1px;
}

#decision-makers .decision-maker:first-of-type {
	border-radius: 5px 5px 1px 1px;
}

#decision-makers .decision-maker:last-of-type {
	border-bottom: none;
	border-radius: 1px 1px 5px 5px;
}

#decision-makers .decision-maker:only-child {
	border-bottom: none;
	border-radius: 5px;
}

#decision-makers .decision-maker:after {
	content: '';
	display: block;
	clear: both;
}

#decision-makers .decision-maker>.icon {
	display: block;
	float: left;
	height: 40px;
	width: 30px;
	margin-right: 5px;
	vertical-align: top;
}

#decision-makers .decision-maker>.icon:before {
	content: '\f183';
	display: block;
	height: 40px;
	width: 30px;
	color: #c1c1c1;
	font-family: "Font Awesome 5 Free";
	font-size: 30px;
	font-weight: 900;
	line-height: 40px;
	text-align: center;
}

#decision-makers .decision-maker>.icon.female:before {
	content: '\f182';
}

#decision-makers .decision-maker>.icon.male:before {
	content: '\f183';
}

#decision-makers .decision-maker .text-container {
	display: table;
	float: right;
	height: 100%;
	min-height: 40px;
	width: calc(100% - 35px);
	vertical-align: top;
}

#decision-makers .decision-maker .text {
	display: table-cell;
	color: #444;
	font-size: 13px;
	vertical-align: middle;
}

#decision-makers .decision-maker .text strong {
	font-weight: bold;
}

#decision-makers .decision-maker .means-of-contact {
	margin-top: 7px;
}

#decision-makers .decision-maker .means-of-contact li {
	margin-bottom: 3px;
}

#decision-makers .decision-maker .means-of-contact li:last-of-type {
	margin-bottom: 0;
}

#decision-makers .decision-maker .means-of-contact a {
	display: block;
	color: #555;
	font-size: 12px;
	text-decoration: none;
}

#decision-makers .decision-maker .means-of-contact a .icon {
	display: inline-block;
}

#decision-makers .decision-maker .means-of-contact a .icon:before {
	display: inline-block;
	width: 12px;
	font-size: 11px;
	text-align: center;
}

/* Admin info */
#admin-info {}

/* Legal notice */
#legal-notice {
	box-sizing: border-box;
	width: 100%;
	padding: 0 50px 30px;
	margin: 30px 0;
}

#legal-notice .title {
	width: 100%;
	margin: 40px 0;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#legal-notice .subtitle {
	display: block;
	margin-bottom: 5px;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#small-column #legal-notice .subtitle {
	display: inline-block;
	margin-bottom: 5px;
	color: #333;
	font-size: 13px;
	font-weight: bold;
}

#legal-notice p {
	display: block;
	margin-bottom: 15px;
	color: #444;
	font-size: 14px;
}

#small-column #legal-notice p {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 13px;
}

/* Presentation */
#presentation {
	padding: 0 50px 30px;
}

#presentation>h2,
#presentation>.title {
	width: 100%;
	margin: 40px 0;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#presentation>p {
	font-size: 14px;
	color: #222;
	line-height: 21px;
}

#presentation>p a {
	color: var(--primary-color);
}

#presentation>p a:hover {
	text-decoration: underline;
}

#presentation>p strong {
	font-weight: bold;
}

#presentation>ul {
	color: #222;
	list-style-type: disc;
	margin: 5px 0 5px 16px;
}

#presentation>ul>li {
	color: #222;
	font-size: 14px;
	line-height: 19px;
	margin: 4px 0;
	padding-left: 0;
}

/* Presentation short */
#presentation-short {
	clear: both;
	box-sizing: border-box;
	width: 100%;
	padding: 0 50px;
}

#presentation-short .title {
	width: 100%;
	margin: 20px 0 40px;
	color: #222;
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#presentation-short p {
	display: inline;
	color: #222;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
}

#presentation-short p a {
	color: var(--primary-color);
}

#presentation-short p a:hover {
	text-decoration: underline;
}

#presentation-short p strong {
	font-weight: normal;
}

#presentation-short ul {
	display: inline;
}

#presentation-short ul li {
	display: inline;
	color: #222;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
}

#presentation-short br {
	display: none;
}

.presentation-short-more-link {
	box-sizing: border-box;
	display: block;
	float: right;
	height: 37px;
	padding: 0 13px 3px 12px;
	margin: 0 50px 40px 0;
	border: 1px solid var(--primary-color);
	border-radius: 2px;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 37px;
	text-decoration: none;
	text-transform: uppercase;
}

.presentation-short-more-link:hover {
	background-color: var(--primary-color);
	color: var(--primary-highcontrast-color);
}

.presentation-short-more-link:active {
	background-color: var(--primary-dark-color);
	border-color: var(--primary-dark-color);
}

@media only screen and (max-width: 850px) {
	#presentation-short .title {
		font-size: 24px;
		line-height: 24px;
	}
}

/* Footer */
#main-footer {
	box-sizing: border-box;
	width: 100%;
	padding: 32px 40px 0;
	background-color: var(--primary-color);
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	text-align: right;
}

@media only screen and (max-width: 850px) {
	#main-footer {
		padding: 25px;
	}
}

#main-footer .links {
	display: block;
	height: 26px;
	margin-top: 5px;
	font-size: 0;
}

#main-footer .links a {
	display: inline-block;
	margin-left: 12px;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	text-decoration: none;
	cursor: pointer;
}

#main-footer .links a:first-of-type {
	margin-left: 0;
}

#main-footer .links a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 850px) {
	#main-footer .links {
		clear: both;
		height: auto;
		margin: 15px 0 0;
	}

	#main-footer .links a {
		display: block;
		width: 100%;
		margin: 0 0 10px 0;
		text-align: center;
	}

	#main-footer .links a:last-of-type {
		margin-bottom: 0;
	}
}

#main-footer .editus-logo {
	display: block;
	float: right;
	height: 84px;
	width: 108px;
	margin: -14px 0 20px 5px;
	background: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' alt='Editus Luxembourg' viewBox='0 0 1325.85 517.41'%3E%3Cpath fill='%23ffffff' d='M1095.82 137.85l73.73 42.56a10.91 10.91 0 0 0 16.37-9.45V85.83a10.92 10.92 0 0 0-16.37-9.46l-73.73 42.57a10.92 10.92 0 0 0 0 18.91zm195.91-60.09L1218 35.2a10.92 10.92 0 0 0-16.38 9.45v85.13a10.92 10.92 0 0 0 16.38 9.45l73.72-42.56a10.92 10.92 0 0 0 .01-18.91zM315.84 379.25a126.05 126.05 0 1 1 95.64-208.1V80.34c0-34.54-37.38-56.12-67.29-38.85L41.23 216.4c-29.91 17.27-29.91 60.44 0 77.71L344.19 469c29.91 17.27 67.29-4.31 67.29-38.85v-94.9a125.72 125.72 0 0 1-95.64 44zM649.23 350V158.21h23V350zM621 257.38l.07-2.87-.07-2.88V100.41h-23.28v92.24C580.24 172.32 554.47 159 525.61 159c-51.56 0-94.81 43.25-94.81 96.81 0 50.56 43.25 94.14 94.81 94.14 49.93 0 93.21-40.45 95.37-91.48h0zM525.94 329c-39.59 0-71.86-33.6-71.86-73.52 0-41.25 31.94-75.51 71.53-75.51s71.31 33.08 72.11 72v3.11c-.8 40.92-31.4 73.92-71.78 73.92zm541.44-90.48c-30.08-7.67-43.49-17.84-43.49-33 0-17 17-30.33 38.73-30.33 20.62 0 35.33 11.48 38 29.42h26.64c-1.45-26.61-28.19-46.41-63.35-46.41-38.53 0-66.49 20.91-66.49 49.71 0 30.49 25.65 39.31 67.5 51.16 21.92 6.22 44.33 15.61 44.33 38.11s-17.61 35.8-47.1 35.8c-27.11 0-43.87-14.27-45.25-38.31h-26.49c.54 32.61 29.9 55.3 71.77 55.3 44.67 0 73.54-21.12 73.54-53.81 0-25.38-11.18-42.95-68.34-57.64z'/%3E%3Ccircle fill='%23ffffff' cx='660.77' cy='112.49' r='11.72'/%3E%3Cpath fill='%23ffffff' d='M944.44 158.21v108c0 40.19-17 62.43-53.41 63-36.42-.59-53.4-22.83-53.4-63v-108h-23v110.67c0 60 38.36 80.54 76.3 81.09h.2c37.94-.55 76.3-21.13 76.3-81.09V158.21zM245.37 263.14c2 36.26 35.26 65.87 70.53 65.87 28.28 0 55.22-16.3 65.21-42.91h24.62c-14 39.25-50.57 63.88-89.5 63.88a95.07 95.07 0 0 1-94.82-95.16c0-52.9 43.58-95.81 94.49-95.81 54.56 0 95.48 46.91 95.48 97.14 0 2.33-.33 4.66-.33 7zm142.06-21c-6.66-36.6-35.6-62.21-71.53-62.21-33.94 0-64.21 24.62-70.53 62.21zm414.02 81.25c-7.34 3.68-16.17 5.71-26.68 5.88-33.15-.54-50.15-19.07-52.94-52.7v-95h43v-23.48h-43v-57.68h-23.46v168.47c0 60 38.36 80.54 76.3 81.09h.2a94.89 94.89 0 0 0 26.58-4.05zm-356.07 54.8h5.4l8.51 20.26h.15l8.43-20.26h5.41V405h-3.63v-22h-.08l-9 22h-2.42l-9-22H449v22h-3.63zm48.76 0h3.29L508.89 405h-4.24l-2.65-6.66h-12.77l-2.65 6.66h-4.23zm6.51 17l-5-12.28h-.08l-5.07 12.28zm17.58-17h9.41a10.93 10.93 0 0 1 4.23.7 7.19 7.19 0 0 1 2.63 1.77 6.1 6.1 0 0 1 1.34 2.42 9.67 9.67 0 0 1 .38 2.59 6.94 6.94 0 0 1-.45 2.48 7.1 7.1 0 0 1-1.31 2.15 7.33 7.33 0 0 1-4.82 2.44l7.6 12.21h-4.54l-6.8-11.79h-4V405h-3.62zm3.62 11.81h4.77a12.39 12.39 0 0 0 2.1-.17 5.61 5.61 0 0 0 1.85-.62 3.41 3.41 0 0 0 1.3-1.31 4.33 4.33 0 0 0 .49-2.21 4.38 4.38 0 0 0-.49-2.21 3.38 3.38 0 0 0-1.3-1.3 5.62 5.62 0 0 0-1.85-.63 13.52 13.52 0 0 0-2.1-.17h-4.77zm25.33-11.81h3.63v11.57h.3L563 378.19h5l-12.93 12.36 13.8 14.4h-5.29l-12.48-13.38h-.3V405h-3.63zm30.36 0h17.28v3.4h-13.65v8h12.7V393h-12.7v8.58h14.33V405h-18zm34.55 3.4h-8.62v-3.4h20.87v3.4h-8.62V405h-3.63zm21.97-3.4h3.62V405h-3.62zm16.36 0h4.77l14.74 22h.07v-22h3.63V405H669l-14.89-22h-.08v22h-3.63zM709.17 390v13.2a12.13 12.13 0 0 1-2.23 1.05 21.06 21.06 0 0 1-2.59.78 22.4 22.4 0 0 1-2.72.47 24 24 0 0 1-2.59.15 15.32 15.32 0 0 1-6.04-1.15 13.59 13.59 0 0 1-4.5-3.06 13.23 13.23 0 0 1-2.79-4.48 15 15 0 0 1-1-5.39 14.78 14.78 0 0 1 1-5.56 13.76 13.76 0 0 1 2.88-4.46 13.15 13.15 0 0 1 4.4-3 14.55 14.55 0 0 1 5.63-1.07 16.85 16.85 0 0 1 6.05.92 11.12 11.12 0 0 1 3.93 2.56l-2.57 2.76a9.6 9.6 0 0 0-3.51-2.22 12.34 12.34 0 0 0-3.9-.62 9.69 9.69 0 0 0-7.33 3.14 10 10 0 0 0-2 3.38 11.86 11.86 0 0 0-.72 4.14 11.08 11.08 0 0 0 .79 4.22 10.59 10.59 0 0 0 2.19 3.38 10.14 10.14 0 0 0 3.29 2.25 10.37 10.37 0 0 0 4.12.81 17.72 17.72 0 0 0 3.65-.36 10 10 0 0 0 2.93-1v-7.44h-5.93V390zm52.32 15h-4.87l-3.29-3.55a13.68 13.68 0 0 1-3.61 3.14 9.12 9.12 0 0 1-4.59 1.09 10.66 10.66 0 0 1-3.94-.66 7.71 7.71 0 0 1-2.74-1.76 6.89 6.89 0 0 1-1.59-2.47 8.17 8.17 0 0 1-.51-2.86 6.41 6.41 0 0 1 .5-2.55 7.44 7.44 0 0 1 1.32-2.1 10.09 10.09 0 0 1 2-1.7 17.12 17.12 0 0 1 2.32-1.32 19.37 19.37 0 0 1-2.21-2.8 6.12 6.12 0 0 1-.93-3.4 5.91 5.91 0 0 1 .59-2.68 5.74 5.74 0 0 1 1.57-2 7 7 0 0 1 2.27-1.21 8.65 8.65 0 0 1 2.72-.42 9.3 9.3 0 0 1 2.66.38 6.27 6.27 0 0 1 2.21 1.14 5.38 5.38 0 0 1 1.5 1.89 6 6 0 0 1 .55 2.64 5.26 5.26 0 0 1-.5 2.29 7.25 7.25 0 0 1-1.28 1.89 10 10 0 0 1-1.78 1.51 19.5 19.5 0 0 1-2 1.19l5.29 5.52 3.37-5.48h4.12l-5.18 8zm-16.78-12.62l-1.61 1a8.83 8.83 0 0 0-1.45 1.17 5.33 5.33 0 0 0-1 1.46 4.29 4.29 0 0 0 0 3.66 4.71 4.71 0 0 0 1.13 1.5 5.37 5.37 0 0 0 1.61 1 4.9 4.9 0 0 0 1.87.36 5.49 5.49 0 0 0 1.83-.3 7.83 7.83 0 0 0 1.59-.78 8.27 8.27 0 0 0 1.32-1.15 14.69 14.69 0 0 0 1.15-1.24zm5-8.55a2.65 2.65 0 0 0-.91-2.1 3.53 3.53 0 0 0-2.34-.77 4 4 0 0 0-2.5.81 2.75 2.75 0 0 0-1.06 2.33 3.25 3.25 0 0 0 .25 1.28 5.56 5.56 0 0 0 .64 1.17 9 9 0 0 0 .85 1.06l.91.95 1.42-.83a9.84 9.84 0 0 0 1.34-1 5.29 5.29 0 0 0 1-1.27 3.26 3.26 0 0 0 .43-1.68zm37.22-5.64h9.34a17.23 17.23 0 0 1 5 .64 13.24 13.24 0 0 1 3.71 1.72 11 11 0 0 1 2.61 2.48 13.21 13.21 0 0 1 1.64 2.87 15 15 0 0 1 .87 3 15.16 15.16 0 0 1 .27 2.72 13.47 13.47 0 0 1-1 5 12.42 12.42 0 0 1-2.8 4.27 13.72 13.72 0 0 1-4.59 3 16.4 16.4 0 0 1-6.33 1.13h-8.74zm3.63 23.36h4.58a15.11 15.11 0 0 0 4.36-.62 10.73 10.73 0 0 0 3.62-1.87 9.07 9.07 0 0 0 2.45-3.12 9.86 9.86 0 0 0 .91-4.37 12.94 12.94 0 0 0-.42-3 9.1 9.1 0 0 0-1.56-3.27 9.39 9.39 0 0 0-3.2-2.62 11.3 11.3 0 0 0-5.29-1.08h-5.45zm39.25-23.36h3.28L844.55 405h-4.24l-2.68-6.61h-12.74l-2.65 6.61H818zm6.5 17l-5-12.28h-.08l-5.06 12.28zm19.69-13.6h-8.62v-3.4h20.87v3.4h-8.62V405H856zm26.88-3.4h3.29L897.63 405h-4.24l-2.68-6.61H878l-2.68 6.61h-4.23zm6.5 17l-5-12.28h-.07l-5.07 12.28zm34.75 4.17a5.89 5.89 0 0 0 2.51 2.17 7.46 7.46 0 0 0 3.16.7 6.39 6.39 0 0 0 1.85-.28 5.64 5.64 0 0 0 1.72-.85 4.72 4.72 0 0 0 1.27-1.4 3.82 3.82 0 0 0 .49-1.93 2.88 2.88 0 0 0-1-2.36 8.29 8.29 0 0 0-2.43-1.36l-3.18-1.06a12.63 12.63 0 0 1-3.17-1.42 7.09 7.09 0 0 1-3.43-6.58 7.12 7.12 0 0 1 2.12-4.91 9 9 0 0 1 2.82-1.84 10.47 10.47 0 0 1 4.14-.73 14.49 14.49 0 0 1 4.19.6 7.23 7.23 0 0 1 3.52 2.46l-3 2.68a4.94 4.94 0 0 0-1.93-1.7 6.05 6.05 0 0 0-2.83-.64 6.79 6.79 0 0 0-2.52.4 4.41 4.41 0 0 0-1.6 1 3.42 3.42 0 0 0-.85 1.34 4 4 0 0 0-.25 1.32 3.38 3.38 0 0 0 1 2.61 7.65 7.65 0 0 0 2.44 1.48 33.14 33.14 0 0 0 3.18 1 13.62 13.62 0 0 1 3.17 1.26 7.44 7.44 0 0 1 2.44 2.2 6.39 6.39 0 0 1 1 3.79 8 8 0 0 1-.73 3.48 7.75 7.75 0 0 1-2 2.61 8.71 8.71 0 0 1-3 1.63 11.6 11.6 0 0 1-3.63.56 13.24 13.24 0 0 1-4.87-.9 8.07 8.07 0 0 1-3.67-2.8zm26.08-21.17h17.28v3.4h-13.65v8h12.7V393h-12.7v8.58h14.33V405h-18zm28.96 0h9.41a11 11 0 0 1 4.24.7 7.24 7.24 0 0 1 2.62 1.77 6.12 6.12 0 0 1 1.35 2.42 9.64 9.64 0 0 1 .37 2.59 6.94 6.94 0 0 1-.45 2.48 7.07 7.07 0 0 1-1.3 2.15 7.33 7.33 0 0 1-4.82 2.44l7.59 12.26h-4.53l-6.81-11.79h-4V405h-3.63zM982.8 390h4.76a12.23 12.23 0 0 0 2.1-.17 5.61 5.61 0 0 0 1.85-.62 3.43 3.43 0 0 0 1.31-1.31 4.44 4.44 0 0 0 .49-2.21 4.49 4.49 0 0 0-.49-2.21 3.41 3.41 0 0 0-1.31-1.3 5.62 5.62 0 0 0-1.85-.63 13.32 13.32 0 0 0-2.1-.17h-4.76zm21.66-11.81h4.2l7.86 21.77h.07l8.17-21.77h4L1018.18 405h-3.4zm33.34 0h3.63V405h-3.63zm35.01 5.81a7.61 7.61 0 0 0-2.87-2.27 8.57 8.57 0 0 0-3.6-.79 9.58 9.58 0 0 0-4.1.85 9.3 9.3 0 0 0-3.13 2.33 10.59 10.59 0 0 0-2 3.45 12.45 12.45 0 0 0-.72 4.26 11.79 11.79 0 0 0 .68 4 10.13 10.13 0 0 0 2 3.33 9.12 9.12 0 0 0 3.14 2.27 10.17 10.17 0 0 0 4.19.83 8.35 8.35 0 0 0 4.05-.94 8.76 8.76 0 0 0 2.95-2.65l3.06 2.31a12.55 12.55 0 0 1-1.06 1.19 11 11 0 0 1-2 1.55 14.58 14.58 0 0 1-3 1.36 12.83 12.83 0 0 1-4.06.58 13.15 13.15 0 0 1-5.73-1.21 13.8 13.8 0 0 1-4.35-3.17 14.12 14.12 0 0 1-3.68-9.45 15.69 15.69 0 0 1 1-5.73 13.67 13.67 0 0 1 2.85-4.54 12.74 12.74 0 0 1 4.41-3 14.65 14.65 0 0 1 5.67-1.06 13.91 13.91 0 0 1 5.2 1 9.6 9.6 0 0 1 4.17 3.14zm13.84-5.81h17.27v3.4h-13.65v8H1103V393h-12.71v8.58h14.33V405h-17.95zm29.75 21.17a5.89 5.89 0 0 0 2.51 2.17 7.46 7.46 0 0 0 3.16.7 6.39 6.39 0 0 0 1.85-.28 5.64 5.64 0 0 0 1.72-.85 4.72 4.72 0 0 0 1.27-1.4 3.82 3.82 0 0 0 .49-1.93 2.9 2.9 0 0 0-1-2.36 8.48 8.48 0 0 0-2.44-1.36l-3.18-1.06a12.63 12.63 0 0 1-3.17-1.42 7.68 7.68 0 0 1-2.44-2.44 7.55 7.55 0 0 1-1-4.14 7.14 7.14 0 0 1 .51-2.49 7 7 0 0 1 1.61-2.42 9 9 0 0 1 2.82-1.84 10.47 10.47 0 0 1 4.14-.73 14.49 14.49 0 0 1 4.19.6 7.23 7.23 0 0 1 3.52 2.46l-3 2.68a4.94 4.94 0 0 0-1.93-1.7 6.05 6.05 0 0 0-2.83-.64 6.79 6.79 0 0 0-2.52.4 4.41 4.41 0 0 0-1.6 1 3.42 3.42 0 0 0-.85 1.34 4 4 0 0 0-.25 1.32 3.38 3.38 0 0 0 1 2.61 7.65 7.65 0 0 0 2.44 1.48 33.14 33.14 0 0 0 3.18 1 13.62 13.62 0 0 1 3.17 1.26 7.34 7.34 0 0 1 2.44 2.2 6.39 6.39 0 0 1 1 3.79 8 8 0 0 1-.73 3.48 7.62 7.62 0 0 1-2 2.61 8.71 8.71 0 0 1-3 1.63 11.6 11.6 0 0 1-3.63.56 13.24 13.24 0 0 1-4.87-.9 8.07 8.07 0 0 1-3.67-2.8z'/%3E%3C/svg%3E") no-repeat right center;
	background-size: 95px 70px;
	overflow: visible;
}

@media only screen and (max-width: 850px) {
	#main-footer .editus-logo {
		margin: 0;
	}
}

@media screen and (max-width: 641px) {
	#main-footer {
		box-sizing: border-box;
		height: auto;
		width: 100%;
	}
}

/* News */
#news {
	margin: 30px 0;
}

#news .title {
	display: block;
	width: 100%;
	margin: 40px 0;
	color: #222;
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#news-list {
	margin-bottom: 5px;
}

#news-list .news {
	position: relative;
	padding: 25px 0 15px 40px;
	border-bottom: 2px solid #dedede;
}

#news-list .news:before {
	content: '';
	display: block;
	position: absolute;
	top: 25px;
	left: 0;
	height: 30px;
	width: 30px;
}

#news-list .news.new:before {
	background: url("~/Custom_Code/Images/E101/article-new.png") no-repeat;
}

#news-list .news.event:before {
	background: url("~/Custom_Code/Images/E101/article-event.png") no-repeat;
}

#news-list .news.promo:before {
	background: url("~/Custom_Code/Images/E101/article-promo.png") no-repeat;
}

#news-list .news.last-minute:before {
	background: url("~/Custom_Code/Images/E101/article-last-minute.png") no-repeat;
}

#news-list .news-date {
	display: block;
	margin-bottom: 7px;
	color: #646464;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

#news-list .news-title {
	display: block;
	margin-bottom: 10px;
	color: #222;
	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
}

#news-list .news-description {
	display: block;
	margin-bottom: 15px;
	color: #222;
	font-size: 15px;
	line-height: 20px;
}

#news-list .news-description a {
	color: var(--primary-color);
	font-weight: bold;
	text-decoration: underline;
}

#news-list .news-description a:hover {
	text-decoration: none;
}

#news-list .news-description ul {
	margin: 5px 0 5px 16px;
	list-style-type: disc;
}

#news-list .news-description li {
	padding-left: 0;
	margin: 4px 0;
	font-size: 15px;
	color: #545454;
	line-height: 20px;
}

#news-list .news-description strong,
#news-list .news-description b {
	font-weight: bold;
}

#news-legend {
	padding-top: 20px;
	font-size: 0;
}

#news-legend li {
	display: inline-block;
	height: 30px;
	margin-left: 15px;
	color: #222;
	font-size: 15px;
	font-weight: 500;
	line-height: 30px;
	text-transform: uppercase;
	opacity: .6;
	vertical-align: top;
}

#news-legend li:first-child {
	margin-left: 0;
}

#news-legend li:before {
	content: '';
	display: inline-block;
	height: 30px;
	width: 30px;
	margin-right: 5px;
	vertical-align: top;
}

#news-legend li.new:before {
	background: url("~/Custom_Code/Images/E101/article-new.png") no-repeat;
}

#news-legend li.event:before {
	background: url("~/Custom_Code/Images/E101/article-event.png") no-repeat;
}

#news-legend li.promo:before {
	background: url("~/Custom_Code/Images/E101/article-promo.png") no-repeat;
}

#news-legend li.last-minute:before {
	background: url("~/Custom_Code/Images/E101/article-last-minute.png") no-repeat;
}

@media only screen and (max-width: 979px) {
	#news-legend {
		text-align: center;
	}

	#news-legend li {
		display: block;
		margin: 0 0 7px;
	}
}

/* Sitemap */
#sitemap {
	box-sizing: border-box;
	width: 100%;
	padding: 0 50px 30px;
	margin: 30px 0;
}

#sitemap .title {
	width: 100%;
	margin: 40px 0;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#sitemap ul {
	margin-top: 20px;
}

#sitemap ul ul {
	margin: 5px 0;
}

#sitemap ul li {
	padding: 5px 0;
}

#sitemap ul li ul li {
	margin-left: 20px;
}

#sitemap ul li a {
	padding-top: 1px;
	margin: 5px 0 8px;
	font-size: 13px;
	line-height: 15px;
	color: #222;
	text-decoration: none;
}

#sitemap ul li a:hover {
	text-decoration: underline;
}

#sitemap ul li a:before {
	content: '\f054';
	display: inline-block;
	margin-right: 5px;
	color: #333;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
}

/* Products and services */
#products-services {
	padding: 0 50px 30px;
}

#products-services-photo {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

#products-services-photo img {
	display: inline-block;
	max-height: 410px;
	max-width: 100%;
	border-radius: 1px;
}

#products-services .title {
	width: 100%;
	margin: 40px 0;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#products-services section h3 {
	display: block;
	padding: 7px 15px 7px 0;
	margin: 15px 0 10px;
	color: #222;
	font-size: 19px;
	font-weight: 700;
}

#products-services section ul {
	margin-left: 20px;
	list-style-type: disc;
}

#products-services section ul li {
	display: block;
	float: left;
	width: 250px;
	padding: 0 10px 0 0;
	margin: 0 0 10px;
	color: #333;
	font-size: 16px;
	font-weight: normal;
}

/* Title band */
#page-title-band-container {
	position: relative;
	height: 218px;
	width: 100%;
	margin: 0;
}

#page-title-band {
	position: relative;
	height: 100%;
	width: 100%;
	background-color: var(--primary-color);
}

#page-title-band:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 70px 1200px 0 0;
	border-color: #fff transparent transparent transparent;
	z-index: 4;
}

#page-title-band:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 70px 1200px;
	border-color: transparent transparent #fff transparent;
	z-index: 4;
}

@media only screen and (max-width: 1200px) {

	#page-title-band:before,
	#page-title-band:after {
		display: none;
	}
}

#page-title-band .title {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	float: none;
	margin: 0;
	height: 218px;
	width: 100%;
	background-color: var(--primary-color);
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	line-height: 218px;
	text-align: center;
	z-index: 2;
	transition: opacity .3s ease;
}

#page-title-band .background {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 218px;
	width: 100%;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
	opacity: .25;
}

@media only screen and (max-width: 1200px) {
	#page-title-band {
		height: auto;
	}

	#page-title-band .title {
		box-sizing: border-box;
		height: auto;
		padding: 30px 15px;
		line-height: 38px;
	}

	#page-title-band .title {
		display: none;
	}

	#page-title-band .title:before,
	#page-title-band .title:after {
		display: none;
	}
}

/* Presentation slider */
#presentation-slider {
	position: relative;
	height: 240px;
	width: 100%;
	margin: 15px 0 10px;
	overflow: hidden;
}

#presentation-slider img {
	height: 240px;
	padding: 0 7.5px;
	opacity: .5;
	transition: opacity 160ms ease;
}

#presentation-slider img.slick-current {
	opacity: 1;
}

#presentation-slider .slick-arrow {
	position: absolute;
	top: 50%;
	height: 36px;
	width: 34px;
	transform: translateY(-50%);
	background-color: var(--primary-color);
	border: none;
	border-radius: 20px;
	color: var(--primary-highcontrast-color);
	font-size: 16px;
	line-height: 36px;
	text-align: center;
	opacity: .8;
	transition: opacity 80ms ease;
	cursor: pointer;
	z-index: 8999;
}

#presentation-slider .slick-arrow:hover {
	opacity: 1;
}

#presentation-slider .slick-arrow.slick-prev {
	left: 0;
	border-radius: 0 18px 18px 0;
}

#presentation-slider .slick-arrow.slick-next {
	right: 0;
	border-radius: 18px 0 0 18px;
}

/* Catalog homepage */
#catalog-homepage-title {
	display: block;
	margin: 20px 0 15px;
	color: var(--primary-color);
	font-size: 24px;
}

.catalog-homepage-description {
	margin: 20px 0 15px;
	font-size: 15px;
	line-height: 19px;
	color: #454545;
}

/* Catalog */
#catalog {
	padding: 0 50px 30px;
}

#catalog>.description {
	display: block;
	padding: 5px 0 12px;
	color: #555;
	font-size: 14px;
	line-height: 18px;
}

#catalog #catalog-toolbar {
	height: 30px;
}

#catalog #catalog-toolbar:after {
	content: '';
	display: block;
	clear: both;
}

/* List grid view */
#list-grid-view {
	display: none;
}

/* Filters */
#catalog-toolbar .catalog-filters-title {
	display: inline-block;
	float: left;
	height: 20px;
	padding-right: 7px;
	color: #333;
	font-size: 13px;
	font-weight: bold;
	line-height: 24px;
}

#catalog-filters {
	display: inline-block;
	float: left;
	width: auto;
	font-size: 0;
	vertical-align: top;
}

#catalog-filters li {
	display: inline-block;
	padding: 0 !important;
}

#catalog-filters input[type="submit"] {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	height: 24px;
	width: auto;
	padding: 0 4px;
	margin-right: 4px;
	background-color: transparent;
	border: 1px solid #333;
	border-radius: 3px;
	color: #333;
	font-size: 13px;
	font-weight: bold;
	line-height: 24px;
	cursor: pointer;
	outline: none;
}

#catalog-filters input[type="submit"].active {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--primary-highcontrast-color);
}

/* Pagination */
#catalog-articles>.PagerControl {
	display: block;
	height: 24px;
	width: auto;
	line-height: 24px;
	text-align: right;
}

#catalog-articles>.PagerControl:first-of-type {
	margin: -28px 0 15px;
}

#catalog-articles .PagerControl .PagerNumberArea {
	font-size: 0;
}

#catalog-articles>.PagerControl .PagerNumberArea>span {
	display: inline-block;
	padding: 0 !important;
	vertical-align: top;
}

#catalog-articles>.PagerControl .PagerNumberArea a,
#catalog-articles>.PagerControl .PagerNumberArea .SelectedPage {
	display: inline-block;
	min-width: 12px;
	padding: 0 3px;
	color: #888;
	font-size: 15px;
	font-weight: normal;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
}

#catalog-articles>.PagerControl .PagerNumberArea a:hover {
	color: #333;
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedPage {
	color: var(--primary-color);
	font-weight: bold;
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedPrev,
#catalog-articles>.PagerControl .PagerNumberArea .UnselectedPrev,
#catalog-articles>.PagerControl .PagerNumberArea .SelectedNext,
#catalog-articles>.PagerControl .PagerNumberArea .UnselectedNext {
	display: inline-block;
	font-size: 0;
	text-align: center;
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedPrev:after,
#catalog-articles>.PagerControl .PagerNumberArea .UnselectedPrev:after,
#catalog-articles>.PagerControl .PagerNumberArea .SelectedNext:after,
#catalog-articles>.PagerControl .PagerNumberArea .UnselectedNext:after {
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-size: 13px;
	font-weight: 900;
	line-height: 24px;
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedPrev {
	margin-right: 5px;
	color: rgba(0, 0, 0, .15);
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedNext {
	margin: 0 5px;
	color: rgba(0, 0, 0, .15);
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedPrev:after,
#catalog-articles>.PagerControl .PagerNumberArea .UnselectedPrev:after {
	content: '\f053';
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedNext:after,
#catalog-articles>.PagerControl .PagerNumberArea .UnselectedNext:after {
	content: '\f054';
}

/* Articles */
#catalog-articles>span {
	display: block;
	clear: both;
	margin-top: 22px;
	font-size: 0;
	text-align: center;
}

#catalog-articles>span>span {
	display: inline-block;
	width: calc(25% - 16px);
	margin: 0 8px;
	font-size: 0;
	text-align: left;
}

#catalog-articles>span>span .product {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	height: 214px;
	width: 100%;
	margin: 0 8px 16px 8px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 1px;
	line-height: 12px;
	vertical-align: top;
	overflow: hidden;
}

#catalog-articles>span>span .product:hover:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .3);
	z-index: 2;
}

#catalog-articles>span>span .product:hover .label {
	position: absolute;
	top: 40px;
	left: 0;
	height: 25px;
	width: 100%;
	color: #fff;
	font-size: 19px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	z-index: 3;
}

#catalog-articles>span>span .product:hover .price {
	position: absolute;
	bottom: 78px;
	left: 0;
	height: 25px;
	width: 100%;
	color: #fff;
	font-size: 19px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	z-index: 3;
}

#catalog-articles>span>span .product:hover .button {
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	bottom: 40px;
	left: 50%;
	width: auto;
	padding: 5px 10px;
	transform: translateX(-50%);
	background: var(--primary-color);
	border: none;
	border-radius: 1px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	z-index: 3;
}

#catalog-articles .product .banner {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 90px;
	width: 90px;
	z-index: 2;
	overflow: hidden;
}

#catalog-articles .product .banner .banner-label {
	box-sizing: border-box;
	position: absolute;
	top: 20px;
	left: -25px;
	height: 18px;
	width: 120px;
	padding-top: 1px;
	color: #fff;
	line-height: 18px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: .5px;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

#catalog-articles .product .banner.promo .banner-label {
	background-color: #ac0f2d;
}

#catalog-articles .product .banner.sale .banner-label {
	background-color: #cf920f;
}

#catalog-articles .product .banner.new .banner-label {
	background-color: #75ac0f;
	font-size: 10px;
}

#catalog-articles .product .picture-container {
	height: 100%;
	width: 100%;
	border-radius: 1px;
	text-align: center;
	overflow: hidden;
}

#catalog-articles .product .picture-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: 100%;
	transform: translate(-50%, -50%);
}

#catalog-articles .product .label-container {
	content: '';
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .25);
	text-align: center;
}

#catalog-articles .product:hover .label-container {
	display: block;
}

#catalog-articles .product .label-container .label {
	display: block;
	position: absolute;
	max-height: 38px;
	width: 100%;
	top: 48px;
	left: 0;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	line-height: 19px;
	text-align: center;
	text-transform: uppercase;
	overflow: hidden;
	z-index: 4;
}

#catalog-articles .product .label-container .price {
	display: block;
	position: absolute;
	width: 100%;
	top: 92px;
	left: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	z-index: 4;
}

#catalog-articles .product .label-container .crossed {
	display: block;
	position: absolute;
	width: 100%;
	top: 112px;
	left: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	text-decoration: line-through;
	opacity: .8;
	z-index: 4;
}

#catalog-articles .product .label-container .button {
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	bottom: 52px;
	left: 50%;
	width: auto;
	padding: 0 10px;
	background: var(--primary-color);
	border: none;
	border-radius: 1px;
	transform: translateX(-50%);
	color: var(--primary-highcontrast-color);
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	z-index: 4;
}

@media all and (max-width: 979px) {
	#catalog {
		padding: 0 20px;
	}

	#catalog-articles.grid>span>span {
		display: block;
		height: 158px;
		width: 100%;
		margin: 0 0 16px 0;
		overflow: hidden;
	}

	#catalog-articles.grid .product .picture-container {
		float: left;
		height: 125px;
		width: 167px;
		margin: 10px 20px 10px 10px;
	}

	#catalog-articles.grid .product .label {
		height: auto;
		margin: 0 0 10px;
		font-size: 14px;
		line-height: 19px;
		overflow: visible;
	}

	#catalog-articles.grid .product .price {
		font-size: 17px;
		text-align: left;
	}
}

@media all and (max-width: 412px) {
	#list-grid-view {
		display: none;
	}

	#catalog-toolbar {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	#catalog-articles .PagerControl {
		display: block;
		float: none;
		height: 30px;
		width: 100%;
		text-align: center;
	}

	#catalog-articles>.PagerControl:first-of-type {
		display: none;
	}

	#catalog-articles .PagerControl .PagerNumberArea a,
	#catalog-articles .PagerControl .PagerNumberArea .SelectedPage {
		height: 30px;
		width: 30px;
		padding: 0;
		margin: 0 2px;
		background-color: #f1f1f1;
		border-radius: 4px;
		line-height: 30px;
	}

	#catalog-articles .PagerControl .PagerNumberArea .SelectedPage {
		background-color: var(--primary-color);
		color: var(--primary-highcontrast-color);
	}

	#catalog-articles .PagerControl .PagerNumberArea .SelectedPrev,
	#catalog-articles .PagerControl .PagerNumberArea .UnselectedPrev,
	#catalog-articles .PagerControl .PagerNumberArea .SelectedNext,
	#catalog-articles .PagerControl .PagerNumberArea .UnselectedNext {
		display: none;
	}

	#catalog-articles.grid>span>span {
		height: 123px;
		margin-bottom: 10px;
	}

	#catalog-articles.grid .product .picture-container {
		height: 100px;
		width: 120px;
		margin-right: 15px;
	}

	#catalog-articles.grid .product .label {
		display: block;
		padding-top: 15px;
		margin: 0 10px 5px 0;
		color: #111;
		font-size: 13px;
		line-height: 18px;
	}

	#catalog-articles.grid .product .price {
		font-size: 15px;
	}
}

/* Article details */
#article-details {
	padding: 0 50px 30px;
}

#article-details:after {
	content: '';
	display: block;
	clear: both;
}

#article-details>.title {
	width: 100%;
	margin: 40px 0 70px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#article-details-pictures {
	display: inline-block;
	position: relative;
	float: left;
	width: 45%;
	margin-right: 30px;
}

#article-details-pictures>.picture-container {
	border: 1px solid rgba(0, 0, 0, .1);
}

#article-details-pictures .banner {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 90px;
	width: 90px;
	z-index: 2;
	overflow: hidden;
}

#article-details-pictures .banner .banner-label {
	box-sizing: border-box;
	position: absolute;
	top: 20px;
	left: -25px;
	height: 18px;
	width: 120px;
	color: #fff;
	line-height: 18px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: .5px;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

#article-details-pictures .banner.promo .banner-label {
	background-color: #ac0f2d;
}

#article-details-pictures .banner.sale .banner-label {
	background-color: #cf920f;
}

#article-details-pictures .banner.new .banner-label {
	background-color: #75ac0f;
}

#article-details-pictures .main-picture {
	position: relative;
	width: 100%;
	border-radius: 1px;
}

#article-details-pictures .main-picture:hover:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, .35);
	border-radius: 1px;
}

#article-details-pictures .pictures-list {
	height: 40px;
	width: 100%;
	margin-top: 10px;
	font-size: 0;
}

#article-details-pictures .pictures-list li {
	display: inline-block;
	height: 40px;
	margin-right: 10px;
}

#article-details-pictures .pictures-list li a {
	display: block;
	height: 100%;
	opacity: .75;
	transition: opacity 100ms ease;
}

#article-details-pictures .pictures-list li a:hover {
	opacity: 1;
}

#article-details-pictures .pictures-list li img {
	height: 40px;
	border-radius: 1px;
}

#article-details-infos {
	float: right;
	width: calc(100% - 305px);
}

#article-details-infos .title {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 18px;
}

#article-details-infos .subtitle {
	display: block;
	padding: 10px 0 5px;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: bold;
}

#article-details-price .price {
	display: inline-block;
	margin-top: 10px;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: normal;
}

#article-details-price .price.crossed {
	display: inline-block;
	padding-top: 10px;
	color: #999;
	font-size: 18px;
	font-weight: normal;
	text-decoration: line-through;
}

#article-details-price,
#article-details-description {
	float: right;
	width: calc(55% - 30px);
	margin-top: 30px;
	color: #333;
	font-size: 15px;
	line-height: 20px;
}

#article-details-description {
	margin-top: 0;
}

#article-details-price .description-title,
#article-details-description .description-title {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: bold;
}

#article-details-description a {
	color: var(--primary-color);
	text-decoration: underline;
}

#article-details-description a:hover {
	text-decoration: none;
}

#article-details-description h3 {
	margin: 15px 0 5px;
	color: #646464;
	font-size: 17px;
	font-weight: normal;
	line-height: 20px;
}

#article-details-description h4 {
	margin: 10px 0 5px;
	color: #343434;
	font-size: 15px;
	font-weight: normal;
	line-height: 18px;
}

#article-details-description p {
	font-size: 14px;
	color: #545454;
	line-height: 18px;
}

#article-details-description strong,
#article-details-description b {
	font-weight: bold;
}

#article-details-description em,
#article-details-description i {
	font-style: italic;
}

#article-details-description s {
	text-decoration: line-through;
}

#article-details-description ul {
	margin: 5px 0 5px 16px;
	list-style-type: disc;
	color: var(--primary-color);
}

#article-details-description ol {
	margin-left: 18px;
	list-style-type: decimal;
	font-size: 15px;
	color: var(--primary-color);
}

#article-details-description li {
	padding-left: 0;
	margin: 4px 0;
	font-size: 15px;
	color: #545454;
	line-height: 21px;
}

#article-details-description table {
	max-width: 100% !important;
}

#article-details-infos .add-to-cart-link {
	display: block;
	float: right;
	padding: 6px 10px 6px 8px;
	margin-top: 20px;
	font-size: 14px;
	line-height: 22px;
	background-color: var(--primary-color);
	border: 0;
	border-radius: 1px;
	color: var(--primary-highcontrast-color);
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

#article-details-infos .add-to-cart-link:before {
	content: '\f07a';
	display: inline-block;
	float: left;
	padding-right: 6px;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-weight: 900;
}

@media all and (max-width: 512px) {
	#article-details-pictures {
		width: 100%;
		margin-bottom: 30px;
	}

	#article-details-infos {
		float: none;
		width: 100%;
	}
}

/* Catalog details */
#article-details-block {
	display: table-cell;
	vertical-align: middle;
	width: 282px;
	float: left;
}

#article-details-block #article-details-photo {
	position: relative;
}

#article-details-block #article-details-photo #link-zoom {
	display: block;
}

#article-details-block #article-details-photo #viewer-photo {
	border: 1px solid #ededed;
	border-collapse: collapse;
	display: table-cell;
	height: 210px;
	overflow: hidden;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 280px;
	cursor: pointer;
}

#article-details-block #article-details-photo-block #viewer-photo img {
	border-radius: 1px;
	max-height: 210px;
	max-width: 280px;
	vertical-align: middle;
}

#article-details-block #article-details-photo #zoom {
	cursor: pointer;
	left: 112px;
	position: absolute;
	top: 85px;
	display: none;
}

#article-details-block #article-details-photo:hover #zoom {
	display: block;
}

#article-details-block #article-details-photo #zoom img {
	display: block;
	opacity: 0.8;
}

#article-details-block #article-details-photo #zoom img:hover {
	opacity: 1;
}

/* Catalog sub-menu */
#catalog-submenu {
	margin-bottom: 30px;
}

#catalog-submenu li {
	display: block;
	margin-bottom: 2px;
}

#catalog-submenu li a {
	box-sizing: border-box;
	display: block;
	position: relative;
	min-height: 36px;
	width: 100%;
	padding: 11px 8px 0 10px;
	background: var(--primary-color);
	color: var(--primary-highcontrast-color);
	font-size: 14px;
	text-decoration: none;
	border-radius: 1px;
}

#catalog-submenu li:first-of-type a {
	border-radius: 5px 5px 1px 1px;
}

#catalog-submenu li:last-of-type a {
	border-radius: 1px 1px 5px 5px;
}

#catalog-submenu li:only-child a {
	border-radius: 5px;
}

#catalog-submenu li a:hover:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .035);
}

#catalog-submenu li.Highlighted a,
#catalog-submenu li.Highlighted a:hover {
	background: var(--primary-dark-color);
	color: var(--primary-highcontrast-color);
}

#catalog-submenu li.Highlighted a:after {
	content: '\f054';
	display: inline-block;
	float: right;
	margin-left: 5px;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-weight: 900;
}

/* Breadcrumbs */
.breadcrumb {
	clear: both;
	box-sizing: border-box;
	height: auto;
	width: 100%;
	padding: 15px 30px;
	margin: 30px 0 90px;
	background: transparent;
	border-top: 1px solid #a2a2a2;
	border-radius: 0;
}

.breadcrumb span {
	display: inline-block;
	margin-right: 10px;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	vertical-align: top;
}

.breadcrumb a {
	display: inline-block;
	margin-right: 10px;
	color: #a2a2a2;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	text-decoration: none;
	vertical-align: top;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb a:first-of-type span {
	display: none;
}

.breadcrumb .CMSBreadCrumbsCurrentItem {
	color: var(--primary-color);
}

.breadcrumb .arrow {
	display: inline-block;
	height: 17px;
	width: 6px;
	font-size: 0;
	vertical-align: top;
}

.breadcrumb .arrow:before {
	content: '\f054';
	display: block;
	height: 17px;
	width: 6px;
	color: #a2a2a2;
	font-family: "Font Awesome 5 Free";
	font-size: 9px;
	font-weight: bold;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 17px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

/* Contact */
#contact {
	padding: 0 50px 30px;
}

#contact-form-subtitle {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 20px;
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
}

#contact-form-mandatory-message {
	display: block;
	margin-bottom: 15px;
	color: #989898;
	font-size: 12px;
	font-style: italic;
	text-align: right;
}

#contact-form {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 15px;
	text-align: center;
}

#contact-form .error,
#contact-form .field-validation-error,
#contact-form .success {
    display: inline-block;
    width: auto;
    padding: 10px;
    margin: 10px 0;
    background-color: #b40b1b;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
}

#contact-form .error:before,
#contact-form .field-validation-error:before,
#contact-form .success:before {
    content: '\f071';
    display: inline-block;
    margin-right: 5px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

#contact-form .success {
	background-color: #98b839;
}

#contact-form .success:before {
	content: '\f058';
}

#contact-form label {
	box-sizing: border-box;
	display: block !important;
	clear: both;
	float: left;
	width: 45%;
	padding: 4px 20px 4px 0;
	margin-bottom: 8px;
	color: #717171;
	font-size: 13px;
	line-height: 22px;
	text-align: right;
}

#contact-form input[type="text"],
#contact-form input[type="tel"],
#contact-form input[type="email"],
#contact-form input[type="number"],
#contact-form textarea {
	box-sizing: border-box;
	display: block;
	float: left;
	width: 55%;
	padding: 7px 9px;
	margin-bottom: 8px;
	background-color: #f1f1f1;
	border: 1px solid #ccc;
	border-radius: 1px;
	color: #444;
	font-size: 13px;
	cursor: text;
}

#contact-form .field.send-copy {
	width: 55%;
	margin-left: 45%;
}

#contact-form .field.send-copy label {
	width: auto;
	padding: 0;
	line-height: 22px;
	text-align: left;
	cursor: pointer;
}

#contact-form .field.send-copy input[type="checkbox"] {
	display: none;
}

#contact-form .field.send-copy input[type="checkbox"]+label:before {
	content: '';
	display: block;
	float: left;
	height: 14px;
	width: 14px;
	margin: 2px 6px 0 0;
	background-color: #f1f1f1;
	border: 1px solid #ccc;
	border-radius: 3px;
	cursor: pointer;
}

#contact-form .field.send-copy input[type="checkbox"]+label:hover:before {
	border: 1px solid #acacac;
}

#contact-form .field.send-copy input[type="checkbox"]:checked+label:before,
#contact-form .field.send-copy input[type="checkbox"]:checked+label:hover:before {
	content: '\f00c';
	display: inline-block;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--primary-highcontrast-color);
	font-family: "Font Awesome 5 Free";
	font-size: 10px;
	font-weight: bold;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 14px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

#contact-form .captcha {
	margin-bottom: 10px;
}

#contact-form .captcha label {
	box-sizing: border-box;
	display: block;
	clear: both;
	float: left;
	height: 28px;
	width: 100%;
	color: #717171;
	font-size: 13px;
	line-height: 28px;
	text-align: right;
}

#contact-form .captcha .CaptchaTable {
	width: 80px;
	margin-left: calc(100% - 80px);
	border-collapse: collapse;
	border-spacing: 0;
	text-align: left;
}

#contact-form .captcha .CaptchaTable tr td {
	display: block;
	float: left;
	height: 28px;
	width: 100%;
	vertical-align: top;
	font-size: 0;
}

#contact-form .captcha .CaptchaTable tr td:first-of-type {
	padding-right: 10px;
}

#contact-form .captcha .CaptchaTable tr td input[type="text"] {
	box-sizing: border-box;
	display: block;
	height: 26px;
	width: 80px;
	padding: 0 7px;
	background-color: #f1f1f1;
	border: none;
	border: 1px solid #ccc;
	border-radius: 1px;
	color: #444;
	font-size: 13px;
	line-height: 26px;
	text-align: center;
}

#contact-form .captcha .CaptchaTable tr td img {
	margin-top: 3px;
}

#contact-form .buttons-container {
	margin-top: 20px;
	text-align: right;
}

#contact-form .buttons-container:after {
	content: '';
	display: block;
	clear: both;
}

#contact-form .buttons-container .button {
	display: inline-block;
	height: 34px;
	width: 130px;
	padding: 0 7px;
	margin: 8px 0 5px;
	background-color: #888;
	border: none;
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 34px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

#contact-form .buttons-container .button.send {
	background-color: var(--primary-color)
}

@media only screen and (max-width: 600px) {
	#contact-form label {
		float: none;
		width: 100%;
		padding: 4px 0;
		margin-bottom: 0;
		text-align: left;
	}

	#contact-form input[type="text"],
	#contact-form input[type="tel"],
	#contact-form input[type="email"],
	#contact-form input[type="number"],
	#contact-form textarea {
		float: none;
		width: 100%;
	}

	#contact-form .buttons-container .button {
		width: 100%;
	}
}

/* Map */
#bottom-map-container {
	clear: both;
	display: block;
	position: relative;
	height: 440px;
	width: 100%;
	padding-top: 30px;
}

#contact-map-container {
	clear: both;
	display: block;
	position: relative;
	height: 410px;
	width: calc(100% + 100px);
	padding-top: 40px;
	margin-left: -50px;
}

#map-marker {
	position: relative;
}

#map-marker:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 48px;
	width: 34px;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2034%2048'%3E%3Cpath%20fill='{% Settings.color_primary.Replace(" #", " %23") #%}'%20d='M17%2024.74c-4.24%200-7.68-3.46-7.68-7.72%200-4.27%203.44-7.72%207.68-7.72s7.68%203.46%207.68%207.72-3.44%207.72-7.68%207.72M17%200C7.61%200%200%207.65%200%2017.09%200%2026%207.7%2037.5%2012.84%2043.1%2014.76%2045.18%2017%2048%2017%2048s2.4-2.83%204.46-4.98C26.6%2037.65%2034%2026.88%2034%2017.09%2034%207.65%2026.39%200%2017%200'/%3E%3C/svg%3E");
}

/* Practical informations */
#bottom-map-container #useful-informations {
	box-sizing: border-box;
	position: absolute;
	top: 30px;
	left: 60px;
	height: auto;
	width: 330px;
	padding: 30px 20px;
	background-color: #fff;
	border-radius: 0 0 1px 1px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
	color: #333;
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	z-index: 999;
}

#useful-informations .phone a,
#useful-informations .fax a,
#useful-informations .gsm a {
	font-size: 15px;
	font-weight: bold;
	color: #000;
}

@media only screen and (max-width: 850px) {
	#bottom-map-container #useful-informations {
		left: 25px;
		width: calc(100% - 50px);
		padding: 20px 15px;
		font-size: 14px;
		line-height: 17px;
	}
}

#contact #useful-informations {
	box-sizing: border-box;
	height: auto;
	width: 100%;
	padding-bottom: 50px;
	color: #333;
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	text-align: center;
}

#bottom-map-container #useful-informations>.title,
#contact #useful-informations>.title {
	display: none;
}

#contact #useful-informations>ul>li:first-of-type {
	font-weight: bold;
}

#bottom-map-container #useful-informations>ul>li.address,
#contact #useful-informations>ul>li.address {
	margin: 7px 0;
}

#bottom-map-container #useful-informations>ul>li.phone:empty,
#contact #useful-informations>ul>li.phone:empty,
#bottom-map-container #useful-informations>ul>li.fax:empty,
#contact #useful-informations>ul>li.fax:empty,
#bottom-map-container #useful-informations>ul>li.gsm:empty,
#contact #useful-informations>ul>li.gsm:empty {
	display: none;
}

#bottom-map-container #useful-informations>ul>li.phone:before,
#contact #useful-informations>ul>li.phone:before,
#bottom-map-container #useful-informations>ul>li.fax:before,
#contact #useful-informations>ul>li.fax:before,
#bottom-map-container #useful-informations>ul>li.gsm:before,
#contact #useful-informations>ul>li.gsm:before {
	display: inline-block;
	height: 18px;
	width: 14px;
	margin-right: 3px;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
	line-height: 18px;
	text-align: center;
}

#bottom-map-container #useful-informations>ul>li.phone:before,
#contact #useful-informations>ul>li.phone:before {
	content: '\f095';
}

#bottom-map-container #useful-informations>ul>li.fax:before,
#contact #useful-informations>ul>li.fax:before {
	content: '\f1ac';
}

#bottom-map-container #useful-informations>ul>li.gsm:before,
#contact #useful-informations>ul>li.gsm:before {
	content: '\f3cd';
}

/* Map */
.map {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

/* Open street map */
.map .olControlAttribution {
	bottom: 2px;
	right: 5px;
	font-size: 11px;
	color: #333;
}

.map .olControlAttribution a {
	color: #333;
	text-decoration: none;
}

.map .olControlAttribution a:hover {
	text-decoration: underline;
}

/* Accesses */
#accesses {
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	margin-top: 15px;
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	text-align: left;
}

#accesses .accesses-title {
	display: block;
	color: #717171;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

#accesses ul {
	clear: both;
	padding: 14px 0 0;
	margin: 0;
	list-style-type: none;
	color: #333;
	font-size: 13px;
	line-height: 18px;
	color: #333;
	font-size: 13px;
}

#accesses ul li {
	display: block;
	width: 100%;
	padding: 7px 0 6px 3px;
	margin: 0;
	border-bottom: 1px solid #ccc;
	font-size: 13px;
	color: #333;
}

#accesses ul li:last-of-type {
	border-bottom: none;
}

#pages .title,
#menu .title,
#catalog .title,
#contact .title {
	width: 100%;
	margin: 40px 0;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#catalog .title {
	margin-bottom: 7px;
}

#pages .description {
	margin: 20px 0 15px;
	color: #454545;
	font-size: 15px;
	line-height: 19px;
}

/* Réservation de table */
.booking-button {
	box-sizing: border-box;
	display: inline-block;
	height: 50px;
	width: 100%;
	padding: 0;
	margin: 0;
	background: var(--primary-color);
	text-decoration: none;
	border-radius: 4px;
	color: #fff;
	font-size: 17px;
	font-family: arial;
	font-weight: normal;
	line-height: 50px;
	cursor: pointer;
}

#small-column .booking-button {
	margin-bottom: 15px;
}

.booking-button:before {
	content: url('~/Custom_Code/Images/E101/bookme-icon.png');
	display: block;
	float: left;
	height: 24px;
	width: 26px;
	padding: 0;
	margin: 14px 8px 0 12px;
	line-height: 24px;
}

.booking-button:before {
	margin-left: 18px;
}

#main-footer .booking-button {
	display: block;
	float: left;
	height: 26px;
	background: var(--primary-color);
}

#main-footer .booking-button:before {
	content: '';
	height: 0;
	width: 0;
	padding: 0;
	margin: 0;
}

#main-footer .booking-button:after {
	content: url('~/Custom_Code/Images/E101/bookme-button.png');
	display: block;
	float: right;
	height: 26px;
	width: 26px;
	padding: 0;
	margin: 0 0 0 10px;
	line-height: 26px;
}

#main-footer .booking-button,
#main-footer .booking-button:hover,
#main-footer .booking-button:active {
	box-sizing: border-box;
	display: inline-block;
	height: 26px;
	width: auto;
	padding: 0;
	margin-left: 30px;
	background: none;
	text-decoration: none;
	border-radius: 0;
	color: #222;
	font-size: 13px;
	font-weight: bold;
	line-height: 26px;
}

@media screen and (max-width: 641px) {

	#main-wrapper footer .booking-button,
	#main-wrapper footer .booking-button:hover,
	#main-wrapper footer .booking-button:active {
		display: block;
		margin-left: 0;
	}
}

/* Popup */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 999;
}

.popup .overlay {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, .5);
	z-index: 9998;
	animation: show-popup 275ms ease;
	-webkit-animation: show-popup-overlay 275ms ease;
}

/* Show popup overlay */
@keyframes show-popup-overlay {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes show-popup-overlay {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.popup .content {
	box-sizing: border-box;
	position: fixed;
	top: 50%;
	left: 50%;
	height: auto;
	width: 450px;
	max-width: 100vw;
	padding: 22px;
	margin: auto;
	transform: translate(-50%, -50%);
	background: #fff;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .2);
	z-index: 9999;
}

.popup .content:before {
	content: '';
	position: absolute;
	top: -28px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 28px 450px;
	border-color: transparent transparent #fff transparent;
}

.popup .content:after {
	content: '';
	position: absolute;
	bottom: -28px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 28px 450px 0 0;
	border-color: #fff transparent transparent transparent;
}

.popup .content .send-ok {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	border-radius: 1px;
}

.popup .content .send-ok .message {
	position: absolute;
	top: 50%;
	left: 0;
	height: auto;
	width: 100%;
	transform: translateY(-50%);
	color: #333;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

.popup .content .send-ok .message label:first-letter {
	text-transform: uppercase;
}

.popup .content .send-ok .message .icon {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-size: 75px;
}

.popup .content .send-ok .label+a {
	display: block;
	height: 30px !important;
	width: 120px !important;
	padding: 0 20px;
	margin: 25px auto 0;
	background-color: #888;
	border: none;
	border-radius: 3px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.popup .content .send-ok .label+a:hover {
	background-color: #a5a5a5;
}

.popup .content .send-ok .label+a:active {
	background-color: #737373;
}

.popup .content .close-button {
	position: absolute;
	top: 5px;
	right: 5px;
	height: 24px;
	width: 24px;
	color: rgba(0, 0, 0, .35);
	font-size: 15px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
}

.popup .content .close-button:hover {
	color: rgba(0, 0, 0, .5);
}

.popup .content .close-button:active {
	color: rgba(0, 0, 0, .75);
}

.popup .content .title {
	display: block !important;
	float: none !important;
	margin-bottom: 28px !important;
	color: var(--primary-color) !important;
	font-size: 23px !important;
	font-weight: normal !important;
	text-align: center !important;
	text-transform: uppercase !important;
}

.popup .content .subtitle {
	margin: 10px 0 15px;
	color: #333;
	font-size: 15px;
	font-weight: bold;
}

.popup .content .field {
	margin-bottom: 10px;
}

.popup .content .field label {
	box-sizing: border-box;
	display: block;
	clear: both;
	float: left;
	height: 28px;
	width: 50%;
	padding-right: 15px;
	color: #717171;
	font-size: 13px;
	line-height: 28px;
	text-align: right;
}

.popup .content .field input[type="text"],
.popup .content .field input[type="email"],
.popup .content .field input[type="tel"],
.popup .content .field textarea {
	box-sizing: border-box;
	display: block;
	height: 26px;
	width: 50%;
	padding: 0 7px;
	background-color: #f1f1f1;
	border: none;
	border: 1px solid #ccc;
	border-radius: 1px;
	color: #444;
	font-size: 13px;
	line-height: 26px;
}

.popup .content .field textarea {
	height: 65px;
	padding: 5px 7px;
	line-height: 18px;
	resize: none;
}

.popup .content .captcha {
	margin-bottom: 10px;
}

.popup .content .captcha label {
	box-sizing: border-box;
	display: block;
	clear: both;
	float: left;
	height: 28px;
	width: 100%;
	color: #717171;
	font-size: 13px;
	line-height: 28px;
	text-align: right;
}

.popup .content .captcha .CaptchaTable {
	width: 80px;
	margin-left: calc(100% - 80px);
	border-collapse: collapse;
	border-spacing: 0;
}

.popup .content .captcha .CaptchaTable tr td {
	display: block;
	float: left;
	height: 28px;
	width: 100%;
	vertical-align: top;
	font-size: 0;
}

.popup .content .captcha .CaptchaTable tr td:first-of-type {
	padding-right: 10px;
}

.popup .content .captcha .CaptchaTable tr td input[type="text"] {
	box-sizing: border-box;
	display: block;
	height: 26px;
	width: 80px;
	padding: 0 7px;
	background-color: #f1f1f1;
	border: none;
	border: 1px solid #ccc;
	border-radius: 1px;
	color: #444;
	font-size: 13px;
	line-height: 26px;
	text-align: center;
}

.popup .content .captcha .CaptchaTable tr td img {
	margin-top: 3px;
}

.popup .content .buttons-container {
	margin-top: 20px;
	text-align: right;
}

.popup .content .buttons-container .button {
	display: inline-block !important;
	height: 30px !important;
	width: auto !important;
	padding: 0 20px;
	background-color: #888;
	border: none;
	border-radius: 1px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	vertical-align: top;
}

.popup .content .buttons-container .button:hover {
	background-color: #a5a5a5;
}

.popup .content .buttons-container .button:active {
	background-color: #737373;
}

.popup .content .buttons-container .button:last-child {
	margin-left: 10px;
}

.popup .content .buttons-container .button.send {
	background-color: var(--primary-color)
}

.popup .content .buttons-container .button.send:hover {
	background: var(--primary-light-color)
}

.popup .content .buttons-container .button.send:active {
	background: var(--primary-dark-color);
}

.popup .content .mandatory-message {
	margin-top: 25px;
	color: #989898;
	font-size: 12px;
	font-style: italic;
	text-align: right;
}

/* Video gallery */
#videos-gallery-container {
	text-align: center;
}

#videos-gallery-container .title {
	width: 100%;
	margin: 40px 0;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#videos-gallery-container .video-title {
	display: block;
	margin: 20px 0;
	color: var(--primary-color);
	font-size: 22px;
}

#videos-gallery-container .video-description {
	clear: both;
	display: block;
	width: 100%;
	max-width: 720px;
	padding: 20px 0 15px;
	margin: 0 auto;
	color: #222;
	font-size: 14px;
	line-height: 18px;
}

#videos-gallery-container iframe {
	display: inline-block;
	height: 375px;
	width: 500px;
	vertical-align: top;
}

#videos-gallery-container .videos-list {
	box-sizing: border-box;
	display: inline-block;
	width: 200px;
	padding-left: 12px;
	vertical-align: top;
}

#videos-gallery-container .videos-list input[type="image"] {
	height: auto;
	width: 100%;
	margin-bottom: 12px;
}

@media only screen and (max-width: 979px) {
	#videos-gallery-container iframe {
		width: 100%;
		margin-bottom: 30px;
	}

	#videos-gallery-container .videos-list {
		width: 100%;
	}

	#videos-gallery-container .videos-list input[type="image"] {
		height: 75px;
		width: 100px;
		margin: 0 6px;
	}

	#videos-gallery-container .video-description {
		width: 100%;
	}
}

@media only screen and (max-width: 529px) {
	#videos-gallery-container iframe {
		height: calc(100% / 1.33);
		width: 100%;
	}
}

/* Pictures gallery */
#pictures-gallery-container .pictures-gallery-nav {
	box-sizing: border-box;
	height: 35px;
	padding: 0 7px 0 12px;
	margin-bottom: 15px;
	background-color: #f1f1f1;
	border-radius: 5px;
	color: #717171;
	font-size: 13px;
	line-height: 35px;
}

/* Zoom */
#pictures-gallery-container .pictures-gallery-nav .zoom-bar {
	float: left;
	height: 35px;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar>i {
	display: inline-block;
	height: 35px;
	color: #888;
	font-size: 16px;
	line-height: 35px;
	vertical-align: top;
	transition: color 100ms ease;
	cursor: pointer;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar>i:hover {
	color: #333;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul {
	display: inline-block;
	height: 35px;
	margin: 0 10px;
	font-size: 0;
	vertical-align: top;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li {
	display: inline-block;
	position: relative;
	height: 13px;
	width: 40px;
	margin: 11px 0;
	cursor: pointer;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: 1px;
	transform: translate(-50%, -50%);
	background-color: #cdcdcd;
	transition: background-color 100ms ease;
	z-index: 2;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li:hover:before {
	background-color: #555;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li.active:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 14px;
	width: 14px;
	transform: translate(-50%, -50%);
	background-color: #333;
	border-radius: 7px;
	z-index: 2;
}

#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 3px;
	width: 100%;
	transform: translate(-50%, -50%);
	background-color: #cdcdcd;
	z-index: 1;
}

/* Pagination */
#pictures-gallery-container .pictures-gallery-nav .pagination {
    flex-direction: row-reverse;
	float: right;
	height: 35px;
	font-size: 0;
}

#pictures-gallery-container .pictures-gallery-nav .pagination a {
	display: inline-block;
	float: right;
	height: 35px;
	padding: 0 4px;
	color: #999;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	transition: color 100ms ease;
}

#pictures-gallery-container .pictures-gallery-nav .pagination a:hover {
	color: #333;
}

#pictures-gallery-container .pictures-gallery-nav .pagination a.active {
	color: var(--primary-color);
}

@media only screen and (max-width: 414px) {
	#pictures-gallery-container .pictures-gallery-nav {
		height: auto;
		padding: 0;
		margin-bottom: 15px;
		background-color: transparent;
		border-radius: 0;
	}

	#pictures-gallery-container .pictures-gallery-nav .zoom-bar {
		float: none;
		width: 100%;
		margin-bottom: 10px;
		background-color: #f1f1f1;
		border-radius: 5px;
	}

	#pictures-gallery-container .pictures-gallery-nav .zoom-bar>i {
		width: 35px;
		text-align: center;
	}

	#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul {
		width: calc(100% - 90px);
	}

	#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li {
		width: 25%;
	}

	#pictures-gallery-container .pictures-gallery-nav .pagination {
		float: right;
		width: auto;
		padding: 0 5px;
		margin-bottom: 15px;
		background-color: #f1f1f1;
		border-radius: 5px;
	}

	#pictures-gallery-container .pictures-gallery-nav .pagination a {
		display: inline-block;
		padding: 0 8px;
		text-align: center;
	}
}

/* Pictures */
#pictures-gallery-container > ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-areas: '. . . . . . . . . .';
	grid-template-rows: auto;
	gap: 20px;
	clear: both;
	width: 100%;
	padding: 0;
	font-size: 0;
}

#pictures-gallery-container > ul > li {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	overflow: hidden;
	transition: width 350ms ease;
}

@media only screen and (min-width: 415px) {
	#pictures-gallery-container[data-zoom-value="-2"] > ul {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-areas: '. . . . . . . . . .';
	}

	#pictures-gallery-container[data-zoom-value="-1"] > ul {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-areas: '. . . . . . .';
	}

	#pictures-gallery-container[data-zoom-value="0"] > ul {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		grid-template-areas: '. . . . .';
	}

	#pictures-gallery-container[data-zoom-value="1"] > ul {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-areas: '. . .';
	}
}

@media only screen and (max-width: 414px) {
	#pictures-gallery-container[data-zoom-value="-2"] > ul {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-areas: '. . . . . .';
	}

	#pictures-gallery-container[data-zoom-value="-1"] > ul {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-areas: '. . . .';
	}

	#pictures-gallery-container[data-zoom-value="0"] > ul {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: '. .';
	}

	#pictures-gallery-container[data-zoom-value="1"] > ul {
		grid-template-columns: 1fr;
		grid-template-areas: '.';
	}
}

#pictures-gallery-container>ul>li .picture-link {
	box-sizing: border-box;
	display: block;
	height: auto;
	width: 100%;
	padding: 20px 0;
	border: 1px solid #d8d8d8;
	border-radius: 2px;
	transition: border-color 150ms ease;
	cursor: pointer;
}

#pictures-gallery-container>ul>li .picture-link:hover {
	border-color: #b4b4b4;
}

#pictures-gallery-container>ul>li .picture-link img {
	height: auto;
	width: 100%;
	border-radius: 1px;
}

#pictures-gallery-container>ul>li .legend {
	display: block;
	width: 100%;
	padding-top: 5px;
}

#pictures-gallery-container>ul>li .legend .picture-title {
	display: block;
	width: 100%;
	color: #777;
	font-size: 13px;
	line-height: 24px;
	text-align: center;
	text-overflow: ellipsis;
	transition: color 150ms ease;
	white-space: nowrap;
	overflow: hidden;
}

#pictures-gallery-container>ul>li .picture-link:hover+.legend .picture-title {
	color: #333;
}

#pictures-gallery-container>ul>li .legend .picture-description {
	display: block;
	width: 100%;
	color: #999;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	text-overflow: ellipsis;
	transition: color 150ms ease;
	white-space: nowrap;
	overflow: hidden;
}

#pictures-gallery-container>ul>li .picture-link:hover+.legend .picture-description {
	color: #555;
}

/* Week-menu */
#week-menu {
	margin-bottom: 50px;
	text-align: center;
}

#week-menu .title {
	line-height: 22px;
	text-align: center;
}

#week-menu .subtitle {
	margin: 32px 0 6px;
	color: var(--primary-color);
	font-size: 18px;
	text-decoration: none;
}

#week-menu p {
	color: #333;
	font-size: 15px;
	line-height: 21px;
}

/* Free and business pages */
#free-business-page h1 {
	width: 100%;
	margin: 40px 0;
	color: #222;
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
}

#free-business-page h2 {
	margin: 20px 0 15px;
	color: var(--primary-color);
	font-size: 24px;
}

#free-business-page h3 {
	margin: 15px 0 10px;
	color: #333;
	font-size: 17px;
	font-weight: normal;
	line-height: 20px;
}

#free-business-page h4 {
	margin: 10px 0 5px;
	color: #555;
	font-size: 15px;
	font-weight: normal;
	line-height: 18px;
}

#free-business-page p {
	padding: 0 50px;
	margin-bottom: 50px;
	font-size: 14px;
	color: #545454;
	line-height: 21px;
}

#free-business-page strong,
#free-business-page b {
	font-weight: bold;
}

#free-business-page em,
#free-business-page i {
	font-style: italic;
}

#free-business-page s {
	text-decoration: line-through;
}

#free-business-page a {
	color: var(--primary-color);
}

#free-business-page ul {
	margin: 5px 0 5px 16px;
	list-style-type: disc;
	color: var(--primary-color);
}

#free-business-page ol {
	margin-left: 18px;
	list-style-type: decimal;
	font-size: 14px;
	color: var(--primary-color);
}

#free-business-page li {
	padding-left: 0;
	margin: 4px 0;
	color: #333;
	font-size: 14px;
	line-height: 19px;
}

#free-business-page table {
	max-width: 100% !important;
}

/* Cart */
.back-to-shopping-button {
	display: inline-block;
	position: relative;
	height: 35px;
	padding: 0 11px 0 25px;
	margin: 10px 0;
	background-color: var(--primary-color);
	border-radius: 1px;
	color: var(--primary-highcontrast-color);
	font-size: 13px;
	line-height: 35px;
	text-decoration: none;
	cursor: pointer;
}

.back-to-shopping-button:before {
	content: '\f053';
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	height: 33px;
	transform: translateY(-50%);
	color: #fff;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
	line-height: 30px;
	pointer-events: none;
}

#cart #steps {
	display: block;
	height: 60px;
	width: 100%;
	margin: 20px 0 35px;
	list-style: none;
	font-size: 0;
}

#cart #steps a {
	display: inline-block;
	position: relative;
	height: 60px;
	width: calc(20% + 8px);
	margin-left: -10px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 200 50' preserveAspectRatio='none' version='1.1' viewBox='0 0 200 50' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='#eee' points='187 0 0 0 13 25 0 50 187 50 200 25'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	vertical-align: top;
}

#cart #steps a:first-of-type {
	margin-left: 0;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 200 50' preserveAspectRatio='none' version='1.1' viewBox='0 0 200 50' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='#eee' points='187 0 0 0 0 50 187 50 200 25'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	border-radius: 3px 0 0 3px;
}

#cart #steps a:last-of-type {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 200 50' preserveAspectRatio='none' version='1.1' viewBox='0 0 200 50' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='#eee' points='187 0 181 0 0 0 13 25 0 50 181 50 187 50 200 50 200 0'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	border-radius: 0 3px 3px 0;
}

#cart #steps a.selected {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 200 50' preserveAspectRatio='none' version='1.1' viewBox='0 0 200 50' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='var(--primary-color)' points='187 0 0 0 13 25 0 50 187 50 200 25'/%3E%3C/svg%3E");
	background-size: 100% 100%;
}

#cart #steps a.selected:first-of-type {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 200 50' preserveAspectRatio='none' version='1.1' viewBox='0 0 200 50' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='var(--primary-color)' points='187 0 0 0 0 50 187 50 200 25'/%3E%3C/svg%3E");
	background-size: 100% 100%;
}

#cart #steps a.selected:last-of-type {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 200 50' preserveAspectRatio='none' version='1.1' viewBox='0 0 200 50' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='var(--primary-color)' points='187 0 181 0 0 0 13 25 0 50 181 50 187 50 200 50 200 0'/%3E%3C/svg%3E");
	background-size: 100% 100%;
}

#cart #steps a:before {
	content: attr(title);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	color: #777;
	font-size: 14px;
	line-height: 60px;
	text-decoration: none;
	text-align: center;
	z-index: 1;
}

#cart #steps a.selected:before {
	color: var(--primary-highcontrast-color);
}

#cart #products-list {
	width: 100%;
	font-size: 0;
}

#cart #products-list li {
	display: block;
	height: 64px;
	width: 100%;
	padding: 18px 0 20px;
	border-bottom: 1px solid #ececec;
	font-size: 13px;
}

#cart #products-list li .product-info {
	display: inline-block;
	float: left;
	height: 64px;
	width: 60%;
}

#cart #products-list li .product-info .picture {
	display: inline-block;
	height: 64px;
	width: 85px;
	margin-right: 15px;
	vertical-align: middle;
}

#cart #products-list li .product-info .picture img {
	max-height: 100%;
	max-width: 100%;
	border-radius: 1px;
}

#cart #products-list li .product-info .label {
	display: inline-block;
	line-height: 18px;
	vertical-align: middle;
}

#cart #products-list li .product-info .label a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
}

#cart #products-list li .product-info .label .special-offer {
	display: block;
	color: var(--primary-color);
	font-size: 14px;
}

#cart #products-list li .product-info .label .special-offer strong {
	font-weight: bold;
}

#cart #products-list li .shopping-info {
	display: inline-block;
	height: 64px;
	width: 40%;
	text-align: right;
}

#cart #products-list li .shopping-info .quantity {
	display: inline-block;
	position: relative;
	height: 30px;
	width: 50px;
	background-color: var(--primary-color);
	border-radius: 1px;
	text-align: left;
	vertical-align: middle;
}

#cart #products-list li .shopping-info .quantity input[type="submit"] {
	display: none;
}

#cart #products-list li .shopping-info .quantity input[type="text"] {
	display: inline-block;
	height: 30px;
	width: 23px;
	padding: 0 0 0 8px;
	background: none;
	border: none;
	color: var(--primary-highcontrast-color);
	font-weight: bold;
}

#cart #products-list li .shopping-info .quantity .quantity-buttons {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 20px;
	height: 30px;
}

#cart #products-list li .shopping-info .quantity .quantity-buttons a {
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: 0;
	height: 15px;
	width: 100%;
	color: var(--primary-highcontrast-color);
	text-decoration: none;
}

#cart #products-list li .shopping-info .quantity .quantity-buttons a.incr {
	top: 0;
	margin-top: 6px;
}

#cart #products-list li .shopping-info .quantity .quantity-buttons a.decr {
	bottom: 0;
	margin-bottom: 2px;
}

#cart #products-list li .shopping-info .quantity .quantity-buttons a .icon {
	display: block;
	height: 15px;
	width: 100%;
	text-align: center;
}

#cart #products-list li .shopping-info .quantity .quantity-buttons a .icon:before {
	display: inline-block;
	height: 6px;
	font-size: 12px;
}

#cart #products-list li .shopping-info .price {
	display: inline-block;
	width: 110px;
	color: #555;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
	text-align: right;
	vertical-align: middle;
}

#cart #products-list li .shopping-info .price .crossed {
	color: #999;
	font-weight: bold;
	text-decoration: line-through;
}

#cart #products-list li .shopping-info .remove-button {
	display: inline-block;
	position: relative;
	margin-left: 30px;
	vertical-align: middle;
}

#cart #products-list li .shopping-info .remove-button:before {
	content: '\f2ed';
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	height: 33px;
	transform: translateY(-50%);
	color: #333;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
	line-height: 30px;
	pointer-events: none;
}

#cart #products-list li .shopping-info .remove-button input[type="submit"] {
	height: 33px;
	width: auto;
	padding: 9px 9px 9px 26px;
	background-color: #ececec;
	border: none;
	border-radius: 1px;
	color: #555;
	cursor: pointer;
}

#cart #products-list li .shopping-info .remove-button input[type="submit"]:hover {
	background-color: #dfdfdf;
}

#cart #products-list li .shopping-info .remove-button input[type="submit"]:active {
	background-color: #d5d5d5;
}

#cart #promo-code {
	float: right;
	width: 350px;
	margin-top: 20px;
}

#cart #promo-code:after {
	content: '';
	display: block;
	clear: both;
}

#cart #promo-code>.label {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: 13px;
}

#cart #promo-code input[type="text"] {
	height: 28px;
	width: 120px;
	padding: 0 9px;
	margin-right: 4px;
	background-color: #f1f1f1;
	border: 1px solid #b3b3b3;
	border-radius: 1px;
	color: #333;
	font-size: 13px;
	line-height: 28px;
}

#cart #promo-code input[type="submit"] {
	height: 30px;
	padding: 0 9px;
	background-color: var(--primary-color);
	border-radius: 1px;
	color: var(--primary-highcontrast-color);
	font-size: 13px;
	line-height: 30px;
	text-align: center;
	border: none;
	cursor: pointer;
}

#cart #total-container {
	clear: both;
	float: right;
	width: 350px;
	margin-top: 20px;
}

#cart #total-container #subtotal .value {
	display: inline-block;
	width: 110px;
	color: #555;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
	text-align: right;
	vertical-align: middle;
}

#checkout-footer-buttons {
	clear: both;
	display: block;
}

.checkout-button-next {
	display: inline-block;
	position: relative;
	float: right;
	height: 35px;
	padding: 0 25px 0 11px;
	margin: 10px 0;
	background-color: var(--primary-color);
	border-radius: 1px;
	color: var(--primary-highcontrast-color);
	font-size: 13px;
	line-height: 35px;
	text-decoration: none;
	cursor: pointer;
}

.checkout-button-next:after {
	content: '\f054';
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	height: 33px;
	transform: translateY(-50%);
	color: #fff;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
	line-height: 30px;
	pointer-events: none;
}

/* 404 */
#content-404 {
	padding: 100px 45px 0;
	color: #333;
	font-size: 15px;
	line-height: 17px;
}

#content-404 .icon {
	float: left;
	margin-right: 30px;
	color: var(--primary-color);
	font-size: 112px;
}

#content-404 .title {
	display: block;
	margin-bottom: 10px;
	color: var(--primary-color);
	font-size: 16px;
}

#content-404 a {
	display: block;
	margin-top: 35px;
	color: var(--primary-color);
	font-size: 16px;
}

@media all and (min-width: 1px) and (max-width: 412px) {
	#content-404 .icon {
		display: block;
		float: none;
		margin: 0 0 20px;
		font-size: 80px;
		text-align: center;
	}
}

/* Responsive */
@media all and (min-width: 1px) and (max-width: 979px) {

	#large-column,
	#large-column.floatLeft {
		box-sizing: border-box;
		width: 100%;
		padding: 0;
	}

	#small-column {
		box-sizing: border-box;
		width: 100%;
		margin: 0;
	}

	#useful-informations {
		box-sizing: border-box;
		width: 100%;
		margin: 0;
	}

	#menu-button {
		display: block;
		position: absolute;
		top: 5px;
		left: 5px;
		height: 40px;
		width: 40px;
		border-radius: 4px;
		background-color: var(--primary-color);
	}

	#main-nav {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		clear: both;
		height: 100vh;
		width: 200px;
		box-shadow: 0 0 25px rgba(0, 0, 0, .2);
		z-index: 999999;
	}

	#main-nav.show {
		display: block;
		margin: 0;
		background-color: var(--primary-color);
		animation: show-responsive-menu 275ms ease;
		-webkit-animation: show-responsive-menu 275ms ease;
	}

	/* Show responsive menu */
	@keyframes show-responsive-menu {
		0% {
			opacity: 0;
			transform: translateX(200px);
		}

		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}

	@-webkit-keyframes show-responsive-menu {
		0% {
			opacity: 0;
			transform: translateX(200px);
		}

		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}

	#main-nav>ul {
		height: auto;
		width: 100%;
	}

	#main-nav>ul li {
		display: block;
		float: none;
		height: auto;
		width: 100%;
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		line-height: 44px;
		overflow: visible;
	}

	#main-nav>ul>li a,
	#main-nav>ul>li a:hover,
	#main-nav>ul>li a:active,
	#main-nav>ul>li span {
		clear: both;
		float: none;
		height: auto;
		min-height: 42px;
		width: 100%;
		min-width: 200px;
		max-width: none;
		padding: 12px;
		color: var(--primary-highcontrast-color);
		font-size: 13px;
		line-height: 18px;
		text-align: left;
	}

	#main-nav>ul>li a.has-sub-items,
	#main-nav>ul>li a.has-sub-items:hover,
	#main-nav>ul>li a.has-sub-items:active {
		width: calc(100% - 39px);
		min-width: calc(100% - 39px);
		max-width: calc(100% - 39px);
	}

	#main-nav>ul>li:hover a {
		background: none;
	}

	#main-nav>ul>li>ul {
		display: none;
		position: relative;
		top: auto;
		left: auto;
		height: auto;
		width: 100%;
		padding: 0;
		margin-left: 0;
	}

	#main-nav>ul>li>ul.show {
		display: block;
	}

	#main-nav>ul>li>ul>li {
		display: block;
		position: relative;
		float: none;
		min-height: 44px;
		width: 100%;
		background: rgba(0, 0, 0, .1);
		border-bottom: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	#main-nav>ul>li>ul>li a {
		padding: 12px;
		font-size: 13px;
		font-weight: normal;
	}

	#main-nav>ul>li .sub-items-show,
	#main-nav>ul>li .sub-items-show:hover,
	#main-nav>ul>li .sub-items-show:active {
		display: block;
		position: absolute;
		right: 5px;
		top: 5px;
		height: 32px;
		width: 32px;
		min-height: 0;
		min-width: 0;
		padding: 0;
		background: rgba(255, 255, 255, .1);
		border-radius: 3px;
	}

	#main-nav>ul>li .sub-items-show i {
		transform: rotate(90deg);
		height: 32px;
		width: 32px;
		color: #fff;
		line-height: 32px;
		text-align: center;
	}

	#main-nav>ul>li .sub-items-show.active i {
		transform: rotate(-90deg);
	}

	#main-header {
		min-height: 115px;
		height: auto;
		width: 100%;
		padding: 0 0 15px 0;
		text-align: center;
	}

	#main-header #site-logo {
		width: 100%;
		padding-left: 0;
		margin: 0 0 20px;
		text-align: center;
	}

	#main-header #site-logo a {
		display: inline-block;
	}

	#main-header #site-logo a img {
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#main-header #site-title-container {
		width: 100%;
		padding: 25px 0;
	}

	#main-header #site-title .site-title {
		width: 100%;
		max-width: none;
	}

	#responsive-menu-button {
		display: block;
		position: absolute;
		top: 10px;
		left: 10px;
		height: 40px;
		width: 40px;
		border-radius: 4px;
		background-color: var(--primary-color);
	}

	#responsive-menu-button i {
		display: block;
		height: 40px;
		width: 40px;
		color: var(--primary-highcontrast-color);
		font-size: 24px;
		line-height: 40px;
		text-align: center;
	}

	#responsive-menu-overlay {
		content: '';
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		background: rgba(0, 0, 0, .4);
		z-index: 9998;
	}

	#responsive-menu-overlay.show {
		display: block;
		animation: show-responsive-menu-overlay 275ms ease forwards;
		-webkit-animation: show-responsive-menu-overlay 275ms ease forwards;
	}

	/* Show responsive menu overlay */
	@keyframes show-responsive-menu-overlay {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-webkit-keyframes show-responsive-menu-overlay {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	#main-wrapper>.content>.big-column,
	#main-wrapper>.content>.big-column.floatLeft,
	#main-wrapper>.content>.big-column.floatRight,
	#main-wrapper>.content>.small-column,
	#main-wrapper>.content>.small-column.floatLeft,
	#main-wrapper>.content>.small-column.floatRight {
		float: none;
		width: 100%;
	}

	#main-wrapper>.content>.small-column,
	#main-wrapper>.content>.small-column.floatLeft,
	#main-wrapper>.content>.small-column.floatRight {
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid #717171;
	}

	#main-wrapper>.content,
	#main-wrapper>.home_picture,
	#main-wrapper>.home_picture .content_page,
	#main-wrapper>.home_picture .content_page .div_side,
	#main-wrapper>.home_picture .content_page .div_side .pub #main-wrapper>.content,
	#main-wrapper>.content>.small-column .presentation .presentation-content,
	#main-wrapper>.content>.small-column #company-informations {
		box-sizing: border-box;
		height: auto;
		width: 100%;
		padding: 10px 15px 20px;
	}

	#main-footer .social ul li {
		height: 26px;
		width: 26px;
	}

	#main-wrapper>.content>.big-column .presentation {
		padding: 0 0 12px 0;
	}

	#main-wrapper>.content>.big-column .presentation .presentation-content {
		width: 100%;
	}

	.catalog.editus_view .listing .product .product_price {
		position: relative;
		top: auto;
		right: auto;
		min-height: 20px;
	}

	#product-container {
		padding: 20px 0 0;
	}

	.editus_pagination_view.top-pagination {
		display: none;
	}

	.catalog {
		clear: both;
		width: 100%;
	}

	.price-container {
		width: 100%;
	}

	.contact-form {
		width: 100%;
	}

	#filter-dropdown {
		margin-bottom: 12px;
	}

	/* Cart */
	#basket-mini {
		border-radius: 4px;
	}
}

@media all and (min-width: 488px) and (max-width: 979px) {
	.catalog .grid-view .product_item {
		float: left;
		margin: 0 16px 16px 0;
	}

	.catalog .grid-view .product_item:nth-child(3n) {
		margin-right: 16px;
	}
}

@media all and (max-width: 675px) {
	#home-slider .slider .slide .text {
		box-sizing: border-box;
		top: 0;
		bottom: auto;
		left: 0;
		right: auto;
		height: auto;
		width: 100%;
		padding: 15px;
		border-radius: 1px 1px 0 0;
	}

	#home-slider .slick-dots {
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 0;
	}
}

@media all and (max-width: 640px) {
	#main-header .logo {
		display: inline-block;
		max-width: 290px;
		float: none;
		margin-top: 12px;
	}

	#main-header .logo a img {
		max-width: 290px;
	}

	#main-header .site_title {
		box-sizing: border-box;
		float: none;
		height: auto;
		width: 100%;
		padding: 0 15px;
		font-size: 22px;
	}

	#main-header .site_title.with_link_view h1 {
		float: none;
		margin: 35px 0 5px;
		text-align: center;
	}

	#main-header .languages {
		position: absolute;
		top: 5px;
		right: 0;
		margin: 0;
	}

	#main-wrapper>.content>.small-column #company-informations h2 {
		margin: 10px 0 15px;
	}

	#main-footer .social {
		float: none;
	}

	#main-footer .editus-logo {
		clear: both;
	}
}

@media all and (max-width: 512px) {
	#homepage-products .product {
		height: auto;
		width: 100%;
	}

	#homepage-products .product .picture-container {
		height: 240px;
		width: 300px;
	}

	#homepage-products .product .picture-container img {
		max-height: 240px;
		max-width: 300px;
	}

	#main-wrapper>.content>.big-column .presentation .presentation-content,
	.breadcrumb_layout,
	.catalog.editus_view,
	.catalog.editus_view .product h4.title,
	.catalog.editus_view .product h4.title a {
		width: 100%;
	}

	.booking-button {
		margin-bottom: 25px;
	}

	#languages {
		float: right;
		height: 12px;
		margin: 15px 15px 0;
	}
}

@media all and (max-width: 450px) {
	.popup .content {
		border-radius: 0;
	}
}

/* Cookies banner */
#cookies-banner {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 15px 15px;
	background: #000;
	color: #ddd;
	font-size: 14px;
	line-height: 18px;
	z-index: 999999;
}

#cookies-banner .ConsentButtons {
	display: block;
	margin-top: 7px;
	text-align: right;
}

#cookies-banner .btn {
	display: inline-block;
	padding: 0 12px;
	background-color: #fff;
	border: none;
	border-radius: 13px;
	line-height: 26px;
	color: #111;
	font-size: 14px;
	cursor: pointer;
}

#cookies-banner .btn:active {
	opacity: .85;
}

/* Product image zoom */
#product-image-zoom {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 9998;
}

#product-image-zoom .img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 425px;
	width: 500px;
	padding: 25px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 1px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
	z-index: 9999;
}

#product-image-zoom .img .close {
	display: block;
	position: absolute;
	top: 5px;
	right: 5px;
	height: 20px;
	width: 20px;
	border-radius: 1px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M0 2l2-2 4 4 4-4 2 2-4 4 4 4-2 2-4-4-4 4-2-2 4-4z'/%3E%3C/svg%3E");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}

#product-image-zoom .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 100%;
	max-width: 100%;
	transform: translate(-50%, -50%);
}

/* Quill */
.ql-align-right {
	text-align: right;
}

.ql-align-justify {
	text-align: justify;
}

.ql-align-center {
	text-align: center;
}