﻿/* GLOBAL */
body {
  font-family: var(--font);
  overflow-x: hidden;
}

body > form {
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

.mapIcon i {
  color: var(--primary-color);
}

.leaflet-bottom.leaflet-right {
  display: none; 
}

h1, .h1 {
  font-weight: 900;
  font-size: 2.2rem;
}

.btn-primary {
  padding: 20px 50px;
  background-color: var(--primary-color);
  color: var(--primary-highcontrast-color);
  font-size: 18px;
  border-radius: 0;
  border: none;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  background-color: var(--primary-color);
  color: var(--primary-highcontrast-color);
}

.btn-secondary {
  padding: 10px 50px;
  background-color: var(--primary-highcontrast-color);
  color: var(--primary-color);
  border-radius: 0;
  border: none;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
  background-color: var(--primary-highcontrast-color);
  color: var(--primary-color);
}

.container-fluid {
  max-width: 1600px; 
}

.breadcrumb {
  display: none;
}

@media (min-width: 1200px) {
  .breadcrumb {
    margin-top: 30px;
    margin-bottom: 0;
    background-color: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0; 
  }
  
  .breadcrumb .CMSBreadCrumbsLink:not(.home),
  .breadcrumb .CMSBreadCrumbsLink.home span,
  .breadcrumb .arrow {
    display: inline;
  }
  
  .breadcrumb a, .breadcrumb a:hover {
    text-decoration: underline;
    color: var(--secondary-dark-color);
  }
  
  .breadcrumb i {
    margin-right: 15px;
    color: var(--primary-color);
  }
  
  .breadcrumb .arrow {
    margin-left: 5px;
    margin-right: 5px; 
  }
}

.carousel .carousel-indicators {
  margin-bottom: 20px; 
}

.carousel .carousel-indicators li {
  width: 20px;
  height: 20px;
  opacity: 1;
  border: 2px solid var(--primary-highcontrast-color);
  background-color: transparent;
  transition: all .3s;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 50em;
}

.carousel .carousel-indicators li.active {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
}

.carousel .carousel-caption {
  background-color: var(--tertiary-color);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
  padding: 40px;
  text-align: left;
  color: var(--tertiary-highcontrast-color);
}

.carousel .carousel-caption .title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  position: relative;
}

.carousel .carousel-caption .description {
  position: relative;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  opacity: 1;
  width: 25%;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  width: 25px;
  height: 25px;
  border: 1px solid var(--primary-highcontrast-color);
  background-color: var(--primary-color);
  border-radius: 50em;
  background-image: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:before {
  content: '\f104';
}

.carousel .carousel-control-next .carousel-control-next-icon:before {
  content: '\f105';
}

.carousel .carousel-control-prev .carousel-control-prev-icon:before,
.carousel .carousel-control-next .carousel-control-next-icon:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 25px;
  color: var(--primary-highcontrast-color);
}

@media (min-width: 768px) {
  .carousel .carousel-caption .title {
    font-size: 32px;
  }
  
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 15%;
  }
  
  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  
  .carousel .carousel-control-prev .carousel-control-prev-icon:before,
  .carousel .carousel-control-next .carousel-control-next-icon:before {
    font-size: 35px;
  }
}

/* HEADER */
header {
  z-index: 2;
}

header .container-fluid {
  padding: 0 0 20px 0;
}

header .navbar {
  background-color: #fff;
  padding: 25px 30px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
}

header .navbar:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 25px;
  right: 25px;
  height: 20px;
  background-color: var(--primary-color);
}

header nav .navbar-brand {
  margin: auto;
  padding: 0;
  display: block;
  padding: 0;
}

header .navbar-brand img {
  max-width: 150px;
  max-height: 80px;
}

header nav .navbar-toggler {
  width: 45px;
  height: 45px;
  border: none;
  position: absolute;
  padding: 0;
  right: 30px;
}

header nav .navbar-toggler i {
  position: relative;
  font-size: 30px;
  color: var(--primary-color);
}

header nav .navbar-collapse {
    position: fixed;
    right: -250px;
    top: 0;
    bottom: 0;
    background-color: white;
    width: 250px;
    padding: 30px;
    height: 100vh;
    transition: right .3s, box-shadow .3s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 25px 0 0 25px;
    overflow-y: auto;
    z-index: 999999;
}

header nav .navbar-collapse #languages ul {
    padding: 0;
}

header nav .navbar-collapse.show {
    right: 0;
    box-shadow: 0 0 90px rgba(0, 0, 0, .2);
}

header nav .navbar-collapse .navbar-toggler {
    margin-right: auto;
    margin-left: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

header nav .navbar-collapse .navbar-toggler:before {
  width: 0;
  height: 0;
}

/*header nav .navbar-collapse .navbar-brand {
  margin-top: 60px;
  margin-bottom: 50px;
}*/

header nav ul#menuElem {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

header nav ul#menuElem li {
  position: relative;
  margin-bottom: 40px;
  line-height: 19px;
}

header nav ul#menuElem li.Highlighted,
header nav ul#menuElem li:hover {
  font-weight: bold;
}

header nav ul#menuElem li a,
header nav ul#menuElem li span {
  color: #212529;
  display: block;
  padding: 5px;
  position: relative;
  text-decoration: none;
}

header nav ul#menuElem li span {
  padding-right: 20px; 
}

header nav ul#menuElem li span:after {
  content: '\f107';
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

header nav ul#menuElem li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  padding-top: 1rem;
  left: 0;
  display: none;
  z-index: 999;
  padding: 0;
  background-color: white;
  min-width: 300px;
  text-align: left;
}

header nav ul#menuElem li:hover > ul,
header nav ul#menuElem li > ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

header nav ul#menuElem li ul li {
  list-style: none;
  margin: 10px !important;
}

