/* Misc */
:root {
    --navbar-height: calc(4rem + 30px);
}

body,
html {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2rem;
    min-height: 125vh;
}

strong,
.strong {
    font-weight: 800;
}

.thin {
    font-weight: 300;
}

.big {
    font-size: 1.3rem;
}

.overflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
}

* {
    font-family: "Raleway", sans-serif;
}

a {
    color: #002153;
}

body:not(.home) main {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 991px) {

    body:not(.home) main,
    .container-fluid {
        padding-left: 8%;
        padding-right: 8%;
    }
}

body:not(.home) {
    padding-bottom: 60px;
}

main,
.container-fluid {
    max-width: 100vw;
    margin-right: auto;
    margin-left: auto;
}

.home main {
    padding: 0;
}

/** Bugfix **/
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    max-width: calc(100vw - 15px);
}

/** Background **/

.bg-gradient {
    background: linear-gradient(180deg, #FAFAFA 0%, #fff 100%);
}

/** Flexboxes **/

.d-flex {
    display: flex;
}

.flex1 {
    flex: 1;
}

.flex-v-center {
    align-items: center;
}

/** Margin **/
.ma-0 {
    margin: 0;
}

.ma-1 {
    margin: 1rem;
}

.ma-2 {
    margin: 2rem;
}

.ma-3 {
    margin: 3rem;
}

.ma-4 {
    margin: 4rem;
}

.ma-5 {
    margin: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}

.ml-5 {
    margin-left: 5rem;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.mr-4 {
    margin-right: 4rem;
}

.mr-5 {
    margin-right: 5rem;
}

/** Font sizes **/
.fs-0 {
    font-size: 0.8rem;
    line-height: 1rem;
}

.fs-1 {
    font-size: 1rem;
    line-height: 1.2rem;
}

.fs-2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.fs-3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
}

.fs-4 {
    font-size: 2rem;
    line-height: 2.4rem;
}

.fs-5 {
    font-size: 3rem;
    line-height: 3.6rem;
}

.text-hardbreak {
    word-break: break-all;
}

.text-nowrap {
    white-space: nowrap;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.clear-float {
    clear: both;
}

.img-responsive {
    margin: 0 auto;
}

.media-object {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
}

.w100 {
    width: 100%;
}

/* Buttons */

.btn.btn-default {
    padding: calc(0.5em + 2px) 1em;
    border-radius: 0.5em;
}

.btn.btn-primary {
    background-color: #363333;
    color: #fff;
    border: 3px solid #363333;
    border-radius: 0.5em;
    padding: 0.5em 1em;
    font-weight: 800;
    transition: 0.5s;
    background-image: linear-gradient(90deg, rgba(0, 38, 84, 0) 0%, rgba(0, 38, 84, 0) 33%, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 66%, rgba(237, 41, 57, 0) 66%, rgba(237, 41, 57, 0) 100%);
    background-size: 100% 2px;
    background-position: 0 150%;
    background-repeat: no-repeat;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    background-color: #fff;
    background-image: linear-gradient(90deg, rgba(0, 38, 84, 0.5) 0%, rgba(0, 38, 84, 0.5) 33%, rgba(255, 255, 255, 0.5) 33%, rgba(255, 255, 255, 0.5) 66%, rgba(237, 41, 57, 0.5) 66%, rgba(237, 41, 57, 0.5) 100%);
    color: #363333;
    border: 3px solid #363333;
    position: relative;
    overflow: hidden;
    background-position: 0 100%;
    box-shadow: 5px 0 5px 0px rgba(237, 41, 57, 0.2), -5px 0 5px 0px rgba(0, 35, 149, 0.2);
}

/* Dropdown */
.dropdown {
    border-radius: 0;
}

.dropdown>* {
    border-radius: 0;
}

/* email-address */
.email-address {
    unicode-bidi: bidi-override;
    direction: rtl;
}

/* Navbar */

.navbar-transparent {
    font-weight: 800;
    min-height: var(--navbar-height);
    z-index: 50;
    max-width: 100vw;
}

.navbar-header {
    height: var(--navbar-height);
}

.navbar-transparent .navbar-brand {
    font-size: 4rem;
}

.navbar-transparent .navbar-toggle {
    transform: scale(1.5) translateY(75%);
}

.navbar-brand {
    height: auto;
}

@media(min-width: 768px) {
    .navbar-transparent {
        font-weight: 800;
        height: 5rem;
    }

    .navbar-transparent>div.container-fluid {
        display: flex;
        justify-content: start;
        align-items: center;
        height: 100%;
    }

    #main-menu {
        display: flex !important;
        width: 100%;
        justify-content: end;
    }

    ul.navbar-nav.main-navbar {
        flex: 1;
        display: flex;
        justify-content: space-around;
    }
}

.navbar-transparent {
    background-color: #363333;
    border-color: transparent;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    margin-top: -1px;
}

.navbar-transparent .navbar-brand {
    color: #fff;
    transition: color 0.5s ease;
}

.navbar-transparent .navbar-brand:hover,
.navbar-transparent .navbar-brand:focus {
    color: #e7e7e7;
    background-color: transparent;
}

.navbar-transparent .navbar-text {
    color: #fff;
}

.navbar-transparent .navbar-nav>li>a {
    color: #fff;
    transition: color 0.5s ease;
}

.navbar-transparent .navbar-nav>li>a:hover,
.navbar-transparent .navbar-nav>li>a:focus {
    color: #e7e7e7;
    background-color: transparent;
}

.navbar-transparent .navbar-nav>.active>a,
.navbar-transparent .navbar-nav>.active>a:hover,
.navbar-transparent .navbar-nav>.active>a:focus {
    color: #e7e7e7;
    background-color: transparent;
}

.navbar-transparent .navbar-nav>.disabled>a,
.navbar-transparent .navbar-nav>.disabled>a:hover,
.navbar-transparent .navbar-nav>.disabled>a:focus {
    color: #e7e7e7;
    background-color: transparent;
    opacity: 0.7;
}

.navbar-transparent .navbar-toggle {
    border-color: transparent;
}

.navbar-transparent .navbar-toggle:hover,
.navbar-transparent .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-transparent .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-transparent .navbar-collapse,
.navbar-transparent .navbar-form {
    border-color: #e7e7e7;
}

.navbar-transparent .navbar-nav>.open>a,
.navbar-transparent .navbar-nav>.open>a:hover,
.navbar-transparent .navbar-nav>.open>a:focus {
    background-color: #363333;
    color: #e7e7e7;
}

@media (max-width: 767px) {
    .navbar-transparent .navbar-nav .open .dropdown-menu {
        background-color: #363333;
    }

    .navbar-transparent .navbar-nav .open .dropdown-menu>li>a {
        color: #e7e7e7;
    }

    .navbar-transparent .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-transparent .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #fff;
        background-color: #000;
    }

    .navbar-transparent .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-transparent .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-transparent .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #fff;
        background-color: #000;
    }

    .navbar-transparent .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-transparent .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .navbar-transparent .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #e7e7e7;
        background-color: #363333;
    }
}

