﻿/* Animation */
/* Appear from left */
@-webkit-keyframes appear-from-left {
	0% {
		transform: translateX(-35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-moz-keyframes appear-from-left {
	0% {
		transform: translateX(-35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-o-keyframes appear-from-left {
	0% {
		transform: translateX(-35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes appear-from-left {
	0% {
		transform: translateX(-35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.appear-from-left {
	-webkit-animation: appear-from-left 2s forwards;
	-moz-animation: appear-from-left 2s forwards;
	-o-animation: appear-from-left 2s forwards;
	animation: appear-from-left 2s forwards;
}

/* Appear from right */
@-webkit-keyframes appear-from-right {
	0% {
		transform: translateX(35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-moz-keyframes appear-from-right {
	0% {
		transform: translateX(35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-o-keyframes appear-from-right {
	0% {
		transform: translateX(35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes appear-from-right {
	0% {
		transform: translateX(35px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.appear-from-right {
	-webkit-animation: appear-from-right 2s forwards;
	-moz-animation: appear-from-right 2s forwards;
	-o-animation: appear-from-right 2s forwards;
	animation: appear-from-right 2s forwards;
}

/* Appear from center */
@-webkit-keyframes appear-from-center {
	0% {
		transform: scale(0.5, 0.5);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-moz-keyframes appear-from-center {
	0% {
		transform: scale(0.5, 0.5);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@-o-keyframes appear-from-center {
	0% {
		transform: scale(0.5, 0.5);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes appear-from-center {
	0% {
		transform: scale(0.5, 0.5);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.appear-from-center {
	-webkit-animation: appear-from-center 2s forwards;
	-moz-animation: appear-from-center 2s forwards;
	-o-animation: appear-from-center 2s forwards;
	animation: appear-from-center 2s forwards;
}

/* Appear with rotate from left */
@-webkit-keyframes appear-rotate-from-left {
	0% {
		transform: translateX(-200px) rotate(-120deg);
		opacity: 0;
	}

	100% {
		transform: translateX(0) rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes appear-rotate-from-left {
	0% {
		transform: translateX(-200px) rotate(-120deg);
		opacity: 0;
	}

	100% {
		transform: translateX(0) rotate(0);
		opacity: 1;
	}
}

@-o-keyframes appear-rotate-from-left {
	0% {
		transform: translateX(-200px) rotate(-120deg);
		opacity: 0;
	}

	100% {
		transform: translateX(0) rotate(0);
		opacity: 1;
	}
}

@keyframes appear-rotate-from-left {
	0% {
		transform: translateX(-200px) rotate(-120deg);
		opacity: 0;
	}

	100% {
		transform: translateX(0) rotate(0);
		opacity: 1;
	}
}

.appear-rotate-from-left {
	-webkit-animation: appear-rotate-from-left 2s forwards;
	-moz-animation: appear-rotate-from-left 2s forwards;
	-o-animation: appear-rotate-from-left 2s forwards;
	animation: appear-rotate-from-left 2s forwards;
}

/* 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);
}

.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;
	min-width: 320px;
	margin: 0 auto;
	border-radius: 1px;
}

/* Header */
#main-header {
	box-sizing: border-box;
	position: fixed;
	height: 120px;
	width: 100%;
	padding: 0 20px;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 25%, rgba(0, 0, 0, 0.25) 59%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 25%, rgba(0, 0, 0, 0.25) 59%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 25%, rgba(0, 0, 0, 0.25) 59%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=0);
	z-index: 99999;
	transition: height 450ms ease;
}

#main-header.floating {
	height: 100px;
	background: #fff;
	box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
}

#main-header.sub-pages {
	background: var(--secondary-color);
}

#main-header.floating.sub-pages {
	background: #fff;
}

/* Site logo */
#main-header #site-logo {
	display: block;
	float: left;
	height: 120px;
	width: 300px;
	transition: height 450ms ease;
}

#main-header #site-logo a {
	display: block;
	position: relative;
	height: 100%;
	width: 100%;
	line-height: 120px;
	text-align: right;
	text-decoration: none;
}

#main-header #site-logo a img {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	vertical-align: middle;
	max-height: 80%;
	max-width: 100%;
	transform: translate(-50%, -50%);
}

#main-header.floating #site-logo {
	height: 100px;
}

#main-header.floating #site-logo a {
	line-height: 100px;
}

/* Main navigation */
#main-nav {
	float: right;
	min-height: 120px;
	width: calc(100% - 400px);
	margin-right: 50px;
	text-align: right;
	transition: min-height 350ms linear;
}

@media (max-width: 1149px) and (min-width: 1px) {
	#main-nav.show+#main-nav-overlay {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		height: 100vh;
		width: 100vw;
		background: #000;
		opacity: 0.5;
	}
}

#main-nav ul {
	display: inline-block;
}

@-webkit-keyframes main-nav-floating-animation {
	0% {
		transform: translateY(-15px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-moz-keyframes main-nav-floating-animation {
	0% {
		transform: translateY(-15px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-o-keyframes main-nav-floating-animation {
	0% {
		transform: translateY(-15px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes main-nav-floating-animation {
	0% {
		transform: translateY(-15px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

#main-header.animated #main-nav ul {
	-webkit-animation: main-nav-floating-animation 600ms forwards;
	-moz-animation: main-nav-floating-animation 600ms forwards;
	-o-animation: main-nav-floating-animation 600ms forwards;
	animation: main-nav-floating-animation 600ms forwards;
}

#main-nav ul li {
	display: block;
	position: relative;
	float: left;
	height: 120px;
	overflow: hidden;
	transition: height 350ms linear;
}

#main-nav ul li a,
#main-nav ul li span {
	display: table-cell;
	position: relative;
	padding: 1px 20px 0;
	height: 119px;
	max-width: 150px;
	color: var(--secondary-color);
	font-size: 13.5px;
	font-family: inherit;
	font-weight: 100;
	line-height: 15px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.1s;
	vertical-align: middle;
	transition: height 350ms linear;
}

.sub-pages #main-nav ul li a,
.sub-pages #main-nav ul li span {
	color: var(--secondary-highcontrast-color);
}

@media (max-width: 1149px) and (min-width: 1px) {
	.sub-pages #main-nav ul li a,
	.sub-pages #main-nav ul li span {
		color: var(--primary-highcontrast-color);
	}
}

.sub-pages #main-nav ul li ul {
	border-left: 3px solid #e0e0e0;
}

.sub-pages #main-nav ul li ul li a {
	color: #000;
}

#main-nav ul li ul,
#main-header.floating #main-nav ul li ul {
	display: none;
	position: absolute;
	top: 120px;
	left: 0;
	z-index: 99999;
	transition: top 350ms linear;
}

#main-nav ul li:hover,
nav ul li.hover {
	overflow: hidden;
}

#main-nav ul li:hover,
nav ul li.hover {
	overflow: visible;
}

#main-nav ul li:hover ul,
#main-header.floating #main-nav ul li:hover ul {
	display: block;
}

#main-nav ul li ul li {
	height: auto;
	width: 168px;
	min-height: 120px;
	transition: min-height 350ms linear;
}

#main-header.floating #main-nav ul li ul li {
	height: auto;
	width: 168px;
	min-height: 0;
}

#main-nav ul li:hover > a,
#main-nav ul li:hover > span {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.37) 25%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.37) 25%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.37) 25%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bf000000', endColorstr='#00000000', GradientType=0);
}

#main-nav ul li:hover ul:before {
	content: '';
	display: block;
	position: absolute;
	left: 40px;
	top: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7.5px 10px 7.5px;
	border-color: transparent transparent #fff transparent;
}

#main-nav ul li ul li,
#main-header.floating #main-nav ul li ul li {
	min-height: 30px;
	margin: 0;
}

#main-nav ul li ul li a,
#main-header.floating #main-nav ul li ul li a {
	clear: both;
	box-sizing: border-box;
	display: block;
	float: none;
	height: auto;
	min-height: 30px;
	width: 100%;
	padding: 5px 10px;
	background: #fff;
	color: #000;
	line-height: 20px;
	text-align: left;
	transition: background-color 500ms ease;
}

#main-nav ul li ul li:hover a {
	background: #000;
	color: #fff;
}

#main-nav ul li ul li:hover:before {
	display: none;
}

#main-nav ul li ul li:hover:before {
	animation: none;
}

@-webkit-keyframes main-nav-a-hover-animation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes main-nav-a-hover-animation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes main-nav-a-hover-animation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes main-nav-a-hover-animation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#main-nav ul li:hover:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 3px;
	width: 100%;
	background-color: #fff;
	z-index: 9999;
	animation: main-nav-a-hover-animation 650ms forwards;
}

#main-header.floating #main-nav {
	min-height: 100px;
}

#main-header.floating #main-nav ul li {
	height: 100px;
}

#main-header.floating #main-nav ul li a,
#main-header.floating #main-nav ul li span {
	height: 99px;
	color: #111;
}

#main-header.floating #main-nav ul li.Highlighted a {
	color: rgba(0, 0, 0, .75);
}

#main-header.floating #main-nav ul li ul {
	top: 100px;
}

#main-header.floating #main-nav ul li ul li {
	min-height: 0;
}

#main-header.floating #main-nav ul li:hover>a {
	background: var(--primary-color);
	color: var(--primary-highcontrast-color);
}

/* Languages */
#languages {
	position: relative;
	float: right;
	height: 32px;
	width: 50px;
	margin-top: 15px;
}

#languages ul {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	width: 100%;
	padding-top: 32px;
	background: #fff;
	border-radius: 5px;
}

#languages ul li {
	height: 32px;
	width: 100%;
}

#languages ul li a {
	display: block;
	height: 100%;
	width: calc(100% - 9px);
	color: #333;
	font-size: 16px;
	line-height: 32px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

#languages ul li {
	display: none;
}

#languages:hover ul li {
	display: block;
}

#languages ul li.active {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

#languages ul li.active a {
	padding-right: 8px;
	color: var(--primary-color);
}

#languages ul li.active a:after {
	content: "";
	display: block;
	position: absolute;
	top: 14px;
	right: 6px;
	height: 5px;
	width: 9px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 9 5' version='1.1' viewBox='0 0 9 5' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4.85 4.85 8.85 0.85 8.15 0.15 4.5 3.79 0.85 0.15 0.15 0.85 4.15 4.85'/%3E%3C/svg%3E");
	background-size: 9px 5px;
	background-repeat: no-repeat;
}