header nav ul#menuElem li ul li a:before {
  width: 0 !important;
}

header nav .btn-secondary,
header nav .btn-secondary:hover {
  font-weight: bold;
  background-color: var(--primary-color);
  color: var(--primary-highcontrast-color);
}

header nav .btn-secondary i {
  margin-right: 10px;
}

header nav .dropdown.dropup {
  margin-top: auto;
  margin-left: auto;
}

header nav .dropdown.dropup .dropdown-toggle:after {
  content: '\f106';
  border: none;
  vertical-align: inherit;
}

header nav .dropdown-toggle:not(.btn-secondary) {
  background-color: transparent;
  border: none; 
  color: red;
  text-transform: uppercase;
}

header nav .dropdown-toggle:after {
  border: none;
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-left: 13px;
  vertical-align: inherit;
}

@media (min-width: 1200px) {
  header .container-fluid {
    padding: 0 15px 20px 15px;
  }
  
  header nav .navbar-brand {
    margin: 0 50px 0 0;
    display: inline;
    margin-bottom: 0;
  }
  
  .navbar-expand-lg ul#menuElem {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  
  header nav .navbar-collapse {
    position: relative;
    right: 0;
    padding: 0;
    display: block;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    height: 100%;
    overflow-y: inherit;
  }
  
  header nav .navbar-collapse .navbar-toggler {
    display: none; 
  }
  
  header nav ul#menuElem {
    margin-right: auto;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
  }
  
  header nav ul#menuElem li {
    margin-bottom: 0;
  }
  
  header nav ul#menuElem > li:not(:first-child) {
    margin-left: 15px;
  }
  
  header nav ul#menuElem > li:not(:last-child) {
    margin-right: 15px;
  }
  
  header nav ul#menuElem > li a {
    padding: 5px;
  }
  
  header nav .btn-secondary {
    margin-left: 30px;
    margin-right: 30px;
  }
  
  header nav .dropdown.dropup {
    margin-top: 0;
    margin-left: 0;
  }
  
  header nav .dropdown.dropup .dropdown-menu {
    top: 100%;
    bottom: inherit;
    margin-top: 0.125rem;
    margin-bottom: 0;
  }
  
  header nav .dropdown.dropup .dropdown-toggle:after {
    content: '\f078';
  }
}

/* MAIN */
main.container-fluid {
  padding: 0;
  min-height: calc(100vh - 94px);
}

main > div.row {
  width: 100%;
  /*-ms-flex-pack: center;
  justify-content: center;*/
}

/* FOOTER */
footer {
  margin-top: auto;
  background-color: var(--secondary-color);
  color: var(--secondary-highcontrast-color);
}

footer a, footer a:hover {
  color: var(--secondary-highcontrast-color);
}

footer .container-fluid {
  padding: 30px 15px;
}

footer .row > div:not(:last-child) {
  margin-bottom: 40px; 
}

footer .title {
  margin-bottom: 25px;
  text-decoration: underline;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
}

footer .list-group {
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
}

footer .list-group-item {
  background-color: transparent;
  border: none;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

footer .list-group-item.company {
  font-weight: bold;
}

footer .list-group-item i {
  font-size: 14px;
  width: 12px;
  text-align: center;
  margin-right: 12px;
  color: var(--tertiary-color);
}

footer .logoEditus {
  height: 40px;
  margin-right: 25px;
  filter: brightness(0) {% Settings.color_secondary_highcontrast == "#000000" ? "" : "invert(1)" #%};
}

footer .legalNotice {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
  font-size: 0.8rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
}

footer .legalNotice a {
  text-decoration: underline;
  color: var(--secondary-highcontrast-color);
}

@media (min-width: 992px) {
  footer .row > div:not(:last-child) {
    margin-bottom: 0; 
  }
  
  footer .title {
    text-align: left;
  }
  
  footer .list-group {
    -ms-flex-align: flex-start;
    align-items: flex-start; 
  }
}

/* HOME */
#home-content-left {
  margin-bottom: 80px;
  text-align: center;
  padding: 0;
}

#home-content-left > div {
  padding: 100px 25px 60px 25px;
  background-color: white;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
}

#home-content-left #presentation-short {
  text-align: left; 
}

#home-content-left #presentation-short p {
  max-width: 700px;
  margin: 20px auto 40px 0;
  font-size: 14px;
}

#home-content-left > p {
  text-align: center; 
}

#home-content-left > p .btn-primary {
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
}

#home-slider {
  padding: 0; 
}

#home-slider .carousel {
  padding-right: 0;
}

#home-slider .carousel,
#home-slider .carousel .carousel-inner,
#home-slider .carousel .carousel-inner .carousel-item {
  height: 100%;
  min-height: 350px;
  max-height: 350px;
}

#home-slider .carousel .carousel-inner {
  overflow: visible; 
}

#home-slider .carousel .carousel-item img {
  height: 100%;
}

#home-slider .carousel .carousel-item {
  transition: opacity .5s;
  opacity: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#home-slider .carousel .carousel-indicators {
  display: none;
}

#home-slider .carousel .carousel-caption {
  text-align: center;
  bottom: 60px;
  left: inherit;
  right: 50%;
  width: 85%;
  overflow-y: auto;
  padding: 25px 40px;
  transform: translate(50%, 100%);
  -webkit-transform: translate(50%, 100%);
}

#home-slider .carousel .carousel-caption .title {
  margin-bottom: 0; 
}

#home-slider .active.carousel-item-left,
#home-slider .carousel-item-prev:not(.carousel-item-right),
#home-slider .active.carousel-item-right,
#home-slider .carousel-item-next:not(.carousel-item-left) {
  transform: none;
  opacity: 0;
}

