﻿/* 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: 1670px;
}

.breadcrumb {
    position: absolute;
    top: -40px;
    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: none;
    }

    .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;
    }

@media (min-width: 768px) {
    .breadcrumb .CMSBreadCrumbsLink:not(.home),
    .breadcrumb .CMSBreadCrumbsLink.home span,
    .breadcrumb .arrow {
        display: inline;
    }
}

@media (min-width: 1200px) {
    .breadcrumb {
        top: 70px;
    }
}

.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 {
    padding: 40px;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

    .carousel .carousel-caption .title {
        font-size: 32px;
        font-weight: bold;
        display: block;
        margin-bottom: 15px;
    }

.carousel .carousel-control-prev, .carousel .carousel-control-next {
    opacity: 1;
}

    .carousel .carousel-control-prev .carousel-control-prev-icon, .carousel .carousel-control-next .carousel-control-next-icon {
        width: 50px;
        height: 50px;
        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: 35px;
            color: var(--primary-highcontrast-color);
        }

/* HEADER */
header .container-fluid {
    padding: 5px 15px;
}

header .navbar {
    padding: 0;
}

header .navbar-brand {
    margin-right: 0;
    display: block;
    margin-bottom: 40px;
    padding: 0;
}

    header .navbar-brand img {
        max-width: 150px;
        max-height: 80px;
    }

header nav .navbar-toggler {
    margin-left: auto;
}

    header nav .navbar-toggler i {
        font-size: 20px;
        color: var(--primary-color);
    }

header nav .navbar-collapse {
    position: fixed;
    right: -250px;
    top: 0;
    bottom: 0;
    background-color: var(--primary-color);
    width: 250px;
    z-index: 999;
    padding: 30px 15px;
    height: 100% !important;
    transition: right .3s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

    header nav .navbar-collapse.show {
        right: 0;
    }

    header nav .navbar-collapse .navbar-toggler {
        margin-right: auto;
        margin-left: 0;
    }

        header nav .navbar-collapse .navbar-toggler i {
            color: var(--primary-highcontrast-color);
        }

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;
    }

        header nav ul#menuElem li.Highlighted, header nav ul#menuElem li:hover {
            font-weight: bold;
        }

            header nav ul#menuElem li.Highlighted a:before, header nav ul#menuElem li:hover a:before, header nav ul#menuElem li.Highlighted span:before, header nav ul#menuElem li:hover span:before {
                width: 100%;
            }

        header nav ul#menuElem li a, header nav ul#menuElem li span {
            color: var(--primary-highcontrast-color);
            display: block;
            padding: 5px;
            position: relative;
            text-decoration: none;
        }

        header nav ul#menuElem li span {
            padding-right: 20px;
        }

            header nav ul#menuElem li a:before, header nav ul#menuElem li span:before {
                content: '';
                transition: width .3s;
                position: absolute;
                bottom: 0;
                left: 0;
                height: 3px;
                width: 0;
                background-color: var(--primary-highcontrast-color);
            }

            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 a:hover, header nav ul#menuElem li span:hover {
                color: var(--primary-highcontrast-color);
                text-decoration: none;
            }

        header nav ul#menuElem li ul {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            transition: all 0.5s ease;
            padding-top: 1rem;
            left: 0;
            display: none;
            background-color: var(--primary-color);
            z-index: 999;
            padding: 0;
            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;
    border: 2px solid var(--primary-color);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
}

    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: var(--primary-highcontrast-color);
    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 {
        background-color: var(--primary-color);
    }

        header .navbar-brand {
            margin-right: 50px;
            display: inline;
            margin-bottom: 0;
        }

    .navbar-expand-lg ul#menuElem {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    header nav .btn-secondary {
        margin-left: 40px;
        margin-right: 40px;
    }

    header nav .navbar-collapse {
        position: relative;
        right: 0;
        padding: 0;
        display: block;
        -ms-flex-direction: inherit;
        flex-direction: 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(:last-child) {
                margin-right: 40px;
            }

    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 > div.row {
    width: 100%;
}

/* 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) @(site.DesignInfo.SecondaryHighContrastColor == "#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 h1 {
    margin-top: 30px;
}

#home-content-left #presentation-short p {
    margin-top: 20px;
    margin-bottom: 40px;
}

#home-content-left .btn-primary {
    margin: 0 auto 45px auto;
}

#home-slider {
    width: 100%;
}

#home-slider .carousel {
    width: 100%;
    padding-right: 0;
}

    #home-slider .carousel, #home-slider .carousel .carousel-inner, #home-slider .carousel .carousel-inner .carousel-item {
        max-height: 500px;
        height: 100%;
        min-height: 350px;
    }

    #home-slider .carousel .carousel-inner .carousel-item {
        max-height: 500px;
        height: 100%;
        min-height: 350px;
        max-width: 100%;
        overflow-x: hidden;
    }

    @media (min-width: 992px) {
        #home-slider .carousel .carousel-inner .carousel-item {
            overflow-x: visible;
        }
    }

        #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 {
            bottom: 70px;
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
            left: 15px;
            right: 15px;
            max-height: 350px;
            overflow-y: auto;
            padding: 20px;
        }

#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-slider .carousel, #home-slider .carousel .carousel-inner, #home-slider .carousel .carousel-inner .carousel-item {
        max-height: 800px;
        height: 100%;
        min-height: 500px;
    }
}

@media (min-width: 992px) {
    #home-content-left h1 {
        margin-top: 0;
    }

    #home-content-left .btn-primary {
        margin: 0;
    }

    #home-slider .carousel .carousel-indicators {
        display: flex;
        display: -ms-flexbox;
        margin-bottom: 90px;
    }

    #home-slider .carousel .carousel-indicators, #home-slider .carousel .carousel-inner {
        padding-left: 100px;
    }

    #home-slider .carousel {
        margin-left: 0;
    }

        #home-slider .carousel, #home-slider .carousel .carousel-inner, #home-slider .carousel .carousel-inner .carousel-item {
            max-height: 960px;
            height: 100%;
            min-height: 900px;
        }

            #home-slider .carousel .carousel-control-prev {
                left: 100px;
            }

            #home-slider .carousel .carousel-indicators {
                margin-bottom: 20px;
            }

            #home-slider .carousel .carousel-caption {
                text-align: left;
                left: -100px;
                bottom: 50px;
                transform: none;
                max-width: 550px;
                width: 100%;
                padding: 40px;
                z-index: 999;
            }
}

@media (min-width: 1200px) {
    #home-slider .carousel, #home-slider .carousel .carousel-inner, #home-slider .carousel .carousel-inner .carousel-item {
        max-height: inherit;
    }
}

@media (min-width: 1920px) {
    #home-slider .carousel {
        margin-right: -150px;
    }
}

/* PRESENTATION */
#presentation-content-left h1 {
    margin-bottom: 25px;
    margin-top: 30px;
}