#languages ul:hover li.active a:after {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg enable-background='new 0 0 9 5' version='1.1' viewBox='0 0 9 5' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4.85 0.15 8.85 4.15 8.15 4.85 4.5 1.21 0.85 4.85 0.15 4.15 4.15 0.15'/%3E%3C/svg%3E%0A");
}

#languages ul li:not(.active):hover {
	background: rgba(0, 0, 0, 0.035);
}

/* Highlight products */
#highlight-products {
	clear: both;
	background-color: #fff;
	padding: 60px 0 10px;
	text-align: center;
}

#highlight-products .title {
	display: block;
	margin-bottom: 50px;
	color: var(--primary-color);
	font-size: 30px;
}

#highlight-products .product {
	display: inline-block;
	position: relative;
	height: auto;
	min-height: 250px;
	width: 250px;
	margin: 0 30px;
	text-decoration: none;
	overflow: hidden;
}

#highlight-products .product .picture-container {
	height: auto;
	width: 100%;
	margin: 0 20px 6px 0;
}

#highlight-products .product .picture-container img {
	width: 90%;
	border-radius: 1px;
}

#highlight-products .product .label {
	display: block;
	height: 54px;
	margin-top: 20px;
	color: #333;
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
	cursor: pointer;
	overflow: hidden;
}

#highlight-products .product .price {
	display: block;
	height: 18px;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
	text-align: right;
	cursor: pointer;
}

#highlight-products .product .price.crossed {
	display: inline-block;
	padding-top: 10px;
	color: #999;
	font-size: 15px;
	font-weight: normal;
	text-decoration: line-through;
}

#highlight-products .product .button {
	display: none;
}

#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: 0.5px;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 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;
}

/* Services */
#booking-mini {
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 20px;
	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;
}

#booking-mini {
	right: 165px;
}

#booking-mini>a {
	color: #fff;
	text-decoration: none;
}

/* Home slider */
#home-slider {
	position: relative;
	height: 840px;
	width: 100%;
	background-color: #fff;
	overflow-y: visible;
	text-align: center;
}

#home-slider .slider {
	position: relative;
	height: 840px;
	width: 100%;
	margin-bottom: 35px;
	overflow-y: visible;
}

#home-slider .slider .slick-list {
	height: 840px;
	overflow: hidden;
}

#home-slider .slider .slide {
	display: block;
	position: relative;
	float: left;
	height: 840px;
	width: 100%;
	list-style: none;
}

#home-slider .slider .slide>img {
	height: 100%;
	width: 100%;
	margin-top: -4.5%;
}

#home-slider .slider .slide .text {
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	right: 0;
	min-height: 140px;
	height: auto;
	width: 100%;
	padding-top: 40px;
	background: #fff;
}

#home-slider .slider .slide .text:before {
	content: "";
	display: block;
	position: absolute;
	top: -7px;
	left: 0;
	height: 7px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'%3E%3Cpath fill='%23fff' d='M0 7l6-6 6 6H0'/%3E%3Cpath d='M6 0L0 6v1l6-6 6 6V6z'/%3E%3C/svg%3E");
	background-size: 12px 7px;
	z-index: 10000;
}

#home-slider .slider .slide .text .title {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	color: #000;
	font-size: 35px;
	font-weight: 100;
	line-height: 40px;
	text-align: center;
	opacity: 0;
}

@-webkit-keyframes home-slider-title-animation {
	0% {
		transform: translateY(-80px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-moz-keyframes home-slider-title-animation {
	0% {
		transform: translateY(-80px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@-o-keyframes home-slider-title-animation {
	0% {
		transform: translateY(-80px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes home-slider-title-animation {
	0% {
		transform: translateY(-80px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

#home-slider .slider .slide.slick-current .text .title {
	-webkit-animation: home-slider-title-animation 2s forwards;
	-moz-animation: home-slider-title-animation 2s forwards;
	-o-animation: home-slider-title-animation 2s forwards;
	animation: home-slider-title-animation 2s forwards;
}

#home-slider .slider .slide .text .description {
	display: block;
	width: 100%;
	color: #111;
	font-size: 25px;
	font-weight: 100;
	line-height: 30px;
	text-align: center;
	opacity: 0;
}

#home-slider .slider .slide.slick-current .text .description {
	-webkit-animation: home-slider-title-animation 2s forwards;
	-moz-animation: home-slider-title-animation 2s forwards;
	-o-animation: home-slider-title-animation 2s forwards;
	animation: home-slider-title-animation 2s forwards;
}

#home-slider .slick-dots {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0;
	z-index: 10001;
}

#home-slider .slick-dots li {
	display: inline-block;
	height: 12px;
	width: 12px;
	margin-right: 5px;
	list-style-type: none;
}

#home-slider .slick-dots li:only-child {
	display: none;
}

#home-slider .slick-dots li button {
	display: block;
	height: 12px;
	width: 12px;
	padding: 0;
	background: #fff;
	border: 1px solid #555;
	border-radius: 6px;
	font-size: 0;
	opacity: 1;
	transition: opacity 0.2s;
	cursor: pointer;
}

#home-slider .slick-dots li button:hover {
	opacity: 1;
}

#home-slider .slick-dots li.slick-active button {
	background: var(--primary-color);
	border-color: var(--primary-color);
	opacity: 1;
}

#home-slider #site-title-container {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: auto;
	transform: translate(-50%, calc(-50% - 70px));
	text-align: center;
	z-index: 9999;
}

#home-slider #site-title-container a {
	color: #fff;
	font-weight: bold;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 56px;
	text-decoration: none;
	text-shadow: 1px 1px 1px #222, -1px -1px 1px #222, -1px 1px 1px #222, 1px -1px 1px #222, 0 0 1px #222, 0 0 2px #222;
	text-transform: uppercase;
	z-index: 9999;
}

#home-slider .booking-button {
	white-space: nowrap;
	box-sizing: border-box;
	display: inline-block;
	height: 50px;
	width: auto;
	padding: 0 10px 0 10px;
	margin: 0 0 10px 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;
	transition: background 0.3s;
}

#home-slider .booking-button:before {
	content: url("/images/bookme-button.png");
	display: block;
	float: left;
	height: 24px;
	width: 26px;
	padding: 0;
	margin: 14px 8px 0 0;
	line-height: 24px;
}

#home-slider .booking-button:hover,
#home-slider .booking-button:active {
	background: var(--primary-dark-color);
}

/* 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;
}

.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.telephone,
#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.telephone,
#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.telephone {
	background: url("~/Custom_Code/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/Custom_Code/Images/E101/mobile_var(--secondary-highcontrast-color).png") no-repeat top left;
}

#pratical-information ul li.fax {
	background: url("~/Custom_Code/Custom_Code/Images/E101/fax_var(--secondary-highcontrast-color).png") no-repeat top left;
}

#pratical-information.light-view ul li.telephone {
	background: url("~/Custom_Code/Custom_Code/Images/E101/telephone_black.png") no-repeat top left;
}

#pratical-information.light-view ul li.gsm {
	background: url("~/Custom_Code/Custom_Code/Images/E101/mobile_black.png") no-repeat top left;
}

#pratical-information.light-view ul li.fax {
	background: url("~/Custom_Code/Custom_Code/Images/E101/fax_black.png") no-repeat top left;
}

/* Practical informations */
#useful-informations {
	box-sizing: border-box;
	width: 260px;
	padding: 24px 25px;
	margin: 20px 0 15px;
	color: #fff;
	font-size: 17px;
	border-radius: 6px;
	background: var(--secondary-color);
	line-height: 20px;
}

#small-column.floatLeft #useful-informations {
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	margin: 20px 0;
	color: #333;
	font-size: 14px;
	border-radius: 6px;
	background: none;
	line-height: 19px;
}

#useful-informations>.title {
	display: block;
	margin-bottom: 13px;
	color: #fff;
	font-size: 19px;
	text-transform: uppercase;
}

#small-column.floatLeft #useful-informations>.title {
	display: block;
	margin: 0 0 7px 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
	text-transform: none;
}

#useful-informations .phone,
#useful-informations .fax,
#useful-informations .mobile {
	display: block;
	margin: 12px 0 2px;
	font-size: 17px;
	color: #fff;
}

#useful-informations .phone a,
#useful-informations .fax a,
#useful-informations .mobile a {
	color: #000;
	font-size: 14px;
	font-weight: normal;
}

#small-column.floatLeft #useful-informations .phone,
#small-column.floatLeft #useful-informations .fax,
#small-column.floatLeft #useful-informations .mobile {
	margin: 5px 0;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

/* Catalog terms */
#catalog-terms {
	float: left;
	width: 100%;
	padding-top: 30px;
	margin: 30px 0;
	border-top: 1px solid var(--secondary-color);
}

#catalog-terms .title {
	display: block;
	margin: 0 0 10px 0;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 500;
}

#catalog-terms .link {
	display: block;
	color: #111;
	font-size: 15px;
	line-height: 17px;
	text-decoration: underline;
}

#catalog-terms .link:hover {
	text-decoration: none;
}