@media (min-width: 768px){
  #home-content-left > div {
    padding: 100px 50px 60px 50px;
  }
  
  #home-content-left #presentation-short p {
    font-size: 1rem;
  }
  
  #home-slider .carousel, #home-slider .carousel .carousel-inner,
  #home-slider .carousel .carousel-inner .carousel-item {
    min-height: 500px;
    height: 100%;
    max-height: 500px;
  }
}

@media (min-width: 992px){
  #home-content-left h1 {
    margin-top: 0;
  }
  
  #home-content-left #presentation-short p {
    margin: 30px 0 30px 0;
  }
  
  #home-slider .carousel { 
    margin-bottom: 0;
  }
  
  #home-slider .carousel,
  #home-slider .carousel .carousel-inner,
  #home-slider .carousel .carousel-inner .carousel-item {
    min-height: 650px;
    height: 100%;
    max-height: 650px;
  }
  
  #home-slider .carousel .carousel-caption {
    padding: 40px;
  }
  
  #home-slider .carousel .carousel-caption .title {
    margin-bottom: 15px; 
  }
}

@media (min-width: 1200px) {
  #home-slider {
    margin-top: 90px;
    margin-bottom: 150px;
    padding-right: 50px;
    padding-left: 100px;
  }
  
  #home-slider .carousel .carousel-caption {
    width: 100%;
    max-width: 550px;
    bottom: -100px;
    right: 30px;
    left: inherit;
    transform: none;
    -webkit-transform: none;
  }
  
  #home-content-left {
    margin: 0; 
  }
  
  #home-content-left > div {
    padding: 30px 50px 30px 70px;
    max-width: 500px;
    width: 100%;
    margin-top: -400px;
    position: relative;
  }
  
  #home-content-left .btn-primary {
    right: 50px;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
  } 
}

@media (min-width: 1400px) {
  #home-content-left > div {
    padding: 30px 70px 30px 90px;
    max-width: 720px;
  }
  
  #home-content-left .btn-primary {
    right: 70px;
  } 
}

/* PRESENTATION */
#presentation-content-right #carousel-presentation:before {
    content: '';
    background-color: var(--primary-color);
    position: absolute;
    height: 70px;
    width: 90px;
    bottom: -10px;
    right: -10px;
    opacity: .5;
}

#presentation-content-right #carousel-presentation {
  margin-top: 30px;
}

#presentation-content-right #carousel-presentation,
#presentation-content-right #carousel-presentation .carousel-inner,
#presentation-content-right #carousel-presentation .carousel-inner .carousel-item {
  height: 100%;
  min-height: 250px;
  max-height: 250px;
}

#presentation-content-right #carousel-presentation .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#presentation-content-left {
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 45px 30px;
  background-color: white;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
}

#presentation-content-left h1 {
  margin-top: 30px;
  margin-bottom: 40px;
}

#presentation-content-left p:last-of-type {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 18px;
  margin-top: auto;
  padding-top: 30px;
}

#presentation-content-left p:last-of-type a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

#presentation-content-left p:last-of-type a,
#presentation-content-left p:last-of-type a:hover {
  color: var(--tertiary-color);
  text-decoration: none;
}

#presentation-content-left p:last-of-type a:before {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

#presentation-content-left p:last-of-type a:hover span {
  text-decoration: underline; 
}

#presentation-content-left p:last-of-type a i {
  margin-right: 10px;
}

@media (min-width: 576px) {
  #presentation-content-right #carousel-presentation:before {
    height: 240px;
    width: 280px;
    right: -25px;
    bottom: -25px;
  }
  
  #presentation-content-right #carousel-presentation,
  #presentation-content-right #carousel-presentation .carousel-inner,
  #presentation-content-right #carousel-presentation .carousel-inner .carousel-item {
    height: 100%;
    min-height: 500px;
    max-height: 500px;
  }
}

@media (min-width: 992px) {
  #presentation-content-right {
    padding-bottom: 30px;
  }
  
  #presentation-content-right #carousel-presentation .carousel-control-prev {
    left: 50px;
  }
  
  #presentation-content-left {
    padding-bottom: 50px;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  #presentation-content-left {
    padding-left: 15px;
    margin-bottom: 0;
  }
  
  #presentation-content-left h1 {
    margin-top: 0;
  }
  
  #presentation-content-left #about-content {
    padding: 60px 50px 30px 120px;
    background-color: white;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
    margin-top: 120px;
    margin-bottom: 50px;
    width: calc(100% + 70px);
    z-index: 2;
  }
  
  #presentation-content-left {
    margin-top: 0;
    padding: 0 15px;
    background-color: none;
    box-shadow: none;
  }
  
  #presentation-content-right #carousel-presentation {
    margin-top: 115px;
  }
  
  #presentation-content-right #carousel-presentation, 
  #presentation-content-right #carousel-presentation .carousel-inner,
  #presentation-content-right #carousel-presentation .carousel-inner .carousel-item {
    height: 100%;
    min-height: 700px;
    max-height: 700px;
  }
}

/* PRODUCTS AND SERVICES */
#products-content-left {
  background-color: white;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
  padding: 45px 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}

#products-content-left h1 {
  margin-bottom: 40px;
  margin-top: 30px;
}

#products-content-left h2 {
  margin-top: 25px;
  font-size: 18px;
}

#products-content-left .firstSection h2 {
  margin-top: 0;
}

#products-content-left ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

#products-content-left ul li {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
}

#products-content-right {
  margin-top: 30px;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.16);
  margin-left: 15px;
  width: calc(100% - 30px);
  flex-basis: calc(100% - 30px);
}

#products-content-right img {
  display: none;
}