.navbar-transparent .navbar-link {
    color: #fff;
}

.navbar-transparent .navbar-link:hover {
    color: #e7e7e7;
}

.navbar-transparent .btn-link {
    color: #fff;
}

.navbar-transparent .btn-link:hover,
.navbar-transparent .btn-link:focus {
    color: #e7e7e7;
}

.navbar-transparent .btn-link[disabled]:hover,
fieldset[disabled] .navbar-transparent .btn-link:hover,
.navbar-transparent .btn-link[disabled]:focus,
fieldset[disabled] .navbar-transparent .btn-link:focus {
    color: #e7e7e7;
}

.home .navbar-transparent.affix-top {
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    border-radius: 0;
    padding: 1px;
    margin-top: -1px;
    background: transparent;
}

.home .navbar-transparent.affix-top .navbar-brand {
    color: #fff;
    transition: color 0.5s ease;
}

.home .navbar-transparent.affix-top .navbar-brand:hover,
.home .navbar-transparent.affix-top .navbar-brand:focus {
    color: #e7e7e7;
    background-color: transparent;
}

.home .navbar-transparent.affix-top .navbar-text {
    color: #fff;
}

.home .navbar-transparent.affix-top .navbar-nav>li>a {
    color: #fff;
    transition: color 0.5s ease;
    text-shadow: 1px 1px 1px #0003, -1px -1px 1px #0003, 1px -1px 1px #0003, -1px 1px 1px #0003;
}

.home .navbar-transparent.affix-top .navbar-nav>li>a:hover,
.home .navbar-transparent.affix-top .navbar-nav>li>a:focus {
    color: #e7e7e7;
    background-color: transparent;
}

.home .navbar-transparent.affix-top .navbar-nav>.active>a,
.home .navbar-transparent.affix-top .navbar-nav>.active>a:hover,
.home .navbar-transparent.affix-top .navbar-nav>.active>a:focus {
    color: #e7e7e7;
    background-color: transparent;
}

.home .navbar-transparent.affix-top .navbar-nav>.disabled>a,
.home .navbar-transparent.affix-top .navbar-nav>.disabled>a:hover,
.home .navbar-transparent.affix-top .navbar-nav>.disabled>a:focus {
    color: #e7e7e7;
    background-color: transparent;
    opacity: 0.7;
}

.home .navbar-transparent.affix-top .navbar-toggle {
    border-color: transparent;
}

.home .navbar-transparent.affix-top .navbar-toggle:hover,
.home .navbar-transparent.affix-top .navbar-toggle:focus {
    background-color: transparent;
}

.home .navbar-transparent.affix-top .navbar-toggle .icon-bar {
    background-color: #fff;
}

.home .navbar-transparent.affix-top .navbar-collapse,
.home .navbar-transparent.affix-top .navbar-form {
    border-color: rgba(54, 51, 51, 0.2);
    border-width: 2px;
}

.home .navbar-transparent.affix-top .navbar-nav>.open>a,
.home .navbar-transparent.affix-top .navbar-nav>.open>a:hover,
.home .navbar-transparent.affix-top .navbar-nav>.open>a:focus {
    background-color: #363333;
    color: #e7e7e7;
}

.navbar-transparent .navbar-collapse>div {
    flex: 1;
    display: flex;
    flex-direction: row;
}

@media (max-width: 767px) {
    .home .navbar-transparent .navbar-collapse>div {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .home .navbar-transparent.affix-top {
        background: rgba(54, 51, 51, 1);
        backdrop-filter: blur(5px);
    }

    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu {
        background-color: #363333;
    }

    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>li>a {
        color: #e7e7e7;
    }

    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>li>a:hover,
    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #fff;
        background-color: #000;
    }

    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>.active>a,
    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>.active>a:hover,
    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #fff;
        background-color: #000;
    }

    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>.disabled>a,
    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .home .navbar-transparent.affix-top .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #e7e7e7;
        background-color: #363333;
    }
}

.home .navbar-transparent.affix-top .navbar-link {
    color: #fff;
}

.home .navbar-transparent.affix-top .navbar-link:hover {
    color: #e7e7e7;
}

.home .navbar-transparent.affix-top .btn-link {
    color: #fff;
}

.home .navbar-transparent.affix-top .btn-link:hover,
.home .navbar-transparent.affix-top .btn-link:focus {
    color: #e7e7e7;
}

.home .navbar-transparent.affix-top .btn-link[disabled]:hover,
.home fieldset[disabled] .navbar-transparent.affix-top .btn-link:hover,
.home .navbar-transparent.affix-top .btn-link[disabled]:focus,
.home fieldset[disabled] .navbar-transparent.affix-top .btn-link:focus {
    color: #e7e7e7;
}

/** Second mobile menu **/

.second-mobile-menu {
    float: right;
    margin: 42px 20px 0 0;
    text-align: right;
    background: transparent;
}

/** Carousel **/

:root {
    --swiper-navigation-color: rgba(54, 51, 51, 0.5);
    --swiper-theme-color: #363333;
    --swiper-pagination-color: #363333;
    --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1);
}

.swiper.mySwiper {
    height: 100%;
    aspect-ratio: 0.75;
    max-height: 60vh;
    user-select: none;
}

@media(min-width: 991px) {
    .swiper.mySwiper {
        max-width: calc(50vw - 90px);
    }
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-double {
    display: flex;
}

/* Parallax */
.parallax .full-width.screen {
    width: 100%;
    margin: 0px;
    position: absolute;
    left: 0px;
    right: 0px;
    height: 100vh;
    max-height: 2000px;
    background-size: cover;
    /* background-attachment: fixed; */
    background-position: center center;
    background-repeat: no-repeat;
}

.parallax .parallax-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}