/* Schedules */
#schedules {
	width: 100%;
	margin: 20px 0;
}

#schedules .title {
	display: block;
	margin-bottom: 12px;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#schedules table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	font-size: 13px;
}

#schedules table tr:first-of-type th:first-of-type {
	border-radius: 4px 0 0 0;
}

#schedules table tr:first-of-type td:last-of-type {
	border-radius: 0 4px 0 0;
}

#schedules table tr:last-of-type th:first-of-type {
	border-radius: 0 0 0 4px;
}

#schedules table tr:last-of-type td:last-of-type {
	border-radius: 0 0 4px 0;
}

#schedules table tr {
	color: #4d4d4d;
	line-height: 15px;
}

#schedules table th {
	width: 28%;
	padding: 7px 0 7px 8px;
	color: #454545;
	font-size: 12px;
	text-align: left;
}

#schedules table td {
	width: 36%;
	padding: 7px 8px 7px 0;
	color: #717171;
	font-size: 13px;
	text-align: center;
}

#schedules table td[colspan="2"] {
	width: 72%;
	padding-right: 36%;
}

#schedules table tr.even th,
#schedules table tr.odd td,
#schedules table tr.odd td {
	transition: background-color 0.2s;
}

#schedules table tr.even th,
#schedules table tr.even td {
	background-color: #f1f1f1;
	vertical-align: top;
}

#schedules table tr.odd th,
#schedules table tr.odd td {
	background-color: #fafafa;
	vertical-align: top;
}

#schedules table tr th:first-letter {
	text-transform: uppercase;
}

/* 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;
}

/* Facilites */
#facilites {
	width: 100%;
	margin: 30px 0;
}

#facilites .title {
	display: block;
	margin: 0 0 7px 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#facilites ul {
	font-size: 0;
}

#facilites ul li {
	display: inline-block;
	margin-right: 5px;
}

/* Spoken languages */
#spoken-languages {
	width: 100%;
	margin: 30px 0;
}

#spoken-languages .title {
	display: block;
	margin: 0 0 7px 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#spoken-languages ul {
	font-size: 0;
}

#spoken-languages ul li {
	display: inline-block;
	margin-right: 5px;
}

/* Links */
#links {
	width: 100%;
	margin: 30px 0;
}

#links .title {
	display: block;
	margin: 0 0 7px 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#links ul {
	clear: both;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#links ul li {
	display: block;
	width: 100%;
	padding: 7px 0 6px;
	margin: 0;
	border-bottom: 1px solid #eee;
	font-size: 13px;
	color: #333;
}

#links ul li:last-child {
	border: none;
}

#links ul li:hover {
	color: #000;
}

#links ul li>a {
	display: block;
	color: #717171;
	font-size: 13px;
	line-height: 15px;
	font-weight: bold;
	text-decoration: none;
}

#links ul li>a:hover {
	text-decoration: underline;
}

/* Files */
#files {
	width: 100%;
}

#files .title {
	padding: 0 0 15px 0;
	margin: 0;
	color: var(--secondary-highcontrast-color);
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	text-transform: none;
}

#files ul {
	clear: both;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#files ul li {
	margin-bottom: 10px;
}

#files ul li a {
	font-size: 14px;
	color: var(--secondary-highcontrast-color);
	line-height: 20px;
	text-decoration: none;
}

#files ul li a:hover {
	text-decoration: underline;
}

/* Legal notice */
#legal-notice {
	width: 100%;
	margin: 30px 0;
}

#legal-notice .title {
	display: block;
	margin: 40px 0 30px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 600;
}

#small-column #legal-notice .title {
	display: block;
	margin: 0 0 7px 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
}

#legal-notice>p {
	display: block;
}

#legal-notice .subtitle {
	display: inline-block;
	margin-bottom: 5px;
	color: #333;
	font-size: 16px;
	font-weight: 600;
}

#small-column #legal-notice .subtitle {
	display: inline-block;
	margin-bottom: 5px;
	color: #333;
	font-size: 13px;
	font-weight: bold;
}

#legal-notice p {
	display: inline-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 {
	margin: 30px 0;
}

#presentation>h2 {
	float: none;
	margin: 40px 0 30px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 600;
}

#presentation>p {
	margin-bottom: 14px;
	line-height: 24px;
	font-size: 16px;
	color: #545454;
}

#presentation>p a {
	color: var(--primary-color);
}

#presentation>p a:hover {
	text-decoration: underline;
}

#presentation>p strong,
#presentation>ul strong {
	font-size: 16px;
	font-weight: bold;
}

#presentation>ul {
	color: #393939;
	list-style-type: disc;
	margin: 5px 0 5px 16px;
}

#presentation>ul>li {
	color: #545454;
	font-size: 14px;
	line-height: 19px;
	margin: 4px 0;
	padding-left: 0;
}

/* Main content */
#main-content {
	padding: 170px 10% 120px;
	background-color: #fff;
}

#main-content:after {
	content: "";
	display: block;
	clear: both;
}

/* Presentation short */
#home-presentation {
	display: flex;
	padding: 120px 10%;
	background-color: #fff;
	justify-content: space-between;
}

#presentation-short-container {
	max-width: 50%;
}

#presentation-short-container.large {
	max-width: 100%;
}

#presentation-short:after {
	content: "";
	display: block;
	clear: both;
}

#presentation-short>.title {
	display: block;
	margin-bottom: 20px;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: bold;
}

#presentation-short p {
	display: inline;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
}

#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 {
	content: " ";
}

#presentation-short br:after {
	content: " ";
}

.presentation-short-more-link {
	display: block;
	float: right;
	height: 30px;
	width: auto;
	padding: 0 20px;
	margin-top: 20px;
	background-color: var(--primary-color);
	border-radius: 4px;
	color: var(--primary-highcontrast-color);
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
	text-align: right;
	text-decoration: none;
	transition: background-color 350ms linear;
}

.presentation-short-more-link:hover {
	background-color: var(--primary-dark-color);
}

.presentation-short-more-link:after {
	content: "\f054";
	display: inline-block;
	margin-left: 8px;
	color: var(--primary-highcontrast-color);
	font-family: "Font Awesome 5 Free";
	font-size: 11px;
	font-weight: 900;
	line-height: 30px;
	opacity: 0.55;
}

#presentation-picture-wrapper {
	width: 50%;
	text-align: center;
}

#presentation-picture-wrapper .picture-container {
	display: inline-block;
	position: relative;
	width: 370px;
	border-radius: 50%;
	height: 370px;
	box-shadow: 0 0 0 10px #f1f1f1;
	overflow: hidden;
}

#presentation-picture-wrapper .picture-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 979px) {
	#home-presentation {
		display: block;
	}

	#presentation-short-container {
		max-width: 100%;
		margin-bottom: 70px;
	}

	#presentation-picture-wrapper {
		padding-left: 0;
	}

	#presentation-picture-wrapper .picture-container {
		margin: 0 auto;
	}
}

@media only screen and (max-width: 450px) {
	#presentation-picture-wrapper .picture-container {
		width: 250px;
		height: 250px;
	}
}

/* Contact band */
#contact-band {
	box-sizing: border-box;
	clear: both;
	position: relative;
	width: 100%;
	padding: 250px 35%;
}

#contact-band:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 7px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'%3E%3Cpath fill='%23fff' d='M12 0L6 6 0 0h12'/%3E%3Cpath d='M6 7l6-6V0L6 6 0 0v1z'/%3E%3C/svg%3E");
	background-size: 12px 7px;
}

#contact-band:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 7px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'%3E%3Cpath fill='%23fff' d='M0 7l6-6 6 6H0'/%3E%3Cpath d='M6 0L0 6v1l6-6 6 6V6z'/%3E%3C/svg%3E");
	background-size: 12px 7px;
}

#contact-band .contact-button,
#contact-band .booking-button {
	display: block;
	height: 75px;
	background-color: var(--primary-color);
	border: none;
	border-radius: 5px;
	color: var(--primary-highcontrast-color);
	font-size: 30px;
	font-weight: 600;
	line-height: 75px;
	text-align: center;
	text-decoration: none;
}

/* Bottom */
#bottom-wrapper {
	position: relative;
	padding: 40px 10% 0;
	background-color: var(--secondary-color);
	font-size: 0;
}

#bottom-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	width: 100%;
	background: #fff;
}

#bottom-wrapper:after {
	content: '';
	display: block;
	position: absolute;
	top: 40px;
	left: 0;
	height: 7px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'%3E%3Cpath fill='%23fff' d='M0 7l6-6 6 6H0'/%3E%3Cpath d='M6 0L0 6v1l6-6 6 6V6z'/%3E%3C/svg%3E");
	background-size: 12px 7px;
	transform: rotate(180deg);
}

#bottom-left-container {
	box-sizing: border-box;
	display: inline-block;
	width: 33.33%;
	padding-right: 40px;
	margin: 60px 0;
	vertical-align: top;
}

#bottom-right-container {
	box-sizing: border-box;
	display: inline-block;
	width: 65.66%;
	padding-left: 40px;
	margin: 60px 0;
	border-left: 1px solid var(--primary-color);
	vertical-align: top;
}

#bottom-right-container>.column {
	display: inline-block;
	width: 250px;
	margin-bottom: 40px;
	vertical-align: top;
}

#bottom-left-container #links {
	margin: 0;
}

#bottom-left-container #links .title {
	padding: 0 0 15px 0;
	margin: 0;
	color: var(--secondary-highcontrast-color);
	font-size: 18px;
	font-weight: bold;
	text-align: left;
}

#bottom-left-container #links ul li {
	display: block;
	width: auto;
	padding: 5px 0 3px;
	margin: 0;
	border-bottom: none;
}

#bottom-left-container #links ul li>a {
	color: var(--secondary-highcontrast-color);
	font-size: 14px;
	font-weight: 400;
}