@media (min-width: 768px) {
  #products-content-left {
    padding: 45px 50px;
  }
  
  #products-content-left ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  
  #products-content-right {
    min-height: 500px;
  }
  
  #products-content-right ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  #products-content-left h2 {
    margin-top: 45px;
  }

    #products-content-right:before {
        content: '';
        width: 450px;
        height: 140px;
        position: absolute;
        top: -25px;
        right: -25px;
        background: var(--tertiary-color);
        box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.32);
        opacity: .5;
        z-index: -1;
    }
}

@media (min-width: 1200px) {
  #products-content-left {
    background-color: none;
    box-shadow: none;
    padding: 0 15px;  
    margin-bottom: 0;
  }
  
  #products-content-left h1 {
    margin-top: 0;
  }
  
  #products-content-left #products-content {
    margin-top: 90px;
    width: calc(100% + 40px);
    background-color: white;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
    padding: 40px 50px;
  }
  
  #products-content-right {
    margin-left: 0;
    width: 100%;
    flex-basis: 100%;
    margin-top: 80px;
  }
}

/* RDV */
#smart-container {
  width: 100%;
  margin-top: 60px;
}

/* FREE PAGE */
#free-page-content {
  padding-bottom: 50px;
}

#free-page-content h1 {
  margin-top: 120px;
}

#free-page-content img {
  max-width: 100%;
  height: auto !important; 
}

@media (min-width: 992px) {
  #free-page-content {
    padding-bottom: 30px;
  }
}

#free-business-page * {
  max-width: 100% !important;
}

/* NEWS */
#news-content {
  max-width: 1670px;
  padding-bottom: 30px;
}

#news-content h1 {
  margin-top: 110px;
  margin-bottom: 50px;
}

#news-content #articles {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
  background-color: white;
  padding: 40px 0 80px 0;
}

#news-content article:nth-child(n + 7) {
  display: none; 
}

#news-content article > div {
  margin-bottom: 25px;
  padding-bottom: 30px;
}

#news-content article .news-date {
  font-size: 18px;
  color: var(--tertiary-color);
}

#news-content article h2 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 24px;
}

#news-content button[aria-expanded] {
  margin-top: 50px;
  border: none;
  text-decoration: underline;
  background-color: transparent;
  margin-bottom: 50px;
}

#news-content button[aria-expanded="false"] .less {
  display: none;
}

#news-content button[aria-expanded="true"] .more {
  display: none;
}

@media (min-width: 768px) {
  #news-content article {
    padding: 0px 50px; 
  }
}

@media (min-width: 1200px) {
  #news-content h1 {
    margin-top: 120px;
  }
  
  #news-content article {
    padding: 0px 100px; 
  }
}

/* MENU OF THE WEEK */
#menu-content {
  padding-bottom: 50px;
}

#menu-content #week-menu h1 {
  margin-top: 50px;
}

#menu-content #week-menu .date {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

#menu-content #week-menu #menu {
  width: 100%;
  margin-top: 40px;
  padding: 30px 15px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
}

#menu-content #week-menu #menu > div {
  margin-top: 15px; 
  text-align: center;
}

#menu-content #week-menu div h2 {
  color: var(--tertiary-color);
  font-weight: bold;
  font-size: 18px;
}

@media (min-width: 992px) {
  #menu-content {
    padding-bottom: 30px;
  }
  
  #menu-content #week-menu .date {
    font-size: 24px;
  }
  
  #menu-content #week-menu {
    display: -ms-flexbox;
    display: flex; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  #menu-content #week-menu #menu {
    padding: 30px 50px;
  }
  
  #menu-content #week-menu .date {
    width: 100%;
  }
}

/* CONTACT */
#content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

#contact-content-left {
  padding: 0; 
}

#contact-content-left h1 {
  margin-bottom: 40px;
  margin-top: 30px;
}

#contact-content-left h2 {
  font-size: 16px;
  margin-bottom: 50px;
}

#contact-content-left #contact-form {
  margin-bottom: 35px; 
}

#contact-content-left #contact-form .error,
#contact-content-left #contact-form .success {
    display: inline-block;
    width: auto;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #b40b1b;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
}

#contact-content-left #contact-form .error:before,
#contact-content-left #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-content-left #contact-form .success {
    background-color: #98b839;
}

#contact-content-left #contact-form .success:before {
    content: '\f058';
}

#contact-content-left #contact-form .success {
    text-align: center;
}

#contact-content-left #contact-form .success + .buttons-container {
  text-align: center;
  margin-top: 30px;
}

#contact-content-left #contact-form .success + .buttons-container input {
  background-color: var(--secondary-color);
  color: var(--secondary-highcontrast-color);
}

#contact-content-left #contact-form .form-group,
#contact-content-left #contact-form .custom-control,
#contact-content-left #contact-form .captcha {
  position: relative;
  margin-bottom: 30px;
}

#contact-content-left #contact-form .form-group input {
  border: 1px solid #ced4da;
  border-radius: 0;
  padding: 10px 25px;
  height: calc(1.5em + 20px + 2px);
}

#contact-content-left #contact-form .form-group input:focus {
  box-shadow: 0 3px 0 -1px {% Settings.color_primary.ToArgb(0.25) #%};
  border-color: var(--primary-color);
}

#contact-content-left #contact-form .form-group textarea {
  min-height: 240px;
  border-radius: 0px;
  padding: 10px 25px;
}    

#contact-content-left #contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem {% Settings.color_primary.ToArgb(0.25) #%};
  border-color: var(--primary-color);
}

#contact-content-left #contact-form .form-group label {
  position: absolute;
  top: 10px;
  left: 25px;
  color: var(--tertiary-color);
  pointer-events: none;
}

#contact-content-left #contact-form .form-group input + label {
  transition: all .3s;
}

#contact-content-left #contact-form .form-group input + label.has-value {
  top: -0.5rem;
  font-size: 0.9rem;
}