#presentation-content-left #presentation p:last-of-type {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 18px;
    margin-top: 30px;
}

    #presentation-content-left #presentation p:last-of-type a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

        #presentation-content-left #presentation p:last-of-type a,
        #presentation-content-left #presentation p:last-of-type a:hover {
            color: var(--tertiary-color);
            text-decoration: none;
        }

            #presentation-content-left #presentation 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 #presentation p:last-of-type a:hover span {
                text-decoration: underline;
            }

            #presentation-content-left #presentation p:last-of-type a i {
                margin-right: 10px;
            }

#presentation-content-right {
    padding-top: 50px;
    padding-bottom: 50px;
}

#presentation-content-right #carousel-presentation {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-left: -30px;
    margin-right: -30px;
}

#presentation-content-right #carousel-presentation, #presentation-content-right #carousel-presentation .carousel-inner, #presentation-content-right #carousel-presentation .carousel-inner .carousel-item {
    max-height: 400px;
    height: 100%;
    min-height: 400px;
}

#presentation-content-right #carousel-presentation .carousel-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 768px) {
    #presentation-content-right #carousel-presentation, #presentation-content-right #carousel-presentation .carousel-inner, #presentation-content-right #carousel-presentation .carousel-inner .carousel-item {
        max-height: 600px;
        height: 100%;
        min-height: 600px;
    }

    #presentation-content-right #carousel-presentation {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    #presentation-content-left {
        padding-right: 150px;
        padding-bottom: 50px;
    }

    #presentation-content-left h1 {
        margin-top: 150px;
    }

    #presentation-content-right {
        padding-top: 160px;
    }

    #presentation-content-right #carousel-presentation {
        box-shadow: none;
    }

    #presentation-content-right #carousel-presentation:before {
        content: '';
        background-color: var(--primary-color);
        max-width: 280px;
        width: 100%;
        max-height: 240px;
        height: 100%;
        position: absolute;
        bottom: -30px;
        right: -30px;
        opacity: 0.5;
    }

    #presentation-content-right #carousel-presentation, #presentation-content-right #carousel-presentation .carousel-inner, #presentation-content-right #carousel-presentation .carousel-inner .carousel-item {
        max-height: 700px;
        height: 100%;
        min-height: 700px;
    }
}

@media (min-width: 1200px) {
    #presentation-content-left {
        padding-right: 250px;
    }
}

/* PRODUCTS AND SERVICES */
#products-content-left {
    padding-bottom: 50px;
}

    #products-content-left h1 {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    #products-content-left h2 {
        margin-top: 110px;
        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%;
        }