.parallax-placeholder {
    display: block;
    height: 100vh;
    max-height: 2000px;
    width: 1px;
}


/** Outline button **/

.btn.btn-outline-default {
    font-weight: 800;
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(0, 38, 84, 0) 0%, rgba(0, 38, 84, 0) 33%, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 66%, rgba(237, 41, 57, 0) 66%, rgba(237, 41, 57, 0) 100%);
    line-height: 2em;
    font-size: 1em;
    border: solid #363333 3px;
    border-radius: 0.5em;
    color: #363333;
    padding: 0 70px;
    backdrop-filter: blur(12px);
    transition: 0.5s;
    overflow: hidden;
    box-shadow: 5px 0 5px 0px rgba(237, 41, 57, 0), -5px 0 5px 0px rgba(0, 35, 149, 0);
    position: relative;
    background-size: 100% 2px;
    background-position: 0 calc(100% + 2px);
    background-repeat: no-repeat;
}

.btn.btn-outline-default:hover,
.btn.btn-outline-default:focus,
.btn.btn-outline-default:active {
    box-shadow: 5px 0 5px 0px rgba(237, 41, 57, 0.2), -5px 0 5px 0px rgba(0, 35, 149, 0.2);
    background-image: linear-gradient(90deg, rgba(0, 38, 84, 0.5) 0%, rgba(0, 38, 84, 0.5) 33%, rgba(255, 255, 255, 0.5) 33%, rgba(255, 255, 255, 0.5) 66%, rgba(237, 41, 57, 0.5) 66%, rgba(237, 41, 57, 0.5) 100%);
    background-position: 0 100%;
}

.screen0 .btn.btn-outline-default:hover::after,
.screen0 .btn.btn-outline-default:focus::after,
.screen0 .btn.btn-outline-default:active::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 200%;
    width: 200%;
    height: 200%;
    background: rgba(230, 230, 230, 0.15);
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 100;
    animation: shine 1s 1;
    filter: blur(10px);
}

.screen0 .btn.btn.btn-outline-default:hover {
    box-shadow: 0px 0 15px 0px rgba(255, 255, 255, 0.8);
}

@keyframes shine {
    0% {
        left: -200%;
    }

    100% {
        left: 200%;
    }
}

.screen0 .btn.btn-outline-default {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: solid #fff 3px;
}

/** Screen0 **/

.parallax .screen0-left {
    left: 8%;
    top: 50%;
    color: #fff;
    position: absolute;
    transform: translateY(-50%);
    text-shadow: 1px 1px 0px #0003, -1px -1px 0px #0001, 1px -1px 0px #0001, -1px 1px 0px #0001, 0px 1px 0px #0001, 0px -1px 0px #0001, 1px 0px 0px #0001, -1px 0px 0px #0001, 0 0 100px #000D;
    font-weight: 500;
}

.parallax .scroll-btn {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    width: 70px;
}

.screen0-new>div.full-width.screen {
    background-position-x: 70%;
    background-image: url('https://static.onlc.eu/lmpartsNDD/17473074211.webp');
}

.screen0-new a.scroll-btn>img {
    width: 100%;
}

.screens {
    min-height: calc(100vh - var(--navbar-height));
    padding-top: 8%;
    padding-bottom: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/** Screen1 **/
.screen1 {}

@media (min-width: 991px) {
    .row.flex-row {
        display: flex;
        align-items: stretch;
    }

    .row.flex-row>.col-lg-6 {
        flex: 1;
    }
}

/** Screen2 **/
/** Animation **/
.keyring-animation-webp {
    aspect-ratio: 1;
    width: 100%;
    max-width: 945px;
    height: auto;
    background-image: url('https://static.onlc.eu/lmpartsNDD/176121269183.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: keyring-animation 3s infinite;
}

/** Screen3 **/
.screen3,
.images-show img {
    height: calc(80vh - var(--navbar-height));
}

.screen3-new,
.screen3-new .images-show img {
    height: calc(90vw - var(--navbar-height));
    max-height: calc(80vh - var(--navbar-height));
}

.france-map {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
}

/** Screen 4 **/

.screen4 .central-block {
    max-width: 1240px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    border-radius: 1px;
    padding: 15px;
}

.screen4-new .central-block {
    max-width: 1240px;
}

@media (max-width: 480px) {
    body .screen4.screens {
        padding-top: 0;
        padding-bottom: 0;
    }

    body .screen4.screens .central-block {
        padding-top: 10%;
        padding-bottom: 10%;
    }
}

@media (max-width: 767px) {
    body .screen4-new.screens {
        padding-top: 0;
        padding-bottom: 0;
    }

    body .screen4-new.screens .central-block {
        padding-top: 10%;
        padding-bottom: 10%;
    }
}

@media (min-width: 991px) {
    .screen4 .central-block {
        width: 70%;
        padding: 3rem;
    }

    .screen4-new .central-block {
        width: 70%;
        padding: 3rem;
    }
}

@media (min-width: 479px) {
    .screen4 {
        background-image: url(https://static.onlc.eu/lmpartsNDD/170988676414.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .screen4 .central-block {
        width: 90%;
        padding: 1rem;
    }
}

@media (min-width: 768px) {

    .screen4-new {
        background-image: url(https://static.onlc.eu/lmpartsNDD/174731328987.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .screen4-new .central-block {
        width: 90%;
        padding: 1rem;
        max-width: 1240px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(18px);
        border-radius: 1px;
    }
}

/** Screen 5 **/
.screen5-new {
    display: block;
    width: 100%;
    max-width: 100vw;
    align-items: stretch;
    padding: 0;
}

@media(max-width: 990px) {
    .screen5-new>.team {
        overflow: hidden
    }

    .screen5-new>.team>img {
        transform: scale(2) translateY(20%);
    }
}

@media(min-width: 991px) {
    .screen5-new {
        display: flex;
    }
}

.screen5-new .screen5-half {
    flex: 1;
    object-fit: cover;
    object-position: 50% 20%;
    max-height: calc(100vh - var(--navbar-height));
    width: 100%;
    height: 100%;
}

/** Screen 6 **/
.screen6 .product-icon {
    cursor: pointer;
}

.screen6 #products-grid .products-thumbs-grid {
    display: grid;
    gap: 0rem;
    padding: 0rem;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    margin: auto;
    align-items: top;
}

.screen6 #products-grid .products-thumbs-grid .product-item a {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: black;
    border-radius: 1px;
    border: 3px transparent solid;
    padding: 1rem;
}

.screen6 #products-grid .products-thumbs-grid .product-item a:hover,
.screen6 #products-grid .products-thumbs-grid .product-item a:focus,
.screen6 #products-grid .products-thumbs-grid .product-item a:active,
.screen6 #products-grid .products-thumbs-grid .product-item a.active {
    border-color: #363333;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .screen6 #products-grid .products-thumbs-grid .product-item a.fake-active {
        border-color: #363333;
        text-decoration: none;
    }
}