#contact-content-left #contact-form .form-group textarea + label {
  left: 30px;
}

#contact-content-left #contact-form .form-group textarea + label.has-value {
  display: none;
}

#contact-content-left #contact-form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

#contact-content-left #contact-form .custom-control-input:focus ~ .custom-control-label::before {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem {% Settings.color_primary.ToArgb(0.25) #%};
}

#contact-content-left #contact-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  content: '\f00c';
  color: var(--primary-highcontrast-color);
  font-size: 0.7rem;
  text-align: center;
}

#contact-content-left #contact-form .buttons > div {
  padding: 0;
}

#contact-content-left #contact-form .buttons .btn {
  width: 100%;
}

#contact-content-bottom {
  margin-bottom: 30px; 
}

#contact-content-bottom {
  font-size: 18px;
  margin-bottom: 100px;
  background-color: var(--tertiary-color);
  color: var(--tertiary-highcontrast-color);
  padding-top: 50px;
}

#contact-content-bottom h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
}

#contact-content-bottom a {
  color: var(--tertiary-highcontrast-color);
  font-weight: bold;
  text-decoration: underline;
}

#contact-content-bottom a:hover  {
  color: var(--tertiary-highcontrast-color);
}

#contact-content-bottom #company-infos {
  padding-left: 0;
  padding-right: 0;
}

#contact-content-bottom #company-infos > div {
  margin-bottom: 40px;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
  padding-left: 0;
  padding-right: 0;
}

#contact-content-bottom #company-infos > div > div:first-child {
  text-align: center;
}

#contact-content-bottom #company-infos > div i {
  font-size: 20px;
}

#contact-content-bottom #company-infos .list-group-item {
  background-color: transparent;
  border: none;
  padding: 0;
}

#contact-content-bottom #company-infos .list-group-item.company {
  font-weight: bold;
}

#contact-content-bottom #company-infos ul {
  list-style: none;
  padding: 0; 
}

#contact-content-bottom #company-infos #schedules {
  padding: 0 5px;
}

#contact-content-bottom #company-infos #schedules {
  display: flex;
  gap: 10px;
}

#contact-content-bottom #company-infos #schedules .day {
  font-weight: bold;
}

#contact-content-bottom #company-infos #schedules .hours {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#contact-content-bottom #company-infos a[data-toggle="collapse"] {
  margin-top: 10px;
  text-decoration: underline;
  display: block;
  text-align: center;
}

#contact-content-bottom #company-infos a[data-toggle="collapse"][aria-expanded="false"] .show-less,
#contact-content-bottom #company-infos a[data-toggle="collapse"][aria-expanded="true"] .show-more {
  display: none;
}

#contact-content-bottom #social-networks {
  text-align: center; 
}

#contact-content-bottom #social-networks h2 {
  display: inline;
  margin-bottom: 0;
}

#contact-content-bottom #social-networks ul {
  margin-top: 30px; 
}

#contact-content-bottom #social-networks .list-inline-item {
  border: none;
  padding: 0;
}

#contact-content-bottom #social-networks a i {
  font-size: 20px;
  margin-right: 25px;
  margin-bottom: 20px;
  width: 20px;
  text-align: center;
}

#contact-content-right {
  padding: 0;
}

#contact-content-right h3 {
  margin-top: 110px;
  margin-bottom: 45px;
  display: none;
}

#contact-content-right .map {
  height: 300px;
  width: 120% !important;
  margin-bottom: -20px;
}

#contact-content-right .map .ol-overlaycontainer-stopevent,
#contact-content-right .map .leaflet-control-zoom,
#contact-content-top .map .ol-overlaycontainer-stopevent,
#contact-content-top .map .leaflet-control-zoom {
  display: none;
}

@media (min-width: 992px) {
  #contact-content-left {
    padding-right: 100px;
  }
  
  #contact-content-left #contact-form .buttons > div {
    padding: 0 15px;
  }
  
  #contact-content-bottom {
    padding-top: 80px;
    padding-bottom: 50px; 
  }
  
  #contact-content-bottom h2 {
    text-align: left;
  }
  
  #contact-content-bottom #social-networks {
    text-align: left; 
  }
  
  #contact-content-right {
    padding: 0 15px;
  }
  
  #contact-content-right h3 {
    display: block; 
  }
  
  #contact-content-right .map {
    height: 600px;
  }
}

@media (min-width: 1200px) {
  #content {
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
    background-color: white;
    margin-top: 60px;
    padding: 35px 0 0 70px;
    z-index: 1;
  }
  
  #contact-content-left {
    padding-right: 150px;
  }
  
  #contact-content-right .map {
    width: 120%;
    height: 710px;
    margin-bottom: -350px;
  }
  
  #contact-content-bottom {
    padding-top: 880px;
    margin-top: -800px;
    padding-bottom: 50px;
    z-index: 0;
    margin-left: 85px;
    -ms-flex: 0 0 calc(100% - 85px);
    flex: 0 0 calc(100% - 85px);
    max-width: calc(100% - 85px);
  }
  
  #contact-content-bottom #social-networks {
    margin-top: 250px;
    padding-left: 60px;
  }
  
  #contact-content-bottom #social-networks ul {
    display: inline;
    margin-left: 50px;
    margin-top: 0;
  }
}

#contact-form button[type="submit"] {
    float: right;
    width: 300px;
    max-width: 100%;
    padding: 20px 50px;
    margin-bottom: 40px;
    background-color: var(--primary-color);
    color: var(--primary-highcontrast-color);
    font-size: 18px;
    border-radius: 0;
    border: none;
}

/* ERROR */
#error-content #content-404 {
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

#error-content #illu {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
  background-color: white;
  text-align: center;
  max-width: 300px;
  width: 100%;
  padding: 30px 40px;
  margin-top: 50px;
}