#bottom-left-container .social .title {
	display: none;
}

#bottom-left-container .social ul {
	margin-top: 10px;
	font-size: 0;
}

#bottom-left-container .social ul li {
	display: inline-block;
	height: 28px;
	width: 28px;
	margin-right: 4px;
	vertical-align: top;
}

#bottom-left-container .social ul li:empty {
	display: none;
}

#bottom-left-container .social ul li a {
	display: block;
	height: 28px;
	width: 28px;
	background-color: var(--primary-highcontrast-color);
	border-radius: 14px;
	color: var(--secondary-color);
	text-decoration: none;
	cursor: pointer;
}

#bottom-left-container .social ul li a i {
	display: block;
	height: 28px;
	width: 28px;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
}

#bottom-left-container .social ul li a.x {
	display: flex;
	align-items: center;
	justify-content: center;
}

#bottom-left-container .social ul li a.x svg {
	height: 15px;
	width: 12px;
	fill: var(--secondary-color);
}

#bottom-left-container .social ul li.facebook-like {
	height: 20px;
	width: auto;
	padding: 5px 3px;
}

#bottom-left-container .social ul li.facebook-like #fb-root {
	display: none;
}

#bottom-left-container .social ul li.facebook-like>iframe {
	height: 20px;
}

#bottom-right-container #useful-informations {
	padding: 0;
	margin: 0;
}

#bottom-right-container #useful-informations .title {
	padding: 0 0 15px 0;
	margin: 0;
	color: var(--secondary-highcontrast-color);
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	text-transform: none;
}

#bottom-right-container #useful-informations {
	color: var(--secondary-highcontrast-color);
	font-size: 14px;
}

#bottom-right-container #useful-informations [itemprop="name"] {
	font-weight: bold;
}

#bottom-right-container #useful-informations .phone,
#bottom-right-container #useful-informations .fax,
#bottom-right-container #useful-informations .mobile,
#bottom-right-container #useful-informations .gsm {
	margin: 0;
	font-size: 14px;
	color: var(--secondary-highcontrast-color);
}

#bottom-right-container #useful-informations .phone a,
#bottom-right-container #useful-informations .fax a,
#bottom-right-container #useful-informations .mobile a,
#bottom-right-container #useful-informations .gsm a{
	font-size: 14px;
	color: var(--secondary-highcontrast-color);
}

#bottom-right-container #schedules {
	margin: 0;
}

#bottom-right-container #schedules .title {
	display: none;
}

#bottom-right-container #schedules table {
	width: auto;
}

#bottom-right-container #schedules table tr {
	display: block;
}

#bottom-right-container #schedules table tr.even th,
#bottom-right-container #schedules table tr.odd th,
#bottom-right-container #schedules table tr.even td,
#bottom-right-container #schedules table tr.odd td {
	display: inline-block;
	width: auto;
	padding: 0;
	margin-right: 4px;
	background: none;
	border-radius: 0;
	color: var(--secondary-highcontrast-color);
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	white-space: nowrap;
}

#bottom-right-container #schedules table tr.even th:after,
#bottom-right-container #schedules table tr.odd th:after {
	content: ":";
	display: inline-block;
	margin-left: 3px;
}

#bottom-right-container #schedules table tr.even td:after,
#bottom-right-container #schedules table tr.odd td:after {
	content: ",";
	display: inline-block;
}

#bottom-right-container #schedules table tr.even td:last-of-type:after,
#bottom-right-container #schedules table tr.odd td:last-of-type:after {
	content: "";
}

#bottom-right-container #schedules .more-text {
	display: block;
	margin-top: 5px;
	color: var(--secondary-highcontrast-color);
	font-size: 14px;
	line-height: 20px;
	text-align: left;
}

#bottom-right-container .contact-page-link {
	display: inline-block;
	height: 30px;
	width: auto;
	padding: 0 20px;
	margin-top: 15px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	color: var(--primary-highcontrast-color);
	font-size: 14px;
	font-weight: bold;
	line-height: 30px;
	text-align: right;
	text-decoration: none;
	transition: background-color 350ms linear;
}

#bottom-right-container .contact-page-link:hover {
	background-color: transparent;
	color: var(--secondary-highcontrast-color);
}

/* Footer */
#main-footer {
	clear: both;
	box-sizing: border-box;
	height: 115px;
	width: 100%;
	padding: 15px 0;
	background-color: #fff;
}

#main-footer-wrapper {
	background-color: #fff;
}

#main-footer .links {
	display: inline-block;
	clear: both;
	width: 50%;
	text-align: center;
	vertical-align: top;
}

#main-footer .links a {
	display: inline-block;
	white-space: nowrap;
	font-size: 13.5px;
	color: #444;
	text-decoration: underline;
	cursor: pointer;
}

#main-footer .links a:last-of-type:after {
	content: '';
	margin: 0;
}

#main-footer .links a:after {
	content: '|';
	display: inline-block;
	margin: 0 6px;
}

#main-footer .links a:hover {
	color: #000;
}

#main-footer .editus-logo {
	display: inline-block;
	height: 64px;
	width: 82px;
	margin: -14px 7px 20px 5px;
	background: url("/images/editus-logo.png") no-repeat right center;
	background-size: auto 42px;
	overflow: visible;
}

#main-footer .last-updated {
	display: inline-block;
	margin-right: 20px;
	font-size: 14px;
	color: #333;
	line-height: 25px;
	vertical-align: top;
}

#main-footer .last-updated strong {
	font-weight: 600;
}

@media screen and (max-width: 641px) {
	#main-footer {
		box-sizing: border-box;
		height: auto;
		width: 100%;
		padding: 10px 0 20px;
	}
}

@media screen and (max-width: 1500px) {

	#home-slider .slider .slick-list,
	#home-slider .slider .slide,
	#home-slider .slider {
		height: 700px;
	}
}

/* Social */
#main-footer .social {
	display: block;
	float: left;
	height: 42px;
}

#main-footer .social .title {
	display: block;
	float: left;
	padding-top: 6px;
	margin-right: 10px;
	font-size: 13px;
	font-weight: bold;
	color: var(--primary-color);
}

#main-footer .social ul {
	float: left;
	font-size: 0;
}

#main-footer .social ul li {
	display: inline-block;
	height: 26px;
	width: 26px;
	vertical-align: top;
}

#main-footer .social ul li a {
	display: block;
	height: 26px;
	width: 26px;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

#main-footer .social ul li:first-of-type a {
	border-radius: 1px 0 0 1px;
}

#main-footer .social ul li:last-of-type a {
	border-radius: 0 1px 1px 0;
}

#main-footer .social ul li a i {
	display: block;
	height: 26px;
	width: 26px;
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}

#main-footer .social ul li a.facebook {
	background-color: #1b74e4;
}

#main-footer .social ul li a.x {
	background-color: #00aced;
}

#main-footer .social ul li a.x svg {
	height: 14px;
	margin: 11px;
	fill: #fff;
}

#main-footer .social ul li a.share-by-email {
	background-color: var(--primary-color);
}

#main-footer .social ul li.facebook-like {
	height: 20px;
	width: auto;
	padding: 3px 6px;
}

#main-footer .social ul li.facebook-like #fb-root {
	display: none;
}

#main-footer .social ul li.facebook-like>iframe {
	height: 20px;
}

@media screen and (max-width: 641px) {
	#main-footer .social .title {
		margin-bottom: 10px;
	}
}

/* News */
#news {
	margin: 30px 0;
}

#news .title {
	display: block;
	float: none;
	margin: 40px 0 15px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 500;
}