.screen6 #products-grid .products-thumbs-grid .product-item a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.8;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0.5rem;
}

.screen6 #products-grid .products-thumbs-grid .product-item .product-item-details {
    height: 0px;
    display: none;
}

.screen6 .product-thumbs-list {
    display: grid;
    gap: 0rem;
    padding: 0rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
}

.screen6 .product-item-tiny-image {
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    height: 80px;
    width: 100%;
}

.screen6 .product-item-image {
    height: calc(70vh - 510px);
    min-height: 250px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    margin: 35px auto;
}

@keyframes open-details {
    0% {
        height: 0vh;
        opacity: 0;
        overflow: hidden;
        min-height: 0;
    }

    100% {
        height: 70vh;
        opacity: 1;
        overflow: visible;
        min-height: 700px;
    }
}

.screen6 #product-details {
    display: none;
}

@media (max-width: 1199px) {
    .screen6 #products-grid .products-thumbs-grid .product-item a.active+.product-item-details {
        display: block;
        height: 70vh;
        min-height: 700px;
        animation: open-details 0.5s ease-in-out;
        margin-bottom: 30px;
        overflow: visible;
    }

    .screen6 #products-grid .product-item-details>div {
        position: absolute;
        left: 0px;
        right: 0px;
        margin: 15px;
        height: 70vh;
        min-height: 700px;
        animation: open-details 0.5s ease-in-out;
        overflow: visible;
        border-bottom: 1px solid #dedefa;
        padding-bottom: 45px;
    }
}

@media (min-width: 1200px) {
    .screen6 #product-details {
        display: block;
        border-left: 1px solid #dedefa;
        padding-left: 45px;
    }
}

@media (min-width: 1200px) and (min-height: 768px) {
    .screen6 #product-details {
        position: sticky;
        top: 120px;
    }
}

/** Screen 7 Footer **/
.screen7 {
    flex-direction: column;
}

.screen7-new {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    align-content: stretch;
    justify-items: stretch;
}

.screen7 .credits {
    padding: 1rem;
}

.screen7-new .credits {
    width: auto;
    max-width: none;
    flex: 1;
}

@media (min-width: 991px) {
    .screen7 .credits {
        width: 70%;
        max-width: 1240px;
        padding: 3rem;
    }
}

.screen7 .footer {
    width: 100%;
}

.payment-method-icon {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 0.60em;
    display: inline-block;
    border: 0px solid;
    border-radius: 3px;
    background-color: currentColor;
    vertical-align: 1em;
    padding: 0.33em 0.2em 0.5em 0.2em;
}

/** Loader **/

.transition-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: #363333;
    z-index: 3000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    color: #fff;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
    color: #FFF;
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@keyframes bblFadInOut {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em
    }

    40% {
        box-shadow: 0 2.5em 0 0
    }
}

/** TAC French Gvt design system inspired 
https://github.com/GouvernementFR/dsfr-theme-tarteaucitron
**/
/**
Styles généraux
**/

:root {
    --bf500: #363333;
    --w-bf500: #fff;
    --t-plain: transparent;
    --text: #363333;
    --g800: #1e1e1e;
    --g700: #383838;
    --g600: #6a6a6a;
    --g400: #cecece;
    --g300: #e7e7e7;
    --g200: #f0f0f0;
    --w: #fff;
    --g100-g800: #f8f8f8;
    --focus: #363333;
    --rm500: #e1000f;
    --overlay: rgba(20, 12, 12, 0.32);
    --focus-z-index: 2000;
    --validate: #068854;
}

@font-face {
    font-family: "dsfr-tac-icons";
    src: url("data:font/truetype;charset=utf-8;base64,d09GRgABAAAAAASYAAsAAAAABtgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAQwAAAFY4wUKAY21hcAAAAYgAAABVAAABjOEvI+NnbHlmAAAB4AAAALEAAAC8RwSAoGhlYWQAAAKUAAAAMAAAADYcco6VaGhlYQAAAsQAAAAeAAAAJAgEA+1obXR4AAAC5AAAAA8AAAAQDhAAAGxvY2EAAAL0AAAACgAAAAoAcgAubWF4cAAAAwAAAAAeAAAAIAEQAChuYW1lAAADIAAAATEAAAIuRB1J2XBvc3QAAARUAAAAQwAAAF18Wox+eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRuYZzAwMrAwPST2YOBgWEFhGZyYLBiNAXSDKzMDFhBQJprCoPDA4YHTMwv/lsw5DC/YDgBFGYEyQEA8HwMsgB4nO2QsQ2AQAwDL59AgZiDipJJqBifTR4n/2Ng6SzZilIYWAAXpwiwByN1q7Xqna364KibyP5tvctJV47ylp9s5ddefs3kudSgtptoL+04wD9smw0NAAAAeJxjYGQAAuZpTL4MrAwMjObinIzmTBE/XP8d/nfIjTHsu/u/Q4x27kAlEHXTmc4xcIPVsYuzq7Orm6uDVX/74fbzu9u3726M1364/QCygPwfbgxMDAz/z7FIMQcxCDFIA3WJKgsqmhoLirApKyqpmQqamBmrCiqbMqozAokvv5jUUmRF/5aJysqKMgel/KtyY2x7xrQn5e+tX/+ugASZukRlp/0reAaWSQG6BgBlHzlCAAAAeJxjYGRgYADiImfHBfH8Nl8ZuFk2AEUY7sxZ8gRB/z/HIsUcBORyMDCBRAFWOQxBeJxjYGRgYH7x34KBgWUDAxCwSDEwMqACFgBU5AL7AAB4nGNgYGBg2YDAAA7gAh0AAAAAAAAUAC4AXgAAeJxjYGRgYGBhkGFgYgABEMkFhAwM/8F8BgALoAE5AAB4nG2RPU7DMBiG3/QP0UoIBGJh8QILavozdmRo9w7d08RJUyVx5LgVvQMn4BAcgoEzcAgOwVvzSZVQbcl+vsfvFysJgGt8IcBxBOj79ThauGD1x23SjXCH/CDcxQCPwj36sXAfz5gJD3ALzScEnUuaO7wKt3CFN+E2/btwh/wh3MU9PoV79N/CfazwIzzAU/CSNKkd5rGpmqXOdkVkT+JEK22b3FRqEo5PcqErbSOnE7U+qGafTZ1LVWpNqeamcroojKqt2erYhRvn6tlolIoPY1MiQYMUFkPkiGFQsV7yfTPsUCDiybnEObdil+We+1phgpDf81xywWTl0xEc94TpNQ5cG+x585TWsUv5ToOSNPe9x3TBaWhqf7alielDbHxXzf824kz/5UN/e/kLsDVkLAAAAHicY2BigAAeBuyAhZGJkZmRhZGVQTCxqCi/XDclvzxPt1g3JzMvlSs5J784FcwUSq0oSS3KS8wB8bLBQgwMANcAEdUA") format("truetype");
}