#error-content svg {
  margin-bottom: 50px;
  max-width: 100px;
  width: 100%;
  height: auto;
}

#error-content svg .a,
#error-content svg .d {
  fill: var(--primary-color);
}

    #error-content svg .c {
        fill: var(--primary-color);
        opacity: .5;
    }

#error-content h1 {
  text-transform: uppercase;
  color: var(--primary-color);
}

#error-content #content {
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--tertiary-color);
  color: var(--tertiary-highcontrast-color);
  width: 100%;
  padding: 25px 0 0 0;
  margin-top: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

#error-content #content h2 {
  font-style: italic;
  padding: 0 50px;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

#error-content .btn {
  color: var(--tertiary-color);
  background-color: var(--tertiary-highcontrast-color);
  width: 100%;
}

@media (min-width: 992px) {
  #error-content #content-404 {
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    -ms-flex-pack: left;
    justify-content: left;
  }
  
  #error-content #illu {
    padding: 50px 100px;
    margin-left: 30px;
    z-index: 1;
    margin-top: 0;
    max-width: 500px;
  }
  
  #error-content svg {
    max-width: 160px; 
  }
  
  #error-content #content {
    margin-top: 0;
    padding: 50px 60px 60px 180px;
    margin-left: -150px;
    max-width: 800px;
    margin-bottom: -30px;
    z-index: 0;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    box-shadow: none;
    text-align: left;
  }
  
  #error-content #content h2 {
    padding: 0; 
    margin-bottom: 50px;
    font-size: 2rem;
  }
  
  #error-content .btn { 
    width: auto; 
  }
}

@media (min-width: 1200px) {
  #error-content #illu {
    padding: 70px 120px;
    max-width: 600px;
  }
  
  #error-content:before {
    content: '';
    position: absolute;
    right: 15px;
    top: 30px;
    height: 425px;
    width: 95px;
    background-color: var(--primary-color);
  }
  
  #error-content #content {
    padding: 60px 90px 100px 260px;
    margin-left: -200px;
    max-width: 775px;
  }
}

/* COOKIES */ 
#cookies-banner {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  max-width: 1670px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#cookies-banner .CookieConsent {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
  padding: 35px;
  background-color: white;
}

#cookies-banner .CookieConsent .ConsentText {
  font-weight: bold;
}

#cookies-banner .CookieConsent .ConsentButtons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

#cookies-banner .CookieConsent .ConsentButtons input {
  background-color: var(--primary-color);
  color: var(--primary-highcontrast-color);
  border: none;
  padding: 15px 40px;
  width: 100%;
}

@media (min-width: 992px) {
  #cookies-banner .CookieConsent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
  
  #cookies-banner .CookieConsent .ConsentText {
    padding-right: 90px;
  }
  
  #cookies-banner .CookieConsent .ConsentButtons {
    margin-top: 0;
  }
  
  #cookies-banner .CookieConsent .ConsentButtons input {
    width: auto;
  }
}

@media (min-width: 1200px) {
  #cookies-banner {
    padding: 0 15px;
  }
  
  #cookies-banner .CookieConsent {
    border-radius: 12px 12px 0 0;
  }
}

#legal-page-content {
  max-width: 1670px; 
}

#legal-page-content h1 {
  margin-top: 140px;
}

@media (min-width: 1200px) {
  #legal-page-content h1 {
    margin-top: 250px;
  }
}

/* Videos gallery */
#videos-gallery-container {
  margin-top: 60px;
}

#videos-gallery-container .video-title {
  display: block;
  width: 100%;
  max-width: 445px;
  margin: 0 auto 15px;
  font-size: 25px;
  font-weight: 500;
}

@media (min-width: 992px) {
  #videos-gallery-container .video-title {
    max-width: 978px;
  }
}

#videos-gallery-container .main-video-container {
  position: relative;
  height: 250px;
  width: 100%;
  max-width: 445px;
  margin: 0 auto 15px;
  border-radius: 2px;
  box-shadow: 0 5px 75px rgba(0, 0, 0, .2);
  cursor: pointer;
  overflow: hidden;
}

@media (min-width: 992px) {
  #videos-gallery-container .main-video-container {
    height: 550px;
    max-width: 978px;
    margin: 0 auto 30px;
    border-radius: 3px;
    box-shadow: 0 5px 125px rgba(0, 0, 0, .2);
  }
}

#videos-gallery-container .main-video-container:before {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 50%;
  height: 85px;
  width: 85px;
  transform: translate(-50%, -50%);
  background: var(--primary-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='{% Settings.color_primary_highcontrast.Replace("#", "%23") #%}' d='M14 .6C11.3-1.1 7.8.9 7.8 4v20 20c0 3.2 3.5 5.1 6.2 3.4l32.1-20c2.5-1.6 2.5-5.3 0-6.9L14 .6z'/%3E%3C/svg%3E") no-repeat center center/38px 38px;
  filter: brightness(125%);
  border-radius: 50%;
  z-index: 3;
  transition: opacity 175ms ease;
  transition-delay: 550ms;
}

#videos-gallery-container .main-video-container:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(66, 66, 66, .375);
  z-index: 2;
  transition: opacity 175ms ease;
}

#videos-gallery-container .main-video-container.playing:before,
#videos-gallery-container .main-video-container.playing:after {
  opacity: 0;
  pointer-events: none;
}

#videos-gallery-container .main-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

#videos-gallery-container .videos-list {
  display: flex;
  justify-content: center;
  gap: 0 15px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  #videos-gallery-container .videos-list {
    gap: 0 30px;
  }
}

#videos-gallery-container .videos-list .video {
  height: 55px;
  width: auto;
  border-radius: 2px;
  opacity: .7;
  cursor: pointer;
  transition: opacity 125ms ease;
}