#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-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612.003 612.003'%3E%3Cpath d='M608.067 333.255l-44.973-71.364a25.567 25.567 0 0 1-3.352-19.022l17.854-82.442c2.784-12.848-4.649-25.708-17.164-29.724l-80.323-25.759a25.549 25.549 0 0 1-14.795-12.413l-39.315-74.627C419.875 6.27 405.917 1.193 393.746 6.161l-78.094 31.902a25.587 25.587 0 0 1-19.31 0L218.261 6.167c-12.171-4.968-26.129.109-32.259 11.743l-39.315 74.62a25.549 25.549 0 0 1-14.795 12.413L51.57 130.702c-12.522 4.016-19.948 16.877-17.164 29.724l17.847 82.442a25.538 25.538 0 0 1-3.352 19.022L3.934 333.255c-7.011 11.123-4.425 25.746 5.964 33.805l66.664 51.677a25.546 25.546 0 0 1 9.661 16.73l11.424 83.573c1.775 13.026 13.16 22.573 26.289 22.062l84.288-3.263a25.574 25.574 0 0 1 18.154 6.602l62.462 56.677c9.738 8.831 24.597 8.831 34.328 0l62.469-56.677a25.511 25.511 0 0 1 18.154-6.602l84.281 3.263c13.141.511 24.514-9.042 26.295-22.062l11.424-83.573a25.565 25.565 0 0 1 9.655-16.73l66.664-51.677c10.388-8.059 12.968-22.682 5.957-33.805zM235.234 407.92l-74.435-51.99 30.593 70.904-20.389 8.799-46.92-108.719 21.353-9.221 75.84 53.401-31.34-72.602 20.389-8.806 46.933 108.725-22.024 9.509zm45.234-19.527l-46.92-108.719 80.616-34.801 7.931 18.396-58.669 25.318 10.402 24.099 54.589-23.562 7.905 18.32L281.733 331l12.771 29.59 60.738-26.212 7.905 18.32-82.679 35.695zm183.78-79.313l-56.735-71.945 13.492 90.597-23.805 10.274-72.871-97.512 22.464-9.706 48.625 67.609-12.356-83.253 26.116-11.27 51.831 67.718-16.091-83.145 22.1-9.54 20.516 120.123-23.286 10.05z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#news-list .news.event:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg enable-background='new 0 0 612 612' version='1.1' viewBox='0 0 612 612' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m466.29 87.458v-58.344c0-16.087-13.086-29.114-29.143-29.114-16.087 0-29.143 13.027-29.143 29.114v58.344c0 16.087 13.085 29.114 29.143 29.114 16.086-1e-3 29.143-13.028 29.143-29.114z'/%3E%3Cpath d='m182.14 116.57c12.065 0 21.857-9.733 21.857-21.915v-72.74c0-12.095-9.763-21.916-21.857-21.916h-14.572c-12.065 0-21.857 9.734-21.857 21.916v72.711c0 12.124 9.763 21.944 21.857 21.944h14.572z'/%3E%3Cpath d='m18.331 58.286c-10.142 0-18.331 8.48-18.331 18.884v515.92c0 10.463 8.189 18.914 18.302 18.914h575.37c10.142 0 18.331-8.48 18.331-18.914v-515.92c0-10.433-8.219-18.885-18.331-18.885h-98.24v54.526c0 18.302-19.584 32.902-43.743 32.902h-29.085c-24.247 0-43.743-14.717-43.743-32.902v-54.525h-145.72v54.526c0 18.302-19.584 32.902-43.744 32.902h-29.084c-24.247 0-43.744-14.717-43.744-32.902v-54.526h-98.24zm477.1 204h87.429v87.428h-87.429v-87.428zm0 116.57h87.429v87.429h-87.429v-87.429zm0 116.57h87.429v76.529c0 6.003-5.596 10.899-12.531 10.899h-74.897v-87.428zm-116.57-233.14h87.429v87.428h-87.429v-87.428zm0 116.57h87.429v87.429h-87.429v-87.429zm0 116.57h87.429v87.429h-87.429v-87.429zm-116.57-233.14h87.428v87.428h-87.428v-87.428zm0 233.14h87.428v87.429h-87.428v-87.429zm-116.57-233.14h87.429v87.428h-87.429v-87.428zm0 116.57h87.429v87.429h-87.429v-87.429zm0 116.57h87.429v87.429h-87.429v-87.429zm-29.143 87.428h-74.897c-6.936 0-12.531-4.867-12.531-10.899v-76.529h87.428v87.428zm0-116.57h-87.428v-87.429h87.428v87.429zm0-116.57h-87.428v-87.428h87.428v87.428z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#news-list .news.promo:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612.003 612.003'%3E%3Cpath d='M608.067 333.255l-44.973-71.364a25.567 25.567 0 0 1-3.352-19.022l17.854-82.442c2.784-12.848-4.649-25.708-17.164-29.724l-80.323-25.759a25.549 25.549 0 0 1-14.795-12.413l-39.315-74.627C419.875 6.27 405.917 1.193 393.746 6.161l-78.094 31.902a25.587 25.587 0 0 1-19.31 0L218.261 6.167c-12.171-4.968-26.129.109-32.259 11.743l-39.315 74.62a25.549 25.549 0 0 1-14.795 12.413L51.57 130.702c-12.522 4.016-19.948 16.877-17.164 29.724l17.847 82.442a25.538 25.538 0 0 1-3.352 19.022L3.934 333.255c-7.011 11.123-4.425 25.746 5.964 33.805l66.664 51.677a25.546 25.546 0 0 1 9.661 16.73l11.424 83.573c1.775 13.026 13.16 22.573 26.289 22.062l84.288-3.263a25.574 25.574 0 0 1 18.154 6.602l62.462 56.677c9.738 8.831 24.597 8.831 34.328 0l62.469-56.677a25.511 25.511 0 0 1 18.154-6.602l84.281 3.263c13.141.511 24.514-9.042 26.295-22.062l11.424-83.573a25.565 25.565 0 0 1 9.655-16.73l66.664-51.677c10.388-8.059 12.968-22.682 5.957-33.805zM235.234 407.92l-74.435-51.99 30.593 70.904-20.389 8.799-46.92-108.719 21.353-9.221 75.84 53.401-31.34-72.602 20.389-8.806 46.933 108.725-22.024 9.509zm45.234-19.527l-46.92-108.719 80.616-34.801 7.931 18.396-58.669 25.318 10.402 24.099 54.589-23.562 7.905 18.32L281.733 331l12.771 29.59 60.738-26.212 7.905 18.32-82.679 35.695zm183.78-79.313l-56.735-71.945 13.492 90.597-23.805 10.274-72.871-97.512 22.464-9.706 48.625 67.609-12.356-83.253 26.116-11.27 51.831 67.718-16.091-83.145 22.1-9.54 20.516 120.123-23.286 10.05z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#news-list .news.last-minute:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='378.31px' height='378.31px' enable-background='new 0 0 378.311 378.311' version='1.1' viewBox='0 0 378.311 378.311' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m189.16 0c-104.3 0-189.16 84.858-189.16 189.16 0 104.3 84.857 189.16 189.16 189.16 104.3 0 189.15-84.857 189.15-189.16 0-104.3-84.85-189.16-189.15-189.16zm0 347.14c-87.117 0-157.99-70.87-157.99-157.99 0-87.115 70.871-157.99 157.99-157.99s157.99 70.873 157.99 157.99c0 87.117-70.87 157.99-157.99 157.99z'/%3E%3Cpath d='m204.74 182.96v-107.12c0-8.606-6.977-15.584-15.583-15.584-8.605 0-15.582 6.978-15.582 15.584v113.31c0 4.839 2.25 9.101 5.703 11.962 0.146 0.176 0.245 0.373 0.397 0.546l58.438 66.354c3.082 3.49 7.381 5.279 11.701 5.279 3.652 0 7.33-1.276 10.289-3.888 6.461-5.692 7.084-15.537 1.398-21.998l-56.761-64.447z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#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: 8px;
	color: #222;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
}

#news-list .news-description {
	display: block;
	margin-bottom: 8px;
	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: 13px;
	color: #545454;
	line-height: 18px;
}

#news-list .news-description strong,
#news-list .news-description b {
	font-weight: bold;
}

#news-legend {
	font-size: 0;
}

#news-legend li {
	display: inline-block;
	height: 30px;
	margin-left: 20px;
	color: #222;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
	opacity: 0.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-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612.003 612.003'%3E%3Cpath d='M608.067 333.255l-44.973-71.364a25.567 25.567 0 0 1-3.352-19.022l17.854-82.442c2.784-12.848-4.649-25.708-17.164-29.724l-80.323-25.759a25.549 25.549 0 0 1-14.795-12.413l-39.315-74.627C419.875 6.27 405.917 1.193 393.746 6.161l-78.094 31.902a25.587 25.587 0 0 1-19.31 0L218.261 6.167c-12.171-4.968-26.129.109-32.259 11.743l-39.315 74.62a25.549 25.549 0 0 1-14.795 12.413L51.57 130.702c-12.522 4.016-19.948 16.877-17.164 29.724l17.847 82.442a25.538 25.538 0 0 1-3.352 19.022L3.934 333.255c-7.011 11.123-4.425 25.746 5.964 33.805l66.664 51.677a25.546 25.546 0 0 1 9.661 16.73l11.424 83.573c1.775 13.026 13.16 22.573 26.289 22.062l84.288-3.263a25.574 25.574 0 0 1 18.154 6.602l62.462 56.677c9.738 8.831 24.597 8.831 34.328 0l62.469-56.677a25.511 25.511 0 0 1 18.154-6.602l84.281 3.263c13.141.511 24.514-9.042 26.295-22.062l11.424-83.573a25.565 25.565 0 0 1 9.655-16.73l66.664-51.677c10.388-8.059 12.968-22.682 5.957-33.805zM235.234 407.92l-74.435-51.99 30.593 70.904-20.389 8.799-46.92-108.719 21.353-9.221 75.84 53.401-31.34-72.602 20.389-8.806 46.933 108.725-22.024 9.509zm45.234-19.527l-46.92-108.719 80.616-34.801 7.931 18.396-58.669 25.318 10.402 24.099 54.589-23.562 7.905 18.32L281.733 331l12.771 29.59 60.738-26.212 7.905 18.32-82.679 35.695zm183.78-79.313l-56.735-71.945 13.492 90.597-23.805 10.274-72.871-97.512 22.464-9.706 48.625 67.609-12.356-83.253 26.116-11.27 51.831 67.718-16.091-83.145 22.1-9.54 20.516 120.123-23.286 10.05z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#news-legend li.event:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg enable-background='new 0 0 612 612' version='1.1' viewBox='0 0 612 612' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m466.29 87.458v-58.344c0-16.087-13.086-29.114-29.143-29.114-16.087 0-29.143 13.027-29.143 29.114v58.344c0 16.087 13.085 29.114 29.143 29.114 16.086-1e-3 29.143-13.028 29.143-29.114z'/%3E%3Cpath d='m182.14 116.57c12.065 0 21.857-9.733 21.857-21.915v-72.74c0-12.095-9.763-21.916-21.857-21.916h-14.572c-12.065 0-21.857 9.734-21.857 21.916v72.711c0 12.124 9.763 21.944 21.857 21.944h14.572z'/%3E%3Cpath d='m18.331 58.286c-10.142 0-18.331 8.48-18.331 18.884v515.92c0 10.463 8.189 18.914 18.302 18.914h575.37c10.142 0 18.331-8.48 18.331-18.914v-515.92c0-10.433-8.219-18.885-18.331-18.885h-98.24v54.526c0 18.302-19.584 32.902-43.743 32.902h-29.085c-24.247 0-43.743-14.717-43.743-32.902v-54.525h-145.72v54.526c0 18.302-19.584 32.902-43.744 32.902h-29.084c-24.247 0-43.744-14.717-43.744-32.902v-54.526h-98.24zm477.1 204h87.429v87.428h-87.429v-87.428zm0 116.57h87.429v87.429h-87.429v-87.429zm0 116.57h87.429v76.529c0 6.003-5.596 10.899-12.531 10.899h-74.897v-87.428zm-116.57-233.14h87.429v87.428h-87.429v-87.428zm0 116.57h87.429v87.429h-87.429v-87.429zm0 116.57h87.429v87.429h-87.429v-87.429zm-116.57-233.14h87.428v87.428h-87.428v-87.428zm0 233.14h87.428v87.429h-87.428v-87.429zm-116.57-233.14h87.429v87.428h-87.429v-87.428zm0 116.57h87.429v87.429h-87.429v-87.429zm0 116.57h87.429v87.429h-87.429v-87.429zm-29.143 87.428h-74.897c-6.936 0-12.531-4.867-12.531-10.899v-76.529h87.428v87.428zm0-116.57h-87.428v-87.429h87.428v87.429zm0-116.57h-87.428v-87.428h87.428v87.428z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#news-legend li.promo:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='511pt' height='511pt' viewBox='0 -10 511.99912 511' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m472.04 240.25-12.207-105.38c47.715-34.578 67.496-92.605 38.918-121.18-12.203-12.203-31.273-16.184-52.316-10.922-18.641 4.6602-37.758 16.078-53.828 32.148-0.19531 0.19922-0.38281 0.40234-0.57812 0.59766l-141.07-16.344-250.96 250.96 221.08 221.08zm-18.324-208.36c10.566-2.6406 19.242-1.5391 23.805 3.0234 11.109 11.109 0.93359 41.914-21.82 64.301l-3.4961-30.176-24.559-24.559c8.5703-6.0664 17.586-10.469 26.07-12.59zm-191.79 18.773 108.94 12.621c-4.582 8.0898-8.0352 16.395-10.18 24.625l-10.535-10.535-21.227 21.227 63.684 63.688 21.23-21.23-21.23-21.227c-4.5625-4.5625-5.6641-13.238-3.0234-23.805 2.3555-9.4219 7.5195-19.492 14.652-28.879l4.0977 0.47656 15.254 15.254 16.961 146.41-219.47 219.46-178.62-178.62z'/%3E%3Cpath d='m165.72 211.62c-24.828 0-45.031 20.203-45.031 45.035 0 24.828 20.203 45.031 45.031 45.031 24.832 0 45.035-20.203 45.035-45.031 0-24.832-20.203-45.035-45.035-45.035zm0 60.043c-8.2773 0-15.008-6.7344-15.008-15.008 0-8.2773 6.7305-15.012 15.008-15.012s15.012 6.7344 15.012 15.012c0 8.2734-6.7305 15.008-15.012 15.008z'/%3E%3Cpath d='m315.83 301.68c24.832 0 45.035-20.203 45.035-45.031 0-24.832-20.203-45.035-45.035-45.035s-45.031 20.203-45.031 45.035c0 24.828 20.199 45.031 45.031 45.031zm0-60.043c8.2773 0 15.012 6.7344 15.012 15.012 0 8.2734-6.7344 15.008-15.012 15.008-8.2773 0-15.012-6.7344-15.012-15.008 0-8.2773 6.7344-15.012 15.012-15.012z'/%3E%3Cpath d='m240.98 164.12 29.613 4.9336-30.023 180.13-29.613-4.9375z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