/*# sourceMappingURL=core.css.map*/

#tarteaucitronRoot {
    box-sizing: border-box;
    color: var(--g700);
    font-family: "Raleway", arial, sans-serif;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#tarteaucitronRoot *,
#tarteaucitronRoot *::before,
#tarteaucitronRoot *::after {
    box-sizing: inherit;
}

#tarteaucitronRoot h1 {
    font-size: 2.75rem;
    line-height: 1.25;
    color: var(--text);
    font-weight: bold;
}

@media (min-width: 48em) {
    #tarteaucitronRoot h1 {
        font-size: 3rem;
    }
}

#tarteaucitronRoot h2 {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--text);
    font-weight: bold;
}

#tarteaucitronRoot h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--text);
    font-weight: bold;
}

#tarteaucitronRoot h4 {
    font-size: 1.375rem;
    line-height: 1.375;
    color: var(--text);
    font-weight: bold;
}

/*** Liens ***/
#tarteaucitronRoot a {
    box-shadow: 0 1px 0 0 currentColor;
    color: inherit;
}

#tarteaucitronRoot a:focus {
    outline: 2px solid;
    outline-color: var(--focus);
    outline-offset: 2px;
    z-index: var(--focus-z-index);
}

#tarteaucitronRoot a {
    text-decoration: none;
}

#tarteaucitronRoot a[target="_blank"]::after {
    content: "";
    font-family: dsfr-tac-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 1rem;
    margin-left: 0.25rem;
    vertical-align: baseline;
}

/*** Boutons ***/
#tarteaucitronRoot button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    border: none;
    cursor: pointer;
}

#tarteaucitronRoot button:focus {
    outline: 2px solid;
    outline-color: var(--focus);
    outline-offset: 2px;
    z-index: var(--focus-z-index);
}

button#tarteaucitronPrivacyUrl {
    position: absolute;
    font-size: 14px;
    background: transparent;
    bottom: 0.5em;
    left: 2.5em;
}

/*** Listes ***/
#tarteaucitronRoot ul,
#tarteaucitronRoot ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*** Overlay ***/
#tarteaucitronBack {
    background-color: var(--overlay);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 1 !important;
    z-index: 2147483646;
}

/*** Positionnements du bouton d'ouverture du gestionnaire ***/
.tarteaucitronIconBottomLeft {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 4000;
}

.tarteaucitronIconBottomRight {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 4000;
}

.tarteaucitronIconTopLeft {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
}

.tarteaucitronIconTopRight {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4000;
}

/*** Affichage de l'icône TAC sous forme de bouton design system ***/
#tarteaucitronIcon #tarteaucitronManager>img {
    display: none;
}

#tarteaucitronIcon #tarteaucitronManager {
    background: var(--bf500);
    color: var(--w);
    padding: 0.5rem 1.5rem;
    line-height: 1.5rem;
    min-height: 2.5rem;
    font-size: inherit;
}

#tarteaucitronIcon #tarteaucitronManager::before {
    content: "Cookies";
}

/*---------------------------------------------*/

/**
Styles du bandeau (#tarteaucitronAlertBig) et des éléments du bandeau 
**/

/*** Bandeau ***/
div#tarteaucitronRoot.tarteaucitronBeforeVisible:before {
    opacity: 1 !important;
    background-color: var(--overlay) !important;
}

div#tarteaucitronAlertBig:before {
    content: none !important;
}

body #tarteaucitronRoot div#tarteaucitronAlertBig {
    border-radius: 0 !important;
    bottom: auto;
}

.tarteaucitronBeforeVisible #tarteaucitronAlertBig {
    display: block !important;
    text-align: center;
    outline: 0;
}

#tarteaucitronAlertBig {
    position: fixed;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: var(--g700);
    background: var(--g200);
    box-shadow: inset 0 0 0 1px var(--g400);
    z-index: 2147483645;
    max-height: 73vh;
    overflow-y: scroll;
    background:
        linear-gradient(#f0f0f0 33%, rgba(240, 240, 240, 0)),
        linear-gradient(rgba(240, 240, 240, 0), #f0f0f0 66%) 0 100%,
        radial-gradient(farthest-side at 50% 0, rgba(34, 34, 34, 0.5), rgba(0, 0, 0, 0)),
        radial-gradient(farthest-side at 50% 100%, rgba(34, 34, 34, 0.5), rgba(0, 0, 0, 0)) 0 100%;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-attachment: local, local, scroll, scroll;
    background-size: 100% 18px, 100% 18px, 100% 6px, 100% 10px;
}

html body #tarteaucitronRoot div#tarteaucitronAlertBig {
    min-width: 300px;
    padding: 35px 15px;
}

/* Bandeau >= 768px */
@media screen and (min-width: 48em) {
    body #tarteaucitronRoot #tarteaucitronAlertBig {
        width: 40rem !important;
        bottom: 50% !important;
        left: 50% !important;
        padding: 2rem !important;
        margin: auto;
        top: auto !important;
        transform: translate(-50%, 50%) !important;
        box-shadow: inset 0 0 0 1px var(--g400) !important;
        border-radius: 0 !important;
    }
}