@media (min-width: 992px) {
  #videos-gallery-container .videos-list .video {
    height: 75px;
    border-radius: 3px;
  }
}

@media (min-width: 1200px) {
  #videos-gallery-container .videos-list .video {
    height: 125px;
  }
}

#videos-gallery-container .videos-list .video:hover {
  opacity: 1;
}

/* Pictures gallery */
#pictures-gallery-container .pictures-gallery-nav {
  box-sizing: border-box;
  height: 35px;
  padding: 0;
  margin: 30px 0;
  color: var(--primary-color);
  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: var(--primary-color);
  font-size: 16px;
  line-height: 35px;
  vertical-align: top;
  transition: color 100ms ease;
  cursor: pointer;
}
#pictures-gallery-container .pictures-gallery-nav .zoom-bar > i:hover {
  color: var(--primary-color);
}
#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul {
  display: inline-block;
  height: 35px;
  padding: 0;
  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: 2px;
  transform: translate(-50%, -50%);
  background-color: #dbdbdb;
  transition: background-color 100ms ease;
  z-index: 2;
}
#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li:hover:before {
  background-color: #555;
}
#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li.active:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 14px;
  width: 14px;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  border-radius: 7px;
  z-index: 2;
}
#pictures-gallery-container .pictures-gallery-nav .zoom-bar ul li:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  background: #dbdbdb;
  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;
  width: 33px;
  padding: 0 4px;
  background: var(--primary-color);
  border-radius: 1px;
  color: var(--primary-highcontrast-color);
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
@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: 20px 0 10px;
  }
  #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;
    margin-bottom: 15px;
  }
  
  #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;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  cursor: pointer;
  overflow: hidden;
}
#pictures-gallery-container > ul > li .picture-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100% !important;
  width: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  object-fit: cover;
}
#pictures-gallery-container > ul > li .legend {
  display: none;
}
#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;
}

/* Simple lightbox */
.ContentBody .slbCloseBtn {
  top: 25px;
  right: 25px;
  height: 20px;
  width: 20px;
}

.ContentBody .slbArrow {
  height: 60px;
  width: 30px;
}

.ContentBody .slbArrow.prev {
  left: 20px;
}

.ContentBody .slbArrow.next {
  right: 20px;
}

.ContentBody .slbArrow.prev:before,
.ContentBody .slbArrow.prev:after,
.ContentBody .slbArrow.next:before,
.ContentBody .slbArrow.next:after{
  left: 6px;
  width: 20px;
}

/* Quill */
.ql-align-right {
  text-align: right;
}

.ql-align-justify {
  text-align: justify;
}

.ql-align-center {
  text-align: center;
}

/* 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(--primary-highcontrast-color);
  text-decoration: none;
  opacity: .175;
}
#list-grid-view li a.active {
  color: var(--primary-color);
  opacity: 1;
}
#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;
  padding: 0;
  vertical-align: top;
}
#catalog-filters li {
  display: inline-block;
  padding: 0 !important;
}
#catalog-filters input[type="submit"] {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  height: 30px;
  width: auto;
  padding: 5px 8px 7px;
  margin-right: 4px;
  background: rgba(0, 0, 0, .125);
  border-radius: 1px;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}
#catalog-filters input[type="submit"].active {
  background: var(--primary-color);
  color: var(--primary-highcontrast-color);
}
/* Pagination */
#catalog-articles > .PagerControl {
  display: block;
  height: 24px;
  width: auto;
  line-height: 24px;
  text-align: right;
}
#catalog-articles > .PagerControl:first-of-type {
  margin: 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, .15);
}
#catalog-articles > .PagerControl .PagerNumberArea .SelectedNext {
  margin: 0 5px;
  color: rgba(0, 0, 0, .15);
}
#catalog-articles > .PagerControl .PagerNumberArea .SelectedPrev:after,
#catalog-articles > .PagerControl .PagerNumberArea .UnselectedPrev:after {
  content:'\f053';
}
#catalog-articles > .PagerControl .PagerNumberArea .SelectedNext:after,
#catalog-articles > .PagerControl .PagerNumberArea .UnselectedNext:after {
  content:'\f054';
}
/* Articles */
#catalog-articles {
  clear: both;
  display: block;
  padding: 0;
  margin-top: 30px;
  font-size: 0;
  text-align: left;
}
#catalog-articles > span > span {
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  height: auto;
  width: calc(100% - 30px);
  margin: 0 15px 30px;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 12px;
  vertical-align: top;
}
@media all and (min-width: 768px) {
    #catalog-articles > span > span {
        width: calc(50% - 30px);
    }
}
@media all and (min-width: 1024px) {
    #catalog-articles > span > span {
        width: calc(33.33% - 30px);
    }
}
@media all and (min-width: 1440px) {
    #catalog-articles > span > span {
        width: calc(20% - 30px);
    }
}
#catalog-articles.list > span > span {
  display: flex;
  height: 175px;
  width: 100%;
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
#catalog-articles.list > span > span .product {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 30px;
  position: relative;
  padding: 15px;
  height: 100%;
  width: auto;
  text-decoration: none;
}
#catalog-articles > span > span .product {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  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: .5px;
  text-transform: uppercase;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg); 
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}
#catalog-articles .product .banner.promo .banner-label {
  background-color: #ac0f2d;
}
#catalog-articles .product .banner.sale .banner-label {
  background-color: #cf920f;
}
#catalog-articles .product .banner.new .banner-label {
  background-color: #75ac0f;
  font-size: 10px;
}
#catalog-articles.list .product .picture-container {
  position: relative;
  height: 100%;
  width: 175px;
}
#catalog-articles.grid .product .picture-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
#catalog-articles .product .picture-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  object-fit: cover;
}
#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;
  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 (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 {
  display: flex;
  gap: 0 45px;
  position: relative;
  padding: 90px 30px 45px;
  margin-top: 150px;
}
#article-details > .title {
  position: absolute;
  top: 0;
  left: 30px;
  display: block;
  width: calc(100% - 60px);
  margin: 0;
}
#article-details-pictures {
  position: relative;
  width: 30%;
}
#article-details-pictures > .picture-container {
  display: block;
  width: 100%;
}
#article-details-pictures .banner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 90px;
  z-index: 2;
  overflow: hidden;
}
#article-details-pictures .banner .banner-label {
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  left: -25px;
  height: 18px;
  width: 120px;
  color: #fff;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .5px;
  text-transform: uppercase;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg); 
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}
#article-details-pictures .banner.promo .banner-label {
  background-color: #ac0f2d;
}
#article-details-pictures .banner.sale .banner-label {
  background-color: #cf920f;
}
#article-details-pictures .banner.new .banner-label {
  background-color: #75ac0f;
}
#article-details-pictures .main-picture {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
}
#article-details-pictures .main-picture:hover:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, .35);
  border-radius: 1px;
}
#article-details-pictures .pictures-list {
  height: 40px;
  width: 100%;
  margin-top: 10px;
  font-size: 0;
}
#article-details-pictures .pictures-list li {
  display: inline-block;
  height: 40px;
  margin-right: 10px;
}
#article-details-pictures .pictures-list li a {
  display: block;
  height: 100%;
  opacity: .75;
  transition: opacity 100ms ease;
}
#article-details-pictures .pictures-list li a:hover {
  opacity: 1;
}
#article-details-pictures .pictures-list li img {
  height: 40px;
  border-radius: 1px;
}
#article-details > .right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
#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-price {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
#article-details-price .price {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
}
#article-details-price .crossed {
  text-decoration: line-through;
}
#article-details-price .description-title {
  margin-bottom: 0;
}
#article-details-description .description-title {
  display: block;
  margin: 30px 0;
  color: var(--primary-color);
  font-size: 19px;
  font-weight: bold;
}
#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);
}