#news-legend li.last-minute:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='378.31px' height='378.31px' enable-background='new 0 0 378.311 378.311' version='1.1' viewBox='0 0 378.311 378.311' xml:space='preserve' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m189.16 0c-104.3 0-189.16 84.858-189.16 189.16 0 104.3 84.857 189.16 189.16 189.16 104.3 0 189.15-84.857 189.15-189.16 0-104.3-84.85-189.16-189.15-189.16zm0 347.14c-87.117 0-157.99-70.87-157.99-157.99 0-87.115 70.871-157.99 157.99-157.99s157.99 70.873 157.99 157.99c0 87.117-70.87 157.99-157.99 157.99z'/%3E%3Cpath d='m204.74 182.96v-107.12c0-8.606-6.977-15.584-15.583-15.584-8.605 0-15.582 6.978-15.582 15.584v113.31c0 4.839 2.25 9.101 5.703 11.962 0.146 0.176 0.245 0.373 0.397 0.546l58.438 66.354c3.082 3.49 7.381 5.279 11.701 5.279 3.652 0 7.33-1.276 10.289-3.888 6.461-5.692 7.084-15.537 1.398-21.998l-56.761-64.447z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: 30px 30px;
}

@media only screen and (max-width: 979px) {
	#news-legend {
		text-align: center;
	}

	#news-legend li {
		display: block;
		margin: 0 0 7px;
	}
}

/* Sitemap */
#sitemap .title {
	display: block;
	margin: 40px 0 30px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 500;
}

#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: 15px;
	line-height: 20px;
	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: 7px;
	color: #333;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-weight: 900;
}

/* Products and services */
#products-services {
	margin: 15px 5% 30px;
}

#products-services-photo {
	width: 100%;
	text-align: center;
}

#products-services-photo img {
	display: inline-block;
	max-height: 410px;
	max-width: 100%;
	border-radius: 1px;
}

#products-services .title {
	display: block;
	margin: 20px 0 50px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 600;
}

#products-services h3 {
	clear: both;
	display: block;
	padding: 10px 12px;
	margin: 25px 0 5px;
	background-color: #f7f7f7;
	border-radius: 1px;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
}

#products-services ul {
	clear: both;
	padding: 25px 0 50px;
}

#products-services ul li {
	display: block;
	float: left;
	width: 250px;
	padding: 0 10px;
	margin: 4px 0;
	font-size: 15px;
	color: #656565;
	line-height: 19px;
}

/* Presentation slider */
#presentation-slider {
	position: relative;
	height: 360px;
	width: 100%;
	margin: 15px 0 10px;
	overflow: hidden;
}

#presentation-slider img {
	height: 360px;
	padding: 0 7.5px;
	opacity: 0.25;
	transition: opacity 160ms ease;
}

#presentation-slider img.slick-current {
	opacity: 1;
}

#presentation-slider .slick-arrow {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	height: 36px;
	width: 36px;
	transform: translateY(-50%);
	background-color: var(--primary-color);
	border: none;
	border-radius: 18px;
	color: var(--primary-highcontrast-color);
	font-size: 16px;
	line-height: 36px;
	text-align: center;
	opacity: 0.8;
	transition: opacity 80ms ease;
	cursor: pointer;
	z-index: 8999;
}

#presentation-slider .slick-arrow:hover {
	opacity: 1;
}

#presentation-slider .slick-arrow.slick-prev {
	left: 15px;
	padding-left: 2.5px;
}

#presentation-slider .slick-arrow.slick-next {
	right: 15px;
	padding-right: 2px;
}

/* 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 5%;
}

#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: inline-block;
	float: right;
	height: 35px;
	font-size: 0;
	text-align: right;
}

#list-grid-view li {
	display: inline-block;
	height: 35px;
	width: 25px;
	margin-left: 5px;
	line-height: 35px;
	text-align: center;
}

#list-grid-view li a {
	display: block;
	height: 35px;
	width: 25px;
	color: var(--secondary-color);
	text-decoration: none;
}

#list-grid-view li a.active {
	color: var(--primary-color);
}

#list-grid-view li a i {
	display: block;
	height: 35px;
	width: 25px;
}

#list-grid-view li a i:before {
	display: block;
	height: 35px;
	width: 25px;
	font-size: 20px;
	line-height: 35px;
	text-align: center;
}

/* Filters */
#catalog-toolbar .catalog-filters-title {
	display: inline-block;
	float: left;
	height: 30px;
	padding-right: 7px;
	color: #111;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
}

#catalog-filters {
	display: inline-block;
	float: left;
	width: auto;
	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: 30px;
	width: auto;
	padding: 6px 8px;
	margin-right: 4px;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 1px;
	color: #333;
	font-size: 13px;
	cursor: pointer;
	outline: none;
}

#catalog-filters input[type="submit"].active {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

/* Pagination */
#catalog-articles>.PagerControl {
	display: block;
	height: 24px;
	width: auto;
	line-height: 24px;
	text-align: right;
}

#catalog-articles>.PagerControl:first-of-type {
	margin: 0 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, 0.15);
}

#catalog-articles>.PagerControl .PagerNumberArea .SelectedNext {
	margin: 0 5px;
	color: rgba(0, 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 {
	clear: both;
	display: block;
	padding: 0 70px;
	margin-top: 20px;
	font-size: 0;
	text-align: center;
}

#catalog-articles>span>span {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	height: 240px;
	width: 250px;
	margin: 0 15px 30px 0;
	transition: border-color 0.2s, box-shadow 0.2s;
	line-height: 12px;
	vertical-align: top;
}

#catalog-articles.list>span>span {
	display: block;
	height: 158px;
	width: 100%;
	margin: 0 0 30px 0;
}

#catalog-articles>span>span .product {
	box-sizing: border-box;
	display: block;
	position: relative;
	padding: 15px;
	height: 100%;
	width: 100%;
	text-decoration: none;
}

#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: 0.5px;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 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.list .product .picture-container {
	float: left;
	height: 125px;
	width: 167px;
	margin: 0 20px 6px 0;
}

#catalog-articles .product .picture-container {
	width: 100%;
}

#catalog-articles .product .picture-container img {
	max-width: 100%;
	border-radius: 1px;
}

#catalog-articles .product .label {
	display: block;
	height: auto;
	max-height: 54px;
	margin: 10px 0 5px;
	color: #444;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
}

#catalog-articles.list .product .label {
	height: auto;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 19px;
	overflow: visible;
}