/*** Texte du bandeau ***/
body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
    font-size: 16px;
}

body #tarteaucitronRoot #tarteaucitronAlertBig button#tarteaucitronPrivacyUrl {
    display: none !important;
}

@media screen and (min-width: 48em) {
    body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
        font-size: 21px;
    }
}

#tarteaucitronDisclaimerAlert {
    margin-bottom: 2rem;
}


@media screen and (min-width: 48em) {
    #tarteaucitronAlertBig {
        max-height: initial;
        height: auto;
        padding-right: 0;
        overflow: initial;
    }
}

/*** Surcharge des margin bottom trop importantes du design system ***/
#tarteaucitronDisclaimerAlert>p {
    margin-bottom: 1rem;
}

#tarteaucitronDisclaimerAlert>p:last-child {
    margin-bottom: 0;
}

/*** Bouton fermer le bandeau optionnel (closePopup) ***/
#tarteaucitronRoot #tarteaucitronCloseCross::first-letter {
    color: transparent;
}

#tarteaucitronRoot #tarteaucitronCloseCross {
    position: relative;
    background-color: var(--t-plain);
    color: var(--bf500);
    padding: .25rem .75rem;
    display: block;
    line-height: 1.5rem;
    min-height: 2rem;
    font-size: .875rem;
    width: 5rem;
    margin-bottom: .5rem;
}

#tarteaucitronRoot #tarteaucitronCloseCross:before {
    content: "Fermer";
    position: absolute;
    left: .75rem;
}

#tarteaucitronRoot #tarteaucitronCloseCross:after {
    font-family: dsfr-tac-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "";
    font-size: 1rem;
    height: 1rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/*** Boutons d'action du bandeau ***/
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton,
#tarteaucitronRoot #tarteaucitronSaveButton {
    font-size: inherit;
    cursor: pointer;
    background: var(--bf500);
    color: var(--w);
    padding: 0.5rem 1.5rem;
    line-height: 1.5rem;
    min-height: 2.5rem;
    width: 100%;
    margin: .5rem 0;
    width: auto;
}

#tarteaucitronRoot #tarteaucitronSaveButton::after,
#tarteaucitronRoot #tarteaucitronSaveButton::before {
    content: none;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2.tarteaucitronCTAButton.tarteaucitronAllow {
    background: var(--validate);
    display: block;
    margin: .5rem auto !important;
    width: auto;
}

#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton.tarteaucitronDeny,
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert {
    background: transparent;
    font-size: 1rem;
    display: inline-block !important;
    border: none;
    color: var(--text);
    padding: 0 0.5rem;
    width: auto;
    margin: auto;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize {
    margin-right: 0;
}

/*---------------------------------------------*/

/**
Styles du gestionnaire de cookie (#tarteaucitron) et des éléments du gestionnaire 
**/

#tarteaucitron {
    display: none;
    height: 90%;
    padding: 3rem 0 0;
    margin: 0;
    left: 0;
    top: auto !important;
    bottom: 0 !important;
    position: fixed;
    width: 100%;
    z-index: 2147483647;
}

#tarteaucitron::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--w);
    height: calc(3rem + 1px);
    width: 100%;
}

@media screen and (min-width: 48em) {

    #tarteaucitron {
        width: 50rem;
        height: initial;
        max-height: 80%;
        left: 50%;
        top: 0 !important;
        margin: auto auto auto -25rem;
    }

}

/*** Bouton pour fermer le gestionnaire ***/
#tarteaucitronRoot #tarteaucitronClosePanel {
    background: var(--tplain);
    color: var(--bf500);
    padding: .25rem .75rem;
    line-height: 1.5rem;
    min-height: 2rem;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    font-size: .875rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    outline-offset: 0px;
}

#tarteaucitronRoot #tarteaucitronClosePanel::before {
    font-family: dsfr-tac-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "";
    font-size: 1rem;
    margin-right: -0.25rem;
    margin-left: .5rem;
}

/*** Lien vers le site tarte au citron ***/
.tarteaucitronSelfLink>img {
    display: none;
}

.tarteaucitronSelfLink:before {
    content: "Site officiel de Tarte au citron"
}

/*** Surcharge des styles de liste design system ***/
#tarteaucitronServices ul>li::before {
    content: none;
}

#tarteaucitronServices ul>li>ul {
    padding-left: 0;
}

/*** Section générale pour gérer tous les services ***/
#tarteaucitronRoot .tarteaucitronMainLine {
    padding-bottom: 2.5rem;
    box-shadow: inset 0 -1px 0 0 var(--g300);
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronH1 {
    display: block;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--g700);
    margin: 0 0 1rem;
    font-weight: 700;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk {
    flex-direction: column;
    align-items: flex-start;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk::before {
    content: none;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk .tarteaucitronDeny {
    margin-left: 0;
    margin-top: 1.5rem;
}

@media screen and (min-width: 48em) {

    #tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk {
        flex-direction: row;
        align-items: center;
    }

    #tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk::before {
        content: "";
    }

    #tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk .tarteaucitronDeny {
        margin-left: 1.5rem;
        margin-top: 0;
    }

}

/*** Container des services ***/
#tarteaucitronServices {
    background-color: var(--w);
    padding: 1rem 1rem 2rem;
}

@media screen and (min-width: 48em) {

    #tarteaucitronServices {
        padding: 1rem 2rem 2rem;
    }

}

/*** Titre et boutons du conteneur des cookies obligatoires  ***/
#tarteaucitronServicesTitle_mandatory .tarteaucitronH3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    max-width: initial;
}

#tarteaucitronServicesTitle_mandatory .tarteaucitronTitle {
    margin-bottom: 1rem;
}

#tarteaucitronServicesTitle_mandatory .tarteaucitronAsk {
    position: relative;
    top: auto;
    right: auto;
}

/*** Container des textes de service (titre et description) ***/
@media screen and (min-width: 48em) {
    .tarteaucitronName {
        max-width: 60%;
    }
}

/*** Container des boutons Accepter/Refuser ***/
.tarteaucitronAsk {
    display: flex;
    margin-top: 2rem;
}