/* Languages */
#languages {
	float: right;
	height: 12px;
}

#languages ul {
	height: 12px;
}

#languages ul li {
	position: relative;
	display: block;
	float: right;
	padding: 0;
	margin: 0 0 0 8px;
}

#languages ul li a {
	display: block;
	height: 12px;
	width: 18px;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAAAMCAYAAADBJPs9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjhGMDk0NzM2MzYzMTFFNDk4RjQ4MTEyNTFENDE2QTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjhGMDk0NzQ2MzYzMTFFNDk4RjQ4MTEyNTFENDE2QTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOEYwOTQ3MTYzNjMxMUU0OThGNDgxMTI1MUQ0MTZBMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOEYwOTQ3MjYzNjMxMUU0OThGNDgxMTI1MUQ0MTZBMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PseD+u8AAAKjSURBVHjazFZdSFNhGH7OztmolRC4c6FGkbkttPSiJaRIC8NpP5RdmCJiCFEsiZQCKYQQ7WdZy2iC9HMxsIL+5iIbMXMEkRU2NzBpa/4lHsMkLEXnNk/bKMm2GXLOxXluzuF7n/fh/Z7znu97Cba4eBRudwK4QC5n+l53fhrT31NPkiug0z3C+PjkQri31wBJ8urw+1z/FNLSji9Kr/B/RGVKAFM37tryiwqVTqeTUz3p6emMQlEGl4uJ0HE4rkTNGc7IiFgTKxSMiLM5IQQ17lCp6i01Jdg0ZMfTtlqUl+eCJEVLpiWy02j1WlBaoQH7wIqrt2xqruaEENKIZs5y4XO5EkTgCSZyI/JYDd7qWyA5mIND2ethDhqlUqVE5e8L9KNN1oPEh2aMaYqxv7ABJtMbCA0iPsV+EhLUizNRMqrA9/IirNKdwTXd4QieYa4Tp/cqQLR34f6rAZSWXsbIyDcIEYTX62X5EPL7/aAoKmb87zMoZkv7fPBmZfOysZ3Ijbq+nDMoBIq3VpSvgYT4P++PUdEwH/pUslRBdRBvBv1gA1iqFVcSZPg5E+TF/EVZHgsSmkG+98MgaTo24XfnkAMzMSmBiQlQ+QXCMijzUg8vQtPGm//MIhvQ2FgB1mnH2oLF54HH8xWfz9VB2vUSF8TbMETELcTsRp52dkyAt1h4uBJTqKo6gNstWkjP16D3RFUEp7n5GVT6i0i63ozHMgdO+T5ACr8gbzFeDVIqk2B6chYFyVIEdm1FXQeDaklOBM9i6UaephbWL3OYb3+HHZVl6MDz8GwkOIPip90MVxF6doDRavfYWo3ViDM0wH30CHZPZeEFuS5mzuysD01N5uCAWI/BzTkIWO04uT3e1u2Rca7HMUgzNO3nrNNH08wvAQYApRzsPjzoJncAAAAASUVORK5CYII=') no-repeat top left;
	opacity: .6;
	transition: opacity .2s;
	text-indent: -9999px;
}

#languages ul li a.fr {
	background-position: -54px 0;
}

#languages ul li a.lu {
	background-position: 0 0;
}

#languages ul li a.de {
	background-position: -36px 0;
}

#languages ul li a.en {
	background-position: -18px 0;
}

#languages ul li a:hover {
	opacity: 0.8;
}

#languages ul li.active a {
	height: 16px;
	width: 22px;
	margin: -2px 0 0 -2px;
	border: 2px solid #dcdcdc;
	border-radius: 2px;
	opacity: 1;
}