#catalog-articles .product .price {
	display: block;
	height: 18px;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: center;
	cursor: pointer;
}

#catalog-articles.list .product .price {
	font-size: 17px;
	text-align: left;
}

@media all and (min-width: 513px) {
	#catalog-articles.grid>span>span:nth-of-type(3n + 3) {
		margin-right: 0;
	}
}

@media all and (max-width: 979px) {
	#catalog-articles>span>span {
		height: auto;
	}

	#catalog-articles.list>span>span {
		height: 158px;
	}
}

@media all and (max-width: 512px) {
	#catalog-articles {
		padding: 0;
	}

	#catalog-articles.grid>span>span {
		display: block;
		height: 158px;
		width: 100%;
		margin: 0 0 16px 0;
	}

	#catalog-articles.grid .product .picture-container {
		height: 125px;
		width: 167px;
		margin: 0 auto;
	}

	#catalog-articles.grid .product .label {
		height: auto;
		padding-top: 5px;
		margin: 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;
	}
}

/* Article details */
#article-details {
	padding: 30px 5% 0;
}

#article-details-pictures {
	display: inline-block;
	position: relative;
	float: left;
	width: 50%;
}

#article-details-pictures>.picture-container {
	display: inline-block;
	width: auto;
	max-width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

#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: 0.5px;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 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;
	max-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, 0.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: 0.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 {
	box-sizing: border-box;
	float: right;
	width: 50%;
	padding-left: 70px;
	margin-bottom: 30px;
	color: #333;
	font-size: 15px;
	line-height: 20px;
}

#article-details-infos .title {
	color: #333;
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 30px;
	text-transform: uppercase;
}

#article-details-infos .subtitle {
	display: block;
	padding: 10px 0 5px;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: bold;
}

#article-details-infos .price {
	display: inline-block;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: normal;
}

#article-details-infos .price.crossed {
	display: inline-block;
	padding-top: 10px;
	color: #999;
	font-size: 18px;
	font-weight: normal;
	text-decoration: line-through;
}

#article-details-infos .price {
	display: inline-block;
	padding-top: 10px;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: normal;
}

#article-details-infos .description-title {
	display: block;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-size: 17px;
	font-weight: bold;
}

#article-details-price {
	margin-top: 25px;
	font-size: 0;
}

#article-details-price .description-title {
	margin-bottom: 0;
}

#article-details-infos a {
	color: var(--primary-color);
	text-decoration: underline;
}

#article-details-infos a:hover {
	text-decoration: none;
}

#article-details-infos h3 {
	margin: 15px 0 5px;
	color: #646464;
	font-size: 17px;
	font-weight: normal;
	line-height: 20px;
}

#article-details-infos h4 {
	margin: 10px 0 5px;
	color: #343434;
	font-size: 15px;
	font-weight: normal;
	line-height: 18px;
}

#article-details-infos p {
	font-size: 15px;
	color: #555;
	line-height: 24px;
}

#article-details-infos strong,
#article-details-infos b {
	font-weight: bold;
}

#article-details-infos em,
#article-details-infos i {
	font-style: italic;
}

#article-details-infos s {
	text-decoration: line-through;
}

#article-details-infos ul {
	margin: 5px 0 5px 16px;
	list-style-type: disc;
	color: var(--primary-color);
}

#article-details-infos ol {
	margin-left: 18px;
	list-style-type: decimal;
	font-size: 15px;
	color: var(--primary-color);
}

#article-details-infos li {
	padding-left: 0;
	margin: 4px 0;
	font-size: 15px;
	color: #545454;
	line-height: 21px;
}

#article-details-infos 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: 0 5%;
	font-size: 0;
}

#catalog-submenu li {
	display: inline-block;
	margin-right: 17px;
	margin-bottom: 15px;
}

#catalog-submenu li a {
	box-sizing: border-box;
	display: block;
	position: relative;
	min-height: 44px;
	width: 100%;
	padding: 0 25px;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 16px;
	line-height: 44px;
	text-decoration: none;
	border-radius: 1px;
}

#catalog-submenu li a:hover {
	background-color: var(--primary-color);
	color: var(--primary-highcontrast-color);
}

#catalog-submenu li.Highlighted a,
#catalog-submenu li.Highlighted a:hover {
	background-color: transparent;
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
}

/* Breadcrumbs */
#breadcrumbs {
	clear: both;
	height: 12px;
	width: 100%;
	padding: 0 0 10px;
	font-size: 0;
}

#breadcrumbs span {
	display: inline-block;
	margin-right: 6px;
	font-size: 11px;
	font-weight: bold;
	line-height: 12px;
	color: #868686;
	text-transform: uppercase;
	vertical-align: top;
}

#breadcrumbs a {
	display: inline-block;
	margin-right: 6px;
	color: #868686;
	font-size: 11px;
	font-weight: bold;
	line-height: 12px;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: top;
}

#breadcrumbs a:hover {
	text-decoration: underline;
}

#breadcrumbs .CMSBreadCrumbsCurrentItem {
	color: var(--primary-color);
}

#breadcrumbs .arrow {
	display: inline-block;
	height: 12px;
	width: 6px;
	font-size: 0;
	vertical-align: top;
}

#breadcrumbs .arrow:before {
	content: "\f054";
	display: block;
	height: 12px;
	width: 6px;
	color: #868686;
	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: 12px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

/* Contact */
#contact {
	padding: 0 10%;
	background-color: #fff;
	text-align: center;
}

#contact>.title {
	display: block;
	padding: 0 5%;
	margin-top: 40px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 600;
	text-align: left;
}

#contact-form-subtitle {
	display: block;
	padding: 50px 5% 15px;
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}

#contact-form-mandatory-message {
	display: block;
	width: 100%;
	max-width: 380px;
	margin: 15px auto;
	color: #555;
	font-size: 15px;
	text-align: left;
}

#contact-form {
	box-sizing: border-box;
	width: 100%;
	max-width: 380px;
	margin: 10px auto 30px;
	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;
	clear: both;
	width: 100%;
	color: #333;
	font-size: 15px;
	line-height: 22px;
	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 {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 14px 9px;
	margin-bottom: 15px;
	background-color: #fff;
	border: 1px solid #cbcbcb;
	border-radius: 3px;
	color: #444;
	font-size: 13px;
	text-align: left;
	cursor: text;
}

#contact-form textarea {
	height: 100px;
	margin-bottom: 30px;
}

#contact-form .field.send-copy {
	width: 100%;
}

#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: center;
}

#contact-form .buttons-container:after {
	content: "";
	display: block;
	clear: both;
}

#contact-form .buttons-container .button {
	display: inline-block;
	height: 50px;
	min-width: 168px;
	width: auto;
	padding: 0 20px;
	background-color: #888;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
	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%;
	}
}

#contact-bottom {
	margin-top: 40px;
	text-align: center;
}

#contact-bottom #society-info {
	box-sizing: border-box;
	display: inline-block;
	width: 320px;
	padding: 0 30px;
	border-right: 1px solid var(--primary-color);
	vertical-align: top;
}

#contact-bottom #society-info #useful-informations {
	padding: 0;
	margin: 0;
	background: none;
	font-size: 15px;
	color: #222;
	line-height: 25px;
	text-align: left;
}

#contact-bottom #society-info #useful-informations h3 {
	font-weight: 600;
}

#contact-bottom #society-info #useful-informations .title {
	font-size: 20px;
	color: var(--primary-color);
	text-align: left;
	text-transform: none;
}

#contact-bottom #society-info #useful-informations .phone,
#contact-bottom #society-info #useful-informations .fax,
#contact-bottom #society-info #useful-informations .gsm {
	display: block;
	margin: 5px 0;
	font-size: 14px;
	color: #333;
}

#contact-bottom #society-info #useful-informations .phone:empty,
#contact-bottom #society-info #useful-informations .fax:empty,
#contact-bottom #society-info #useful-informations .gsm:empty {
	display: none;
}

#contact-bottom #society-info #useful-informations .phone:before,
#contact-bottom #society-info #useful-informations .fax:before,
#contact-bottom #society-info #useful-informations .gsm:before {
	display: inline-block;
	height: 19px;
	width: 15px;
	margin-right: 3px;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
	line-height: 19px;
	text-align: center;
}

#contact-bottom #society-info #useful-informations .phone:before {
	content: "\f095";
	transform: rotate(90deg);
}

#contact-bottom #society-info #useful-informations .fax:before {
	content: "\f1ac";
}

#contact-bottom #society-info #useful-informations .gsm:before {
	content: "\f3cd";
}

#contact-bottom #decision-makers {
	box-sizing: border-box;
	display: inline-block;
	width: 320px;
	padding: 0 30px;
	margin: 0;
	vertical-align: top;
}

#contact-bottom #decision-makers .title {
	margin-bottom: 20px;
	font-size: 20px;
	text-align: left;
}

#contact-bottom #decision-makers .decision-maker {
	padding: 0;
	margin-bottom: 7px;
	background: none;
	text-align: left;
}

#contact-bottom #decision-makers .decision-maker>.icon:before {
	color: #333;
}

#contact-bottom #decision-makers .decision-maker .text-container {
	min-height: 0;
}

#contact-bottom #decision-makers .decision-maker .text {
	font-size: 15px;
	line-height: 18px;
}

#contact-bottom #decision-makers .decision-maker strong,
#contact-bottom #decision-makers .decision-maker .job {
	display: inline-block;
}

#contact-bottom #decision-makers .decision-maker .means-of-contact:empty {}

#contact-bottom #schedules {
	box-sizing: border-box;
	display: inline-block;
	width: 320px;
	padding: 0 30px;
	margin: 0;
	border-left: 1px solid var(--primary-color);
	text-align: left;
	vertical-align: top;
}