@media screen and (min-width: 48em) {
    .tarteaucitronAsk {
        justify-content: flex-end;
        align-items: center;
        margin-top: 0 !important;
    }

    .tarteaucitronLine:not(.tarteaucitronMainLine) .tarteaucitronAsk {
        position: absolute;
        top: 0;
        right: 0;
    }
}

/*** Boutons Accepter/Refuser sous forme de boutons radios design system ***/
#tarteaucitronRoot .tarteaucitronAsk .tarteaucitronAllow {
    order: 1;
    margin-right: 1.5rem;
    font-size: 1rem;
}

#tarteaucitronRoot .tarteaucitronAsk .tarteaucitronDeny {
    margin-left: 1.5rem;
    order: 3;
    font-size: 1rem;
}

#tarteaucitronRoot .tarteaucitronAsk::before {
    content: "";
    width: 1px;
    height: 1.5rem;
    order: 2;
    background: var(--g300);
}

#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton),
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton) {
    background: var(--tplain);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0;
}

#tarteaucitronRoot .tarteaucitronAllow:disabled:not(.tarteaucitronCTAButton),
#tarteaucitronRoot .tarteaucitronDeny:disabled:not(.tarteaucitronCTAButton) {
    color: var(--g600-g400);
}

#tarteaucitronRoot .tarteaucitronAllow:disabled:not(.tarteaucitronCTAButton)::before,
#tarteaucitronRoot .tarteaucitronDeny:disabled:not(.tarteaucitronCTAButton)::before {
    background-color: var(--g200);
    border: 1px solid var(--g400);
}

#tarteaucitronRoot .tarteaucitronAllow:disabled:not(.tarteaucitronCTAButton)::after,
#tarteaucitronRoot .tarteaucitronDeny:disabled:not(.tarteaucitronCTAButton)::after {
    content: none;
}


#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronIsSelected::after,
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronIsSelected::after {
    opacity: 1;
}

#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronIsSelected::before,
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronIsSelected::before {
    border: 1px solid var(--bf500);
}

#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton)::before,
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton)::before {
    content: "";
    display: block;
    flex-shrink: 0;
    border: 1px solid var(--g800);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .5rem;
}

#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton)::after,
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton)::after {
    content: "";
    display: block;
    background: var(--bf500);
    border-radius: 50%;
    width: .75rem;
    height: .75rem;
    position: absolute;
    left: .375rem;
    opacity: 0;
}

#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronAllow::after {
    opacity: 1;
}

#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronDeny::after {
    opacity: 1;
}

#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronAllow::after {
    opacity: 1;
}

#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronAsk::before {
    content: none;
}


#tarteaucitronRoot [id^=tarteaucitronServices_] {
    margin-top: 1.5rem;
}

@media screen and (min-width: 48em) {
    #tarteaucitronRoot [id^=tarteaucitronServices_] {
        margin-top: 0;
    }
}

/*** Ajout des bordures dans la liste des services ***/
.tarteaucitronBorder>ul>li {
    padding: 1.5rem 0;
    box-shadow: inset 0 1px 0 0 var(--g300);
}

.tarteaucitronBorder>ul>li:first-child {
    box-shadow: none;
}

/*** Titres des services avec infobulle associée ou non ***/
#tarteaucitronRoot .tarteaucitronTitle>button,
#tarteaucitronRoot .tarteaucitronTitle>.catToggleBtn {
    background: 0;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0;
    text-align: left;
}

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
    color: var(--w);
    background: var(--g700);
    display: none;
    font-size: 0.75rem;
    margin-top: 0;
    max-width: 270px;
    padding: 1rem;
    position: absolute;
    z-index: 2147483647;
}

/*** Style de base des items de liste de service ***/
#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
    display: none;
    position: relative;
}

/*** Titre des sous-services ***/
.tarteaucitronH3 {
    display: block;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

.tarteaucitronH3+span {
    display: block;
}

/*** Ligne d'un sous-service ***/
.tarteaucitronLine {
    position: relative;
}


.tarteaucitronLine {
    margin-bottom: 1rem !important;
}


/*** Surcharge dans le cas des sous-services groupés ***/
ul[style="display: block;"] .tarteaucitronLine {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 48em) {

    .tarteaucitronHidden>ul[style="display: block;"] .tarteaucitronLine:not(:last-child),
    .tarteaucitronHidden>ul:last-child:not([style="display: block;"]) .tarteaucitronLine:not(:last-child) {
        margin-bottom: 0;
    }

}

.tarteaucitronHidden>ul[style="display: block;"] .tarteaucitronLine .tarteaucitronH3,
.tarteaucitronHidden>ul:last-child:not([style="display: block;"]) .tarteaucitronLine .tarteaucitronH3 {
    margin-bottom: .5rem;
    font-size: 1rem;
}

.tarteaucitronHidden>ul:last-child:not([style="display: block;"]) .tarteaucitronLine:first-child {
    margin-top: 1.5rem;
}

@media screen and (min-width: 48em) {

    .tarteaucitronHidden>ul[style="display: block;"] .tarteaucitronLine {
        display: flex;
    }

}



@media screen and (min-width: 48em) {
    .tarteaucitronHidden>ul[style="display: block;"] .tarteaucitronAsk {
        margin-top: 0;
        margin-right: 0;
        margin-left: auto;
    }
}

.tarteaucitronHidden>ul[style="display: block;"] .tarteaucitronLine:not(.tarteaucitronMainLine) .tarteaucitronAsk,
.tarteaucitronHidden>ul[style="display: none;"] .tarteaucitronLine:not(.tarteaucitronMainLine) .tarteaucitronAsk {
    position: relative;
    top: auto;
    right: auto;
    align-items: flex-start;
}

/*** Bouton pour déplier les sous-services ***/
#tarteaucitronRoot .tarteaucitron-toggle-group {
    background: none;
    margin: 1.5rem 0 0;
    padding: 0;
    border-bottom: var(--is-link) solid 1px currentColor;
    font-size: inherit;
}

#tarteaucitronRoot .tarteaucitron-toggle-group::after {
    font-family: dsfr-tac-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "";
    font-size: 1rem;
    margin-left: .5rem;
}

/*---------------------------------------------*/

/**
Styles du bouton "AlertSmall" et de la modale avec la liste des cookies
**/