#products-content-right img {
    width: 100%;
    max-height: 720px;
    height: auto;
    position: relative;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    #products-content-left ul li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    #products-content-left {
        padding-bottom: 30px;
    }

        #products-content-left h1 {
            margin-top: 150px;
        }

    #products-content-right:before {
        content: '';
        max-width: 450px;
        width: 100%;
        max-height: 140px;
        height: 100%;
        position: absolute;
        top: 90px;
        right: -35px;
        opacity: 0.5;
        background: var(--tertiary-color);
        box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
    }

    #products-content-right img {
        margin-top: 120px;
    }
}

/* RDV */
#smart-container {
    width: 100%;
    margin-top: 30px;
}

@media (min-width: 992px) {
    #smart-container {
        margin-top: 150px;
    }
}

/* FREE PAGE */
#free-page-content {
    padding-bottom: 50px;
}

    #free-page-content h1 {
        margin-top: 30px;
    }

@media (min-width: 992px) {
    #free-page-content {
        padding-bottom: 30px;
    }

        #free-page-content h1 {
            margin-top: 150px;
        }
}

/* NEWS */
#news-content {
    padding-bottom: 30px;
}

    #news-content h1 {
        margin-top: 30px;
        margin-bottom: 115px;
    }

    #news-content article > div {
        border-bottom: 1px solid var(--secondary-color);
        margin-bottom: 25px;
        padding-bottom: 30px;
    }

    #news-content article h2 {
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 24px;
    }

    #news-content article .news-date {
        margin-bottom: 20px;
        font-size: 18px;
        color: var(--tertiary-color);
    }

@media (min-width: 992px) {
    #news-content:before, #news-content:after {
        content: '';
        position: absolute;
        top: 50%;
        right: -155px;
    }

    #news-content:before {
        width: 85px;
        height: 100px;
        background-color: var(--primary-color);
        top: calc(50% - 100px);
    }

    #news-content:after {
        width: 130px;
        height: 280px;
        background-color: var(--primary-color);
        opacity: .5;
    }

    #news-content h1 {
        margin-top: 150px;
    }

    #news-content article > div {
        margin-right: 200px;
    }
}

/* MENU OF THE WEEK */
#menu-content {
    padding-bottom: 50px;
}

    #menu-content #week-menu h1 {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    #menu-content #week-menu .date {
        font-size: 24px;
        font-weight: bold;
        color: var(--primary-color);
    }

    #menu-content #week-menu div {
        text-align: center;
        margin-bottom: 15px;
    }

        #menu-content #week-menu div:first-of-type {
            margin-top: 60px;
        }

        #menu-content #week-menu div h2 {
            color: var(--tertiary-color);
            font-weight: bold;
        }

@media (min-width: 992px) {
    #menu-content {
        padding-bottom: 30px;
    }

        #menu-content #week-menu h1 {
            margin-top: 150px;
            margin-bottom: .5rem;
        }
}

/* CONTACT */
#contact-content-left h1 {
    margin-top: 30px;
    margin-bottom: 70px;
}

#contact-content-left h2 {
    font-size: 16px;
    margin-bottom: 50px;
}

#contact-content-left #contact-form .error,
#contact-content-left #contact-form .field-validation-error,
#contact-content-left #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-content-left #contact-form .error:before,
#contact-content-left #contact-form .field-validation-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,
#contact-content-left #contact-form .form-group textarea {
    border-radius: 10px;
}

#contact-content-left #contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem var(--primary-color).ToArgb(0.25);
    border-color: var(--primary-color);
}

#contact-content-left #contact-form .form-group textarea {
    min-height: 240px;
}

#contact-content-left #contact-form .form-group label {
    position: absolute;
    top: .375rem;
    left: .75rem;
}

#contact-content-left #contact-form .buttons > div {
    padding: 0;
}

#contact-content-left #contact-form .buttons .btn {
    width: 100%;
    border-radius: 10px;
}

#contact-content-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

    #contact-content-right .map {
        max-width: 600px;
        width: 100%;
        max-height: 600px;
        min-height: 300px;
        height: 100%;
        margin-top: 30px;
        position: relative;
        border-radius: 10px;
    }

        #contact-content-right .map .ol-overlaycontainer-stopevent {
            display: none;
        }

#contact-content-bottom {
    margin-bottom: 30px;
}

#contact-content-bottom h2 {
    font-size: 18px;
    margin-top: 90px;
    margin-bottom: 30px;
}

#contact-content-bottom a {
    color: #000;
}

#contact-content-bottom a i {
    color: #000;
}

#contact-content-bottom a:hover {
    color: #000;
    text-decoration: none;
}

#contact-content-bottom #company-infos {
    padding-left: 0;
    padding-right: 0;
}

#contact-content-bottom #company-infos > div > div:first-child {
    text-align: center;
    padding-left: 0;
}

#contact-content-bottom #company-infos > div {
    margin-bottom: 40px;
}