#contact-bottom #schedules .title {
	margin-bottom: 18px;
	font-size: 20px;
	text-align: left;
}

@media all and (min-width: 1px) and (max-width: 1205px) {
	#contact-bottom #society-info {
		display: block;
		width: 320px;
		padding-bottom: 20px;
		margin: 0 auto 25px;
		border-right: none;
		border-bottom: 1px solid var(--primary-color);
	}

	#contact-bottom #decision-makers {
		display: block;
		width: 320px;
		padding-bottom: 10px;
		margin: 0 auto 25px;
		border-bottom: 1px solid var(--primary-color);
	}

	#contact-bottom #schedules {
		display: block;
		width: 320px;
		margin: 0 auto;
		border-left: none;
	}
}

@media all and (min-width: 1px) and (max-width: 390px) {

	#contact-bottom #society-info,
	#contact-bottom #decision-makers,
	#contact-bottom #schedules {
		width: 260px;
	}
}

/* Map */
.map {
	height: 410px;
	width: 100%;
	border-radius: 4px;
	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;
}

#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");
}

/* 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 {
	display: block;
	float: none;
	margin: 40px 0 15px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 500;
}

#catalog .title {
	margin-bottom: 7px;
}

#pages .description {
	margin: 20px 0 15px;
	color: #454545;
	font-size: 15px;
	line-height: 19px;
}

/* Réservation de table */
#bottom-wrapper .booking-button:before {
	content: "";
	display: block;
	height: 26px;
	width: 26px;
	padding: 0;
	margin: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1024' height='1024'%3E%3Cpath fill='{% Settings.color_secondary.Replace(" #", " %23") #%}' d='M1008 992c-12.8 12.8-25.6 16-41.6 16s-35.2-6.4-48-22.4L601.6 668.8c-9.6 6.4-22.4 9.6-38.4 9.6-51.2 0-121.6-35.2-150.4-67.2L134.4 332.8C32 233.6 48 57.6 128 57.6c19.2 0 44.8 12.8 73.6 38.4 92.8 92.8 800 803.2 800 803.2 25.6 28.8 32 64 6.4 92.8zM640 460.8c51.2 19.2 118.4 9.6 163.2-35.2l195.2-195.2c12.8-12.8 12.8-32 0-44.8s-32-12.8-44.8 0h-3.2l-192 192c-12.8 12.8-28.8 12.8-38.4 3.2-12.8-12.8-9.6-28.8 3.2-38.4l192-192c12.8-12.8 12.8-32 0-44.8s-32-12.8-44.8 0l-192 192c-12.8 12.8-28.8 12.8-38.4 3.2-12.8-12.8-9.6-28.8 3.2-38.4l192-192c12.8-12.8 12.8-32 0-44.8s-32-12.8-44.8 0L595.2 220.8c-41.6 41.6-57.6 112-38.4 156.8 12.8 25.6 48 70.4 83.2 83.2zm-268.8 192L320 601.6 9.6 912c-16 16-9.6 51.2 16 80 25.6 25.6 51.2 22.4 76.8-6.4l304-304c-12.8-9.6-25.6-19.2-35.2-28.8z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 65% 65%;
	background-position: center center;
}

@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, 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: 20px 22px;
	margin: auto;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
	z-index: 9999;
}

.popup .content .send-ok {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
}

.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, 0.35);
	font-size: 15px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
}

.popup .content .close-button:hover {
	color: rgba(0, 0, 0, 0.5);
}

.popup .content .close-button:active {
	color: rgba(0, 0, 0, 0.75);
}

.popup .content .title {
	margin-bottom: 20px;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: bold;
}

.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: 3px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.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 {
	display: block;
	padding: 0 5% 30px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 500;
	text-align: left;
}

#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-wrapper {
	padding: 170px 10% 0;
	background-color: #fff;
}

#pictures-gallery-title {
	display: block;
	padding: 0 5% 30px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 500;
	background-color: #fff;
}

#pictures-gallery-container {
	padding: 0 5%;
}

#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: #333;
	font-size: 16px;
	line-height: 35px;
	vertical-align: top;
	transition: color 100ms ease;
	cursor: pointer;
}

#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: #b1b1b1;
	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: 12px;
	width: 12px;
	transform: translate(-50%, -50%);
	background-color: var(--secondary-color);
	border: 2px solid #fff;
	border-radius: 8px;
	box-shadow: 0 1px 7px rgba(0, 0, 0, 0.5);
	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: #b1b1b1;
	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 .title {
	display: block;
	float: none;
	margin: 40px 0 15px;
	color: var(--primary-color);
	font-size: 36px;
	font-weight: 500;
}

#free-business-page h1 {
	margin: 20px 0 15px;
	color: var(--primary-color);
	font-size: 32px;
}

#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 {
	margin-bottom: 25px;
	color: #333;
	font-size: 15px;
	line-height: 20px;
}

#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);
	text-decoration: underline;
}

#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: 15px;
	color: var(--primary-color);
}

#free-business-page li {
	padding-left: 0;
	margin: 4px 0;
	color: #333;
	font-size: 15px;
	line-height: 20px;
}

#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: 225px 60px 60px;
	background: #fff;
	color: #333;
	font-size: 15px;
	line-height: 20px;
}

#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: 1149px) {
	#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: 75%;
		max-width: 320px;
		box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
		z-index: 9999;
	}

	#main-nav.show {
		display: block;
		margin-right: 0;
		animation: show-responsive-menu 275ms ease;
		-webkit-animation: show-responsive-menu 275ms ease;
		background-color: var(--primary-color);
	}

	#main-nav.show ul li:hover:before {
		display: none;
	}

	#main-nav.show ul li:hover ul:before {
		display: none;
	}

	#main-nav.show>ul>li>ul>li {
		min-height: 0;
	}

	#main-nav.show ul li ul li a,
	#main-nav.show ul li ul li a:hover {
		background: #fff;
		color: #000;
	}

	/* 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%;
		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 {
		clear: both;
		float: none;
		height: auto;
		min-height: 42px;
		width: 100%;
		min-width: 200px;
		max-width: none;
		padding: 12px;
		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;
	}

	#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, 0.1);
		border-bottom: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	#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, 0.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);
	}

	#languages {
		position: absolute;
		top: 10px;
		right: 10px;
		margin-top: 0;
	}
}

@media all and (min-width: 1px) and (max-width: 979px) {
	body {
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	#main-wrapper {
		box-sizing: border-box;
		height: auto;
		width: 100%;
		padding: 0;
	}

	#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;
	}

	#main-header {
		min-height: 115px;
		height: auto;
		width: 100%;
		padding: 10px 0 15px 0;
		text-align: center;
		background: #fff;
	}

	#home-slider .slider .slide>img {
		max-width: 100%;
	}

	#main-header #site-logo {
		width: 100%;
		padding-left: 0;
		margin: 0;
		text-align: center;
	}

	#main-header #site-logo a {
		display: inline-block;
	}

	#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;
	}

	#home-slider {
		height: 350px;
		padding-top: 170px;
	}

	#home-slider .slider,
	#home-slider .slider .slick-list,
	#home-slider .slider .slide {
		height: 350px;
	}

	#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;
	}

	/* Footer */
	#main-footer .links {
		display: -block;
		width: 100%;
		margin-bottom: 20px;
	}
}

@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 {
		padding-top: 20px;
	}

	#home-slider #site-title-container {
		top: 115px;
		transform: translate(-50%, 0);
		text-align: center;
	}

	#home-slider #site-title-container a {
		color: #222;
		font-size: 28px;
		line-height: 34px;
		text-shadow: none;
	}

	#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: -25px;
		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;
	}

	#home-slider .slider .slide.slick-current .text .title {
		font-size: 25px;
		line-height: 30px;
	}

	#main-wrapper>.content>.small-column #company-informations h2 {
		margin: 10px 0 15px;
	}

	#main-footer .social {
		float: none;
	}

	#main-footer .editus-logo {
		clear: both;
	}

	#contact-band .contact-button,
	#contact-band .booking-button {
		height: 50px;
		font-size: 20px;
		line-height: 50px;
	}

	#bottom-left-container {
		display: block;
		width: 100%;
		padding-right: 0;
		margin: 40px 0;
	}

	#bottom-right-container {
		width: 100%;
		padding: 30px 0 0 0;
		border-left: none;
		border-top: 1px solid #800000;
		margin: 20px 0 40px;
	}

	#catalog-submenu li {
		display: block;
		margin: 0 0 10px;
	}

	#article-details-pictures {
		display: block;
		float: none;
		width: 100%;
	}

	#article-details-infos {
		float: none;
		width: 100%;
		padding-left: 0;
	}

	#contact>.title,
	#contact-form-subtitle {
		padding-left: 0;
		padding-right: 0;
	}
}

@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: 0 0 0 15px;
	}

	#basket-mini,
	#booking-mini {
		position: absolute;
		right: 0;
		border-radius: 4px 0 0 4px;
	}

	#basket-mini {
		top: 10px;
	}

	#booking-mini {
		top: 50px;
		margin-right: 0;
	}

	#basket-mini+#booking-mini {
		right: 0;
	}
}

@media all and (max-width: 450px) {
	#home-slider .slider .slide.slick-current .text .title {
		font-size: 20px;
		line-height: 25px;
	}

	.popup .content {
		border-radius: 0;
	}

	#main-footer .editus-logo {
		display: block;
		margin: 0 auto;
	}

	#main-footer .last-updated {
		display: block;
		margin: 0;
		text-align: center;
	}
}

/* Simple Lightbox overrides */
.slbOverlay {
	z-index: 200000 !important;
}

.slbWrapOuter {
	z-index: 201000 !important;
}

/* 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: 0.85;
}

/* Product image zoom */
#product-image-zoom {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 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;
}