.tarteaucitronAlertSmallBottom {
    display: none;
    padding: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    text-align: center;
    width: auto;
    z-index: 2147483646;
}

.tarteaucitronAlertSmallTop,
.tarteaucitronAlertSmallBottom {
    bottom: 0;
}

#tarteaucitronAlertSmall {
    display: none;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: center;
    width: auto;
    z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManager,
#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
    position: relative;
    font-size: inherit;
    cursor: pointer;
    background: var(--bf500);
    color: var(--w);
    padding: 0.5rem 1.5rem !important;
    line-height: 1.5rem;
    min-height: 2.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
    margin-left: .25rem;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
    position: absolute;
    background-color: gray;
    border-radius: 5px;
    display: block;
    height: 5px;
    overflow: hidden;
    width: calc(100% - 3rem);
    left: 1.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
    display: block;
    float: left;
    height: 100%;
    width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
    background-color: #1B870B;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
    background-color: #FBDA26;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
    background-color: #9C1A1A;
}


#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
    display: none;
    max-height: 50%;
    max-width: 500px;
    position: fixed;
    right: 0;
    width: 100%;
    background: #fff;
    padding-top: 1rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    color: #333;
    font-size: .75rem;
    height: auto;
    overflow: auto;
    text-align: left;
    padding: 0 1.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
    color: var(--text);
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 0;
    padding: 1rem 0;
    text-align: left;
    width: auto;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
    color: var(--text);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
    padding: .5rem 1.5rem;
    text-align: left;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
    color: var(--w);
    font-size: 1rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
    padding: 0 0 .25rem;
    word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:before {
    content: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
    color: var(--text);
    text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
    display: inline-flex;
    width: 50%;
    align-items: center;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
    color: var(--rm500);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
    color: var(--text);
    display: inline-block;
    font-size: .75rem;
    margin-left: 10%;
    vertical-align: top;
    width: 30%;
}

/*** Bouton pour fermer le gestionnaire ***/
#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie {
    background: var(--tplain);
    color: var(--bf500);
    padding: .25rem .75rem;
    line-height: 1.5rem;
    min-height: 2rem;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    font-size: .875rem;
    position: absolute;
    right: 1rem;
    top: 0;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie::before {
    font-family: dsfr-tac-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "";
    font-size: 1rem;
    margin-right: -0.25rem;
    margin-left: .5rem;
}

/*** Bouton pour supprimer les cookies dans la liste ***/
#tarteaucitronRoot .purgeBtn {
    flex-direction: row;
    max-width: 2rem;
    max-height: 2rem;
    padding: 0.25rem .5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    min-height: 2rem;
    background-color: var(--bf500);
    color: var(--w-bf500);
    flex-shrink: 0;
    margin-right: .25rem;
}

#tarteaucitronRoot .purgeBtn::before {
    font-family: dsfr-tac-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "";
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .purgeBtn strong {
    display: none;
}

/*---------------------------------------------*/

/**
Styles du placeholder pour les services (type youtube) désactivés
**/

.tac_activate {
    background: var(--g200);
    display: flex;
    padding: 6rem 0;
    justify-content: center;
    width: 100%;
}

.tac_activate .tac_float {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rf-responsive-vid__player .tac_activate {
    padding: O;
    height: 100%;
}


.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton)::before,
.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton)::after {
    content: none;
}

.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    border: none;
    font-size: inherit;
    cursor: pointer;
    background: var(--bf500);
    color: var(--w);
    padding: 0.5rem 1.5rem;
    line-height: 1.5rem;
    min-height: 2.5rem;
    margin-top: 1.5rem;
}

.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton):focus {
    outline: 2px solid;
    outline-color: var(--focus);
    outline-offset: 2px;
    z-index: var(--focus-z-index);
}

.tac_visually-hidden {
    visibility: hidden;
}

/** PANIER **/
@media(max-width: 768px) {
    td {
        display: block;
        width: 100%;
    }

    .qty-input {
        display: inline-block;
        width: calc(100% - 70px);
        margin-left: 15px;
    }

    .table>thead>tr>th:not(:first-child) {
        display: none;
    }

    .table>tbody tr td:last-child {
        border-bottom: 2px solid #ddd;
    }
}

.coupon details summary {
    font-size: 14px;
    font-weight: normal !important;
}

.coupon details {
    margin-bottom: 1em;
    padding: calc(0.5em - 3.5px) 1em;
    border: 1px solid #ccc;
    border-radius: 0.5em
}

.coupon summary:before {
    content: "J'ai un ";
}

.coupon-container {
    width: 100%;
    text-align: right;
}

.validate-buttons {
    width: 100%;
}

.input-group.coupon {
    display: inline-block;
}

/** animation marques accueil **/
.alternate-brands-container {
    position: relative;
}

.alternate-brands {
    margin-left: 0.3em;
}

.alternate-brands-1 {
    opacity: 0;
    animation: alternate-brands;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.alternate-brands-2 {
    opacity: 0;
    animation: alternate-brands;
    animation-delay: 1s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.alternate-brands-3 {
    opacity: 0;
    animation: alternate-brands;
    animation-delay: 2s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    position: absolute;
    top: 0;
    left: 0;
}

/** Language button **/
@media(min-width: 768px) {
    .change-lang-button>a {
        background: #fff;
        border-radius: 10px;
        margin-left: 20px;
    }
}

/** FAQ **/
.payment-icon {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
}

.swiper-reviews {
    max-width: 100vw;
}

/** Language menu **/
.navbar-transparent .navbar-nav .open .dropdown-menu.language-menu {
    border: 1px solid #555;
    background: #222;
    padding: 5px 0 5px 0;
    position: absolute;
}

.langue-flag {
    width: 1em;
    vertical-align: baseline;
    margin-right: 0.5em;
}


@keyframes alternate-brands {

    0%,
    50%,
    100% {
        opacity: 0;
        display: none;
        width: 0;
        overflow: hidden;
    }

    5%,
    45% {
        opacity: 0;
        display: inline;
        width: 0;
        overflow: hidden;
    }

    6%,
    44% {
        opacity: 0;
        display: inline;
        width: auto;
        overflow: hidden;
    }

    20%,
    38% {
        opacity: 1;
        display: inline;
        width: auto;
        overflow: visible;
    }
}