#contact-content-bottom #company-infos > div i {
    font-size: 40px;
    color: var(--tertiary-color);
}

#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 ul li {
  display: flex;
  gap: 10px;
}

#contact-content-bottom #company-infos #schedules ul li .day {
  font-weight: bold;
}

#contact-content-bottom #company-infos #schedules ul li .hours {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#contact-content-bottom #company-infos a[data-toggle="collapse"] {
    margin-top: 10px;
    color: #212529;
    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-title {
    width: 100%;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

#contact-content-bottom .social-networks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 70px;
    text-align: center;
}

#contact-content-bottom .social-networks .list-group-item {
    border: none;
}

#contact-content-bottom .social-networks a {
    font-size: 0;
    padding-bottom: 30px;
}

#contact-content-bottom .social-networks a i {
    font-size: 30px;
}

#contact-form button[type="submit"] {
    width: 100%;
    max-width: 300px;
    float: right;
    padding: 20px 50px;
    background-color: var(--primary-color);
    border-radius: 10px;
    border: none;
    color: var(--primary-highcontrast-color);
    font-size: 18px;
}

@media (min-width: 992px) {
    #contact-content-left {
        padding-right: 100px;
    }

    #contact-content-left h1 {
        margin-top: 150px;
    }

    #contact-content-left #contact-form .buttons > div {
        padding: 0 15px;
    }

    #contact-content-right {
        -ms-flex-pack: flex-start;
        justify-content: flex-start;
    }

    #contact-content-right:before {
        content: '';
        position: absolute;
        top: 140px;
        right: -50px;
        background-color: var(--tertiary-color);
        width: 230px;
        height: 500px;
    }

    #contact-content-right .map {
        margin-top: 170px;
    }

    #contact-content-bottom #company-infos > div i {
        font-size: 50px;
    }
}

@media (min-width: 1200px) {
    #contact-content-left {
        padding-right: 150px;
    }

    #contact-content-bottom #company-infos > div {
        margin-bottom: 0;
    }
}

/* ERROR */
#error-content {
    text-align: center;
}

    #error-content svg {
        margin-bottom: 30px;
        max-width: 100%;
    }

        #error-content svg .a,
        #error-content svg .b,
        #error-content svg .c,
        #error-content svg .e {
            fill: none;
            stroke: var(--primary-color);
        }

        #error-content svg .d {
            fill: var(--primary-color);
        }

    #error-content h1 {
        font-style: italic;
        color: var(--primary-color);
        margin-bottom: 70px;
    }

    #error-content .btn {
        margin-bottom: 50px;
    }

@media (min-width: 992px) {
    #error-content:before, #error-content:after {
        content: '';
        position: absolute;
        right: -130px;
    }

    #error-content:before {
        top: 60px;
        height: 190px;
        width: 100px;
        background-color: var(--primary-color);
    }

    #error-content:after {
        top: 250px;
        height: 350px;
        width: 270px;
        background-color: var(--primary-color);
        opacity: .5;
    }

    #error-content #content-404:before {
        content: '';
        position: absolute;
        left: -130px;
        top: 500px;
        height: 350px;
        width: 270px;
        background-color: var(--primary-color);
        opacity: .5;
    }
}

/* 404 */
#content-404 {
    padding: 90px 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: 120px;
}

#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;
    }
}

/* COOKIES */
#cookies-banner {
    position: fixed;
    bottom: 0;
    background-color: white;
    z-index: 999;
    padding: 30px 15px;
    width: 100%;
    box-shadow: 0px -5px 6px rgba(0, 0, 0, 0.11);
}

    #cookies-banner .CookieConsent {
        max-width: 1670px;
        margin: auto;
    }

        #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;
            }

@media (min-width: 992px) {
    #cookies-banner .CookieConsent {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

        #cookies-banner .CookieConsent .ConsentText {
            padding-right: 70px;
        }

        #cookies-banner .CookieConsent .ConsentButtons {
            margin-top: 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: 30px;
}

    #videos-gallery-container .video-title {
        display: block;
        width: 100%;
        max-width: 445px;
        margin: 0 auto 10px;
        font-size: 24px;
        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;
        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% - 37.5px);
    left: calc(50% - 37.5px);
    height: 75px;
    width: 75px;
    transform-origin: center;
    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='var(--primary-highcontrast-color).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/32px 32px;
    filter: brightness(125%);
    border-radius: 50%;
    box-shadow: 0 0 55px rgba(0, 0, 0, .25);
    z-index: 3;
    transition: opacity 175ms linear 550ms, transform 105ms;
}

#videos-gallery-container .main-video-container:hover:before {
    transform: scale(1.15);
    box-shadow: 0 0 75px rgba(0, 0, 0, .5);
}

#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;
    }
}

@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%;
        width: 100%;
        max-width: none;
        height: 100% !important;
        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;
}


/* 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: 6px;
    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;
}