/*Fonts*/

/* montserrat-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../webfonts/montserrat-v26-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('../webfonts/montserrat-v26-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../webfonts/montserrat-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../webfonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*==============================================================================================================*/

/* Variables */
:root {
    --main-color: #009FE3;
    --main-color-header: white;
    --main-text: black;
}

/*============================================================================================================*/

/* CSS général */
*:not(td) {
    position: relative;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html,
body {
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
  }

/* Permet de garder l'inertie lors d'un scroll sur un mobile */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    font-family: 'Montserrat', Arial, Verdana, Tahoma, sans-serif;
    font-size: 17px;
    color: #000;
    font-weight: 400
}

/* code qui permet de mettre des ancres avec le header */
img {
    border: none
}

/* Permet de centrer les images */
.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hide {
    display: none !important;
}

textarea {
    overflow: auto;
    font-family: 'Montserrat', Arial, Verdana, Tahoma;
}

svg {
    display: block;
}

#fancybox-overlay,
#fancybox-wrap,
#fancybox-outer,
#fancybox-outer div {
    box-sizing: content-box
}

a {
    outline: none;
    text-decoration: none;
    color: var(--main-text);
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    font-weight: 600;
}

a:hover {
    color: var(--main-color);
}

.err {
    color: #721c24 !important;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px !important;
    font-size: 12px !important;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.ok {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px !important;
    font-size: 14px !important;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Questrial', sans-serif;
}

.mobile {
    display: none !important;
}

.ico_mobile {
    display: none;
}

.body-pusher {
    min-height: 100vh;
}

.Content,
.texte-content {
    width: 1250px !important;
    margin: auto;
}

select {
    -webkit-appearance: none;
    width: 100%;
    border: solid 1px lightgray;
    padding: 10px;
    margin-bottom: 10px;
}

.select_wrapper {
    width: 100%;
}

.select_wrapper::after {
    content: '';
    background-image: url(../images/fleche_select.png);
    background-position: 95% center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 13px;
    position: absolute;
    top: 30%;
    right: 5%;
    transition: ease all 0.3s;
    pointer-events: none;
}

.select_wrapper.selectionne::after {
    transform: scaleY(-1);
}

h1,
.h1 {
    font-size: 30px;
    font-weight: 600;
    color: black;
}

h2,
.h2 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
    background-color: white;
    color: var(--main-color);
    z-index: 10;
    padding-right: 10px;
}

.traitTitre {
    margin-bottom: 20px;
}


.traitTitre::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    bottom: 8px;
    border-radius: 15px;
}

h3,
.h3 {
    font-size: 20px;
    font-weight: 600;
    color: black;
}

ul li, ol li {
    list-style-position: inside;
}

strong {
    font-weight: 600 !important;
}

table {
    border-collapse: unset !important;
    border: none !important;
}

table[cellspacing="0"] {
    border-collapse: collapse !important;
}

/*============================================================================================================*/

/* Bouton par défaut */
.button {
    background: var(--main-color);
    display: block;
    width: fit-content;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    text-decoration: none;
    border: solid 1px var(--main-color);
    color: white;
}

.button:hover {
    background: none;
    color: var(--main-color);
}

.tiny-button-transparent {
    background: white;
    display: flex;
    width: fit-content;
    padding: 8px 14px;
    font-weight: 600 !important;
    cursor: pointer;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    text-decoration: none;
    border: solid 1px black;
    color: black;
    align-items: center;
    column-gap: 15px;
    justify-content: flex-start;
    border-radius: 27px;
    min-width: 200px;
}

a.tiny-button-transparent:hover {
    border-color: var(--main-color);
    color: var(--main-color) !important;
}


.tiny-button-bleu {
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
    padding: 7px 20px;
    border-radius: 19px;
    box-shadow: 0px 5px 4px grey;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    transition: 0.3s ease all;
    font-weight: 500;
    font-size: 15px;
    width: fit-content;
    margin: 0 auto;
}

.tiny-button-bleu:hover {
    background-color: #007fb6;
    color: white;
}

/*============================================================================================================*/

/* Class flex */
.flexParent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.flexHalf {
    display: flex;
    flex: 1 1 49%;
    max-width: 50%;
}

.flexThird {
    display: flex;
    flex: 1 1 32%;
    max-width: 31%;
}

.flexTwoThirds {
    display: flex;
    flex: 0 0 65%;
    max-width: 65%;
}

.flexQuarter {
    display: flex;
    flex: 1 1 24%;
    max-width: 24%;
}

.flexRight {
    justify-content: flex-end;
}

.flexCenter {
    justify-content: center;
}

.flexLeft {
    justify-content: flex-start;
}

.flexColumn {
    flex-direction: column !important;
}

.flexStart {
    align-items: flex-start;
}

.flexEnd {
    align-items: flex-end;
}

.flexStretch {
    align-items: stretch;
}

.flexWrap {
    flex-wrap: wrap;
}

.flexBetween {
    justify-content: space-between;
}

.flexAround {
    justify-content: space-around;
}

.flexVCenter {
    align-items: center !important;
}

/*============================================================================================================*/

/* Class gap */
.gap_5 {
    column-gap: 5px;
    row-gap: 5px;
}

.gap_10 {
    column-gap: 10px;
    row-gap: 10px;
}

.gap_15 {
    column-gap: 15px;
    row-gap: 15px;
}

.gap_20 {
    column-gap: 20px;
    row-gap: 20px;
}

.gap_30 {
    column-gap: 30px;
    row-gap: 30px;
}

.gap_40 {
    column-gap: 40px;
    row-gap: 40px;
}

.gap_50 {
    column-gap: 50px;
    row-gap: 50px;
}

.gap_60 {
    column-gap: 60px;
    row-gap: 60px;
}

.gap_70 {
    column-gap: 70px;
    row-gap: 70px;
}

.gap_80 {
    column-gap: 80px;
    row-gap: 80px;
}

.gap_90 {
    column-gap: 90px;
    row-gap: 90px;
}

.gap_100 {
    column-gap: 100px;
    row-gap: 100px;
}

/*============================================================================================================*/

/* Variable positionnement */
.wp_10 {
    width: 10%;
}

.wp_20 {
    width: 20%;
}

.wp_30 {
    width: 30%;
}

.wp_32 {
    width: 32%;
}

.wp_40 {
    width: 40%;
}

.wp_50 {
    width: 50%;
}

.wp_60 {
    width: 60%;
}

.wp_70 {
    width: 70%;
}

.wp_80 {
    width: 80%;
}

.wp_90 {
    width: 90%;
}

.wp_100 {
    width: 100%;
}

.mb_10 {
    margin-bottom: 10px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mb_30 {
    margin-bottom: 30px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_50 {
    margin-bottom: 50px;
}

.ml_10 {
    margin-left: 10px;
}

.ml_20 {
    margin-left: 20px;
}

.ml_30 {
    margin-left: 30px;
}

.ml_40 {
    margin-left: 40px;
}

.ml_50 {
    margin-left: 50px;
}

.mr_10 {
    margin-right: 10px;
}

.mr_20 {
    margin-right: 20px;
}

.mr_30 {
    margin-right: 30px;
}

.mr_40 {
    margin-right: 40px;
}

.mr_50 {
    margin-right: 50px;
}

.mt_10 {
    margin-top: 10px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_30 {
    margin-top: 30px;
}

.mt_40 {
    margin-top: 40px;
}

.mt_50 {
    margin-top: 50px;
}

/*============================================================================================================*/

/* HEADER */
#Header {
    z-index: 40;
    position: fixed;
    width: 100%;
    background-color: var(--main-color-header);
    height: 150px;
    display: flex;
    box-shadow: 0px 2px 10px grey;
}

#Header > div {
    margin-top: 0;
    position: unset;
    height: 100%;
}

#HeaderMenu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 0;
    margin: 0px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
    position: unset;
    width: 100%;
}

#HeaderMenu ul.Content{
    margin: auto !important;
} 

#HeaderMenu ul li {
    display: flex;
    box-sizing: border-box;
    padding: 5px;
    padding-left: 0;
    position: unset;
}

#HeaderMenu ul li a,
#HeaderMenu ul li .spanMenu {
    margin: auto 10px;
    line-height: 46px;
    font-weight: 500;
    color: var(--main-text);
    background: linear-gradient(to left, var(--main-color), var(--main-color)) no-repeat bottom center;
    background-size: 0% 2px;
    transition: 0.25s;
    font-size: 17px;
    text-decoration: none;
    margin-left: 0;
    cursor: pointer;
}

#HeaderMenu ul li>a:hover,
#HeaderMenu ul li.selected > a,
#HeaderMenu ul li .spanMenu:hover,
#HeaderMenu ul li.selected .spanMenu {
    background-size: 100% 2px;
    color: var(--main-color);
}

#Header ul li.selected>a,
#Header ul li.selected .spanMenu {
    color: var(--main-color);
}

#Header .MenuBouton ul li.selected>a{
    color: white !important;
    background-color: #007fb6;
}

#HeaderBackground {
    width: 100%;
    position: absolute;
    top: 0px;
    display: flex;
    height: 100%;
    opacity: 0.5;
    background-color: #200f20;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#InfoHeader {
    display: flex;
    left: 0px;
    top: 0px;
    height: 100%;
    margin-top: 20px;
}

#HeaderMenu .not_mobile li div.SSMenu {
    position: absolute;
    top: 142px;
    max-height: 0px;
    height: auto;
    left: 0;
    overflow: hidden;
    background-color: white;
    width: 100%;
    margin-top: 8px;
}

#InfoHeader #Logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#InfoHeader #Logo img{
    width: auto;
    height: 64px;
}

#HeaderMenu .not_mobile li .SSMenu ul {
    background-color: var(--main-color-header);
    height: 100%;
    margin-top: 3px;
    padding: 0;
    padding-top: 15px;
    justify-content: center;
    align-items: flex-start;
}

#HeaderMenu li div.SSMenu{
    transition: all ease 0.3s;
}

#HeaderMenu li div.SSMenu.active {
    max-height: 800px !important;
    box-shadow: 0px 9px 20px  -12px grey;
    transition: all ease 0.3s;
}

#HeaderMenu .not_mobile li div.SSMenu li a:hover {
    color: var(--main-color);
}

#HeaderMenu,
#HeaderMenu>div.not_mobile {
    height: 58px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    position: unset;
    width: 100%;
}

.HeaderTop{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
}

.HeaderOther{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
}

.MenuPage ul {
    background-color: #F9F8F8;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    box-shadow: 0px 2px 10px grey;
    padding: 0 15px;
}

.MenuPage ul li{
    list-style: none;
    padding: 10px 25px;
}

.MenuPage ul li a{
    text-decoration: none;
    color: var(--main-text);
    font-size: 14px;
    font-weight: 400;
}

.MenuPage ul li a:hover{
    color: var(--main-color);
}

.HeaderMenuBouton {
    width: 100%;
}

.MenuBouton ul, .MenuBouton {
    column-gap: 30px;
}

.MenuBouton ul li{
    list-style: none;
    display: flex;
}

.MenuBouton ul li a{
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
    padding: 7px 20px;
    border-radius: 19px;
    box-shadow: 0px 5px 4px grey;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    transition: 0.3s ease all;
    font-weight: 500;
    font-size: 15px;
}

.MenuBouton ul li a:hover{
   background-color: #007fb6;
   transition: 0.3s ease all;
}

/*Sous menu de niveau 2*/
#HeaderMenu ul li.liFamille2 {
    justify-content: center;
    align-items: baseline;
    width: 25%;
}

.liFamille2 > a {
    text-transform: uppercase;
    font-weight: 700 !important;
    background: none !important;
    line-height: 25px !important;
}

/*Sous menu de niveau 3*/

.liFamille3 > a {
    text-transform: none;
    font-weight: 500 !important;
    font-size: 15px !important;
    background: none !important;
    line-height: 25px !important;
}

#HeaderMenu .not_mobile li .SSMenu ul{
    margin-top: 0;
    padding: 0;
    justify-content: space-between;
    align-items: flex-start;
}

/*Barre de recherche */
input#recherche {
    box-shadow: 0px 5px 4px grey;
    border-radius: 30px;
    border: 0;
    padding: 7px 15px;
    padding-right: 30px;
    margin: 0;
}

a.btnSetRecherche {
    position: absolute;
    right: 13px;
    background-color: white;
}

input#recherche::placeholder, input#recherche {
    font-size: 15px;

}

/* Bouton de Langue */
.menuLangue {
    height: 30px;
    width: 75px;
    display: inline-block;
    z-index: 200;
    vertical-align: middle;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: auto;
    transition: all ease 0.3s;
}

.menuLangue .lien.selected,
.menuLangue .lien:hover {
    opacity: 1;
}

.menuLangue .lien {
    height: 30px;
    opacity: 0.8;
    transition: 0.3s;
    margin-bottom: 5px;
}

.menuLangue .lien a {
    display: block;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    box-sizing: border-box;
    text-align: right;
}

.menuLangue .lien img {
    max-height: 100%;
    border-radius: 25px;
    user-select: none;
    width: 30px;
    height: 30px;
}

.menuLangue .fa-angle-down:before {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 15px;
    height: 15px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all ease 0.3s;
    color: #fff;
}

.menuLangue.ouvert .fa-angle-down:before {
    transform: rotate(180deg) translateY(50%);
}

.menuLangue.ouvert {
    overflow: visible;
}

.menuLangue .lien:not(.selected) {
    display: none;
}

.menuLangue.ouvert .lien:not(.selected) {
    margin-bottom: 0px;
    display: block;
}

/*============================================================================================================*/

/* Bandeau de page */
.bandeau-page {
    height:75px;
    margin-bottom: 20px;
}

.bandeau-page img {
    width: 100%;
    display: block;
}

.bandeau-titre {
    position: absolute;
    bottom: 10%;
    width: 100%;
    height: 100%;
}

.bandeau-titre .titrePage {
    width: auto;
    position: relative;
    z-index: 1;
    margin: 10px auto;
}

.bandeau-titre .titrePage::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    bottom: 15px;
    border-radius: 15px;
}

/*.bandeau-titre*/ .lienBandeau{
    position: absolute;
    top: -18px;
    right: 0;
    width: 75px;
    height: 70px;
    background-color: var(--main-color);
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    z-index: 10;
    box-shadow: 0px 5px 10px -2px grey;
}

/*.bandeau-titre*/ .lienBandeau::before {
    content: '';
    background: url(https://lebureaufrancais-test.imadev.dev/photos_site/telephone-1715955163.svg);
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 75px;
    height: 70px;
}

.bandeau-titre .titrePage h1, .bandeau-titre .titrePage .h1{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
    background-color: white;
    color: var(--main-color);
    z-index: 10;
    padding-right: 10px;
    margin-right: 55px;
}

/*============================================================================================================*/

/* Boutons flottants */
.BarreInfoDroite {
    position: fixed;
    right: 0;
    top: 300px;
    width: 60px;
    z-index: 9999;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.BarreInfoDroite a {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
}

.BarreInfoDroite a .fa {
    color: var(--main-color);
    font-size: 40px;
}

/*=============================================================================================================*/
/*Fil d'ariane*/
#FilAriane{
    margin-top: 150px;
}

#FilAriane > .Content {
    height: 60px;
    display: flex;
    align-items: center;
}

#FilAriane > .Content a,  #FilAriane > .Content li{
    color: var(--main-text);
    text-decoration: none;
    font-size: 15px;
    text-transform: math-auto;
}

#FilAriane > .Content a:hover{
    color: var(--main-color);
}

#FilAriane > .Content li:last-child a:hover{
    text-decoration:none;
}

#FilAriane > .Content li:last-child a{
    color: var(--main-color) !important;
    text-decoration:underline;
    font-weight: 600;
}

#FilAriane > .Content li:not(:first-child):before{
    content: url('../images/fleche_fil_ariane.svg');
    width: 11px;
    height: 11px;
}

/*============================================================================================================*/

/* Bootpag */
.page_navigation, .dataTables_paginate, .dataTables_paginate > span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
}

.page_navigation li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.page_navigation a, .dataTables_paginate .paginate_button {
    font-size: 15px;
    width: 30px;
    height: 30px;
    font-weight: 500;
    color: #858585;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0px 2px;
    cursor: pointer;
    border-right: 1px solid black;
}

.page_navigation a:hover,
.page_navigation li.active a, .dataTables_paginate .paginate_button.current, .dataTables_paginate .paginate_button:hover {
    background: white;
    color: black;
}

.page_navigation li.next {
    margin-left: 15px;
}

.page_navigation li.next a, .page_navigation li.prev a{
    width: fit-content !important;
    border: 0;
    font-weight: 600;
}

.page_navigation li.next a::after{
    content: url(../images/fleche_pag.svg);
    filter: brightness(0) saturate(100%) invert(57%) sepia(3%) saturate(59%) hue-rotate(66deg) brightness(91%) contrast(95%);
    margin-left: 10px;
}

.page_navigation li.prev a::before{
    content: url(../images/fleche_pag.svg);
    filter: brightness(0) saturate(100%) invert(57%) sepia(3%) saturate(59%) hue-rotate(66deg) brightness(91%) contrast(95%);
    margin-right: 10px;
    transform: scale(-1);
}

.page_navigation li.next a:hover::after, .page_navigation li.prev a:hover::before{
    filter: none;
}

.pointsAfter::after {
    content: '...';
    display: flex;
    height: 25px;
    padding: 0 10px;
    padding-top: 5px;
}

.pointsBefore::before {
    content: '...';
    display: flex;
    height: 25px;
    padding: 0 10px;
    border-right: 1px solid black;
    padding-top: 5px;
}

.first_link,
.previous_link,
.next_link,
.last_link {
    display: none !important;
}

.page_navigation ul li.active a,
.page_navigation ul li:hover a {
    opacity: 1;
}

.page_navigation ul li.disabled,
.page_navigation ul li.last,
.page_navigation ul li.first {
    display: none;
}

.dataTables_paginate .paginate_button.disabled {
    display: none !important;
}

.dataTables_processing {
    display: none !important;
}

/*============================================================================================================*/

/* Footer */
#Footer {
    background: white;
    overflow: hidden;
}

#Footer .Content {
    padding-top: 50px;
    padding-bottom: 30px;
    color: var(--main-text) !important;
    position: unset;
}

#Footer .Content .titreFooter {
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    font-weight: 600;
}

#Footer .Content a {
    color: var(--main-text);
    text-decoration: none;
    font-weight: 400;
}

#Footer .Content a:hover {
    color: var(--main-color);
}

#Footer table, #Footer table tr, #Footer table tr td{
    border: none;
}

#Footer .articleFooter p > img{
    margin-right: 40px;
}

/*Footer - rond noir / rond bleu*/
#Footer::before {
    content: url('../images/rond_noir.svg');
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    transform: translate(-60%, 45%);
}

#Footer::after {
    content: url('../images/rond_bleu.svg');
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    transform: translate(35%, 25%);
}

#Footer > .flexRow > .articleFooter {
    width: 540px;
    max-width: 100%;
}

.menuFooter li{
    text-align: left;
    list-style: none;
}

.articleFooter .tiny-button-transparent{
    margin: 0 auto;
}

/*Article flottant*/
.articleFlottant {
    position: absolute;
    background-color: var(--main-color);
    right: 1%;
    bottom: 40%;
    z-index: 10;
    color: white;
    font-weight: 500;
}
#Footer .articleFlottant {
    bottom: 200px;
}

.articleFlottant a:hover img{
    filter: brightness(0) saturate(100%) !important;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
}

.articleFlottant table td {
    min-width: 38px;
  }

/*fleche pour remonter au header*/
.flecheUp{
    position: absolute;
    right: 3%;
    top: 33%;
    background-color: white;
    border-radius: 20px;
    width: 35px;
    height: 48px;
    overflow: hidden;
    z-index: 15;
}
#Footer .flecheUp { 
    bottom: 290px;
    top: inherit;
}

.flecheUp a{
    width: 100%;
    height: 100%;
}

.flecheUp a::after {
    content: url(../images/fleche_accueil.svg);
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(3949%) hue-rotate(170deg) brightness(98%) contrast(102%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-39%, -3%) scaleY(-1);
}

/*============================================================================================================*/

/* Formulaires */
.detailErreur {
    position: relative;
    color: red;
    font-size: 11px;
    margin-top: 0px;
    display: block;
    margin-bottom: 10px;
}

.texteRGPD .detailErreur {
    margin-top: 0px;
}

.form1 .invalide input,
.form1 .invalide select,
.form1 .invalide textarea {
    border-color: red;
}

#checkRGPD {
    margin-top: 3px;
    margin-right: 5px;
    float: left;
}

form input:not([type="button"]):not([type="checkbox"]):not([type="radio"]),
form textarea,
form select {
    width: 100%;
    border: solid 1px lightgray;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

form input:not([type="button"]):not([type="checkbox"]):focus-visible,
form textarea:focus-visible {
    border: none;
    border-bottom: solid 2px lightgray;
    outline: none;
    border-radius: 6px;
}

textarea {
    resize: vertical;
    height: 100px;
}

.SubmitForm, .SubmitForm_News {
    display: block;
    padding: 8px 45px 8px 30px;
    margin: 20px auto;
    width: auto;
    border: 1px solid var(--main-color);
    cursor: pointer;
    color: white !important;
    background: var(--main-color);
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 22px;
    font-weight: 600;
}

.SubmitForm:hover, .SubmitForm_News:hover {
    background: white;
    color: var(--main-color) !important;
}

.divSubmit{
    width: fit-content;
    margin: auto;
}

.divSubmit::after,
div.SubmitForm::after,
div.SubmitForm_News::after {
    content: url(../images/submit_btn.svg);
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    right: 25px;
    transform: translateY(-56%);
    pointer-events: none;
}

.divSubmit:hover::after,
div.SubmitForm:hover::after,
div.SubmitForm_News:hover::after {
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(3949%) hue-rotate(170deg) brightness(98%) contrast(102%);
}

.form_newsletter form input:not([type=button]):not([type=checkbox]):not([type=radio]), 
.form_newsletter form select, 
.form_newsletter form textarea {
    width: 652px;
    max-width: 90svw;
}

.form_newsletter .texteRGPD {
    max-width: 652px;
}

.form_newsletter h2 {
    margin-bottom: 15px;
}

.form_newsletter .formRadio {
    max-width: 700px;
    margin-bottom: 15px;
}

.form_newsletter .radioElement {
    width: 340px;
    display: inline-block;
}

.form_newsletter .radioElement label {
    cursor: pointer;
}

.form_newsletter .formRadio .radioElement input {
    margin-left: 25px;
}

.form_newsletter h3 {
    width: 652px;
    margin-bottom: 10px;
    margin-top: 5px;
    max-width: 90svw;
}

.form_newsletter input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    float: left;
    border: 1px solid var(--main-text) !important;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    min-width: 20px;
}

.form_newsletter input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    background: var(--main-text);
    /* margin: 5px; */
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transform: translate(40%, 40%);
}

#Footer .form_newsletter form input:not([type=button]):not([type=checkbox]):not([type=radio]) {
    width: 500px;
    font-size: 15px;
    padding: 6px 10px;
}
#Footer .form_newsletter .texteRGPD {
    max-width: 500px;
    font-size: 11px;
    font-weight: 400;
}
#Footer form .form-has-req-field {
    font-size: 11px;
    font-style: italic;
}
#Footer .form_newsletter h2,
#Footer .articleFooter h2 {
    font-size: 20px;
    margin-bottom: 5px;
    background: transparent;
}
#Footer .SubmitForm,
#Footer .SubmitForm_News {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 30px;
}
#Footer .articleFooter table td:nth-child(1) {
    padding-right: 15px;
}
#Footer .footerBas.flexParent,
#Footer .elMenuFooter {
    align-items: baseline;
}

#Footer .articleFooter .err {
    margin-top: 0;
    margin-bottom: 20px;
}

iframe {
    width: 100%;
    height: 300px;
}

.ContenuForm {
    margin-bottom: 20px;
}

label:first-child {
    display: block;
}

form label:not(:first-child) {
    display: inline-block;
    margin-bottom: 5px;
}

.boutonFile {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

.viderFile {
    display: inline-block;
    margin-right: 5px;
}

/*============================================================================================================*/

/* PARALLAX */
.parallax {
    /* height */
    height: 350px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

.parallax .article-titre {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
}

/*============================================================================================================*/

/* Page actualités */
.pageActualites.err {
    margin-top: 20px;
}

.ul_liste_actu {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.actu-item {
    padding-top: 30px;
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #ced3e4;
}

.actu-item-reverse {
    flex-direction: row-reverse;
}

.actu-item:not(.actu-item-reverse) .actu-txt {
    text-align: end;
}

.actu-item:not(.actu-item-reverse) .actu-txt a {
    margin-left: auto;
}

.actu-img {
    min-width: 470px;
    width: 470px;
    height: 300px;
    overflow: hidden;
    margin-right: 20px;
}

.actu-img a {
    width: 100%;
    height: 100%;
    display: flex;
}

.actu-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.actu-txt h2 {
    margin-bottom: 0px;
    font-weight: 500;
    padding: 0;
}

.titreActu {
    margin-bottom: 20px;
}

.actu-date {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 600 !important;
}

.page-actu-detail .actu-date {
    margin: 10px auto;
}

.actu-txt{
    width: 470px;
    line-height: 1.5em;
    margin-right: 20px;
}

.actu-titre{
    font-weight: 600 !important;
    color: var(--main-color);
    text-transform: uppercase;
    line-height: 1.5em;
}

.actu-txt a{
    width: fit-content;
    margin: 15px 0;
}

.article-img {
    width: 550px;
    height: 350px;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/*============================================================================================================*/

/* Page cookies */
.PageCookies a {
    word-break: break-all;
}

/*============================================================================================================*/

/* Page d'accueil */
.page-accueil {
    padding-top: 150px;
}

/*============================================================================================================*/

/*Erreur panier Boutique (inutile si pas de boutique) */
.erreur-panier {
    color: #721c24 !important;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px !important;
    font-size: 14px !important;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.BoutonValidationPanier.BoutonValiderAchat.voirPanier {
    display: block;
    width: 32%;
    margin-left: auto;
    margin-right: auto;
}

/*============================================================================================================*/

/* Page détail produit */
.page-produit-detail .quantite .qteArticle {
    width: 30px;
    height: 30px;
    text-align: center;
    -moz-appearance: textfield;
    border: 0;
}

.page-produit-detail .quantite .qteArticle::-webkit-inner-spin-button,
.page-produit-detail .quantite .qteArticle::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.page-produit-detail .quantite{
    font-weight: 600;
}

.page-produit-detail .quantite .btn_qte {
    width: 30px;
    height: 30px;
    cursor: pointer;
    user-select: none;
    background-color: var(--main-color);
    color: white;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

.page-produit-detail .quantite .disabled.btn_qte {
    background-color: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.page-produit-detail .quantite .btn_qte:not(.disabled):hover {
    background-color: #007fb6;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

.ajoutPanier{
    margin-right: 0;
    cursor: pointer;
}

.details_panier{
    margin-bottom: 20px;
}

/*============================================================================================================*/

/* Page panier */
.lienPanier {
    display: block;
    width: 30px;
    height: 30px;
}

.lienPanier img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pagePanier .listePaniersContent .panier .modifPanier {
    width: 25px;
    height: 25px;
    background-image: url(../images/picto_modifier.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    right: 45px;
    top: 10px;
    cursor: pointer;
}

.pagePanier .listePaniersContent .panier .deletePanier {
    width: 25px;
    height: 25px;
    background-image: url(../images/picto_supprimer.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

/*=============================================================================================================

/* Page inscription */
.infosMDP {
    position: absolute;
    width: 250px;
    background: rgba(0, 0, 0, 0.8);
    text-align: left !important;
    z-index: 4;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-size: 17px;
    right: -270px;
    top: 50%;
    transform: translateY(-50%);
}

.infosMDP:before {
    position: absolute;
    top: 50%;
    top: calc(50% - 10px);
    top: -webkit-calc(50% - 10px);
    content: "";
    right: 100%;
    border: 10px solid transparent;
    border-right: 10px solid rgba(0, 0, 0, 0.8);
}

.infosMDP li {
    list-style: none;
}

.infosFormMdp {
    left: calc(100% + (-26px));
    top: -79px;
}

.condPassOk {
    color: green !important;
}

.condInputNOk {
    border: 1px solid red !important;
}

.condInputOk {
    border: 1px solid green;
}

/*============================================================================================================*/

/* Page compte */
.lienCompte {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.lienCompte img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pageCompte .ongletsCompte {
    margin-bottom: 20px;
    border-bottom: solid 1px lightgray;
    width: 100%;
}

.pageCompte .ongletsCompte .onglet.disabled {
    background: white;
    color: black;
}

.pageCompte .ongletsCompte .onglet,
.pageCompte .ongletsCompte .onglet:hover {
    padding: 10px 20px;
    cursor: pointer;
    border-top: solid 1px lightgray;
    border-left: solid 1px lightgray;
    border-right: solid 1px lightgray;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--main-color);
    color: white;
    transition: ease all 0.3s;
    user-select: none;
}

.pageCompte .monProfil .titre {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px lightgray;
}

.pageCompte .monProfil .editInfos,
.pageCompte .monProfil .addAdresse {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.pageCompte .monProfil .editInfos img,
.pageCompte .monProfil .addAdresse img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pageCompte .monProfil .listeAdresses .adresse {
    padding: 10px;
    border: solid 1px lightgray;
}

.pageCompte .monProfil .listeAdresses .adresse .titreAdresse {
    margin-bottom: 10px;
    font-weight: 600;
}

.pageCompte .monProfil .listeAdresses .adresse .editAdresse {
    width: 20px;
    height: 20px;
}

.pageCompte .monProfil .listeAdresses .adresse .editAdresse img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pageCompte .deconnexion {
    right: 0px;
    position: absolute;
}

.pageCompte .datatableCommandes table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pageCompte .datatableCommandes td, .pageCompte .datatableCommandes th {
    border-bottom: solid 1px lightgray;
    padding-bottom: 10px;
    padding-top: 5px;
    text-align: center;
}

.pageCompte .datatableCommandes .voirDetail {
    width: 30px;
    height: 30px;
    display: block;
}

.pageCompte .datatableCommandes .voirDetail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*============================================================================================================*/

/* Page livraison */
.pageLivraison .titreAdresses h2 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px lightgray;
}

.pageLivraison .listeAdresses {
    margin-bottom: 20px;
}

.pageLivraison .listeAdresses .adresse {
    padding: 10px;
    border: solid 1px lightgray;
}

.pageLivraison .listeAdresses .adresse .titreAdresse {
    margin-bottom: 10px;
}

.pageLivraison .listeAdresses .adresse .titreAdresse label {
    font-weight: 600;
    cursor: pointer;
}

/*============================================================================================================*/

/* Page récap panier */
.pageRecap .recapPanier .partieGauche {
    width: 49%;
}

.pageRecap .recapPanier .detailPanier {
    border-bottom: solid 1px #e4e7f0;
    margin-bottom: 20px;
}

.pageRecap .recapPanier .detailPanier table {
    width: 100%;
    border-collapse: collapse;
}

.pageRecap .recapPanier .detailPanier td {
    font-size: 18px;
    padding: 20px 0px;
    position: relative;
}

.pageRecap .recapPanier .detailPanier tr.tva {
    border-top: solid 1px #cfd0d2;
}

.pageRecap .recapPanier .detailPanier p {
    text-align: center;
}

.pageRecap .recapPanier .detailPanier .article p:last-child {
    font-style: italic;
}

.pageRecap .recapPanier .detailPanier td:not(:last-child):not(:nth-child(4))::after {
    content: '';
    width: 1px;
    height: 60%;
    background: #cfd0d2;
    position: absolute;
    top: 20%;
    right: 0;
}

.pageRecap .recapPanier .partieDroite {
    width: 45%;
}

.pageRecap .recapPanier .adresseLiv {
    margin-bottom: 20px;
    padding: 10px;
    border: solid 1px lightgray;
}

.pageRecap .recapPanier .adresseFact {
    padding: 10px;
    border: solid 1px lightgray;
}

/*============================================================================================================*/

/* Page paiement */
.pagePaiement .titre {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px lightgray;
}

.pagePaiement .listeModePaiement {
    margin-bottom: 20px;
}

.pagePaiement .modePaiement {
    padding: 10px;
    border: solid 1px lightgray;
}

/*============================================================================================================*/

/* Page détail commande */
.pageDetailCommande .titre {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px lightgray;
    width: 100%;
}

.pageDetailCommande .details .table_wrapper {
    width: 100%;
}

.pageDetailCommande .tableauCommande {
    width: 100%;
    border: none !important;
    margin: auto;
    border-bottom: solid 1px #b5b5b5 !important;
    border-collapse: collapse;
}

.pageDetailCommande .tableauCommande thead,
.pageDetailCommande .tableauCommande td,
.pageDetailCommande .tableauCommande th,
.pageDetailCommande .tableauCommande tr,
.pageDetailCommande .tableauCommande tbody,
.pageDetailCommande .tableauCommande p {
    font-size: 16px;
    color: black;
    border: none !important;
    text-align: left !important;
}

.pageDetailCommande .tableauCommande th {
    border-bottom: solid 1px #b5b5b5 !important;
    padding: 10px 0px !important;
}

.pageDetailCommande .tableauCommande td {
    padding: 5px 0px !important;
}

.pageDetailCommande .tableauCommande tr.totalProduit td {
    border-top: solid 1px #e7e7e7 !important;
}

/**** type article galerie ****/
.type_galerie{
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.type_galerie:not(.type_slider_avis) h2{
    margin-bottom: 20px;
}

.contenu_galerie{
    margin-top: 30px;
    margin-bottom: 20px;
}

.contenu_galerie .slide {
    padding: 0 30px;
}

.contenu_galerie_partenaire{
    max-width: 100%;
}

.slide_galerie_image {
    min-height: 350px;
    max-height: 350px;
    width: 100%;
}

.slide_galerie_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
}

.type_galerie .slick-slide {
    margin-left: 10px ;
    margin-right: 10px;
}

.slick-prev, .slick-next{
    width: 30px !important;
    height: 30px !important;
    background-color: #000 !important;
}

.slick-prev {
    left: -35px !important;
}

.slick-next {
    right: -35px !important;
}

.slick-next:hover{
    background-color: #000;
}

.slick-prev:before {
    content: url(../images/fleche_slider.svg) !important;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.slick-next:before {
    content: url(../images/fleche_slider.svg) !important;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    transform: scaleX(-1);
    left: 0;
}

.slidePartenaire{
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.slidePartenaire .slide-accueil-img {
    height: 60px;
    width: 100%;
    padding: 0 15px;
}

.slidePartenaire img {
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: contain;
}

/**************** Page formulaire ********************/
.page-formulaire .type_texte:first-child{
    margin-top: 0 !important;
}

/**************************************************/

/*type article - texte */
.type_texte{
    margin: 40px auto;
}

.type_texte iframe{
    border-radius: 15px;
}

.type_texte table, .type_texte table tr, .type_texte table tr td{
    border: none;
}

.type_texte p{
    line-height: 1.5em;
}

.type_texte img{
    height: 100%;
}

/*type article - formulaire*/
.formSpecifique {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    flex-wrap: wrap;
    column-gap: 4%;
}

.formSpecifique > p:not(.isText) {
    width: 100%;
}

.formSpecifique > p.isText {
    width: 48%;
}

.formSpecifique > p > label{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    margin: 10px 0;
}

form .form-has-req-field {
    font-weight: 500;
    margin-bottom: 10px;
}

.formSpecifique .radioElement label{
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.formSpecifique .formRadio{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 0;
}

.formRadio .radioElement:not(:first-child) input{
    margin-left: 25px;
}

.radioElement input[type="radio"], #checkRGPD{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    float: left;
    border: 1px solid var(--main-text) !important;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    min-width: 20px;
}

.radioElement input[type="radio"]:checked:after, #checkRGPD:checked:after {
    content: '';
    position: absolute;
    background: var(--main-text);
    /* margin: 5px; */
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transform: translate(40%, 40%);
}

.texteRGPD{
    font-weight: 500;
}

.shadowForm {
    padding: 50px;
    box-shadow: 0 8px 9px -1px grey;
    border-radius: 25px;
    margin-bottom: 30px;
}
.radioElement input[type="radio"], #checkRGPD{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    float: left;
    border: 1px solid var(--main-text) !important;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    min-width: 20px;
}

.radioElement input[type="radio"]:checked:after, #checkRGPD:checked:after {
    content: '';
    position: absolute;
    background: var(--main-text);
    /* margin: 5px; */
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transform: translate(40%, 40%);
}

.texteRGPD{
    font-weight: 500;
}

.shadowForm {
    padding: 50px;
    box-shadow: 0 8px 9px -1px grey;
    border-radius: 25px;
    margin-bottom: 30px;
}
.radioElement input[type="radio"], #checkRGPD{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    float: left;
    border: 1px solid var(--main-text) !important;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    min-width: 20px;
}

.radioElement input[type="radio"]:checked:after, #checkRGPD:checked:after {
    content: '';
    position: absolute;
    background: var(--main-text);
    /* margin: 5px; */
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transform: translate(40%, 40%);
}

.texteRGPD{
    font-weight: 500;
}

.shadowForm {
    padding: 50px;
    box-shadow: 0 8px 9px -1px grey;
    border-radius: 25px;
    margin-bottom: 30px;
}
.radioElement input[type="radio"], #checkRGPD{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    float: left;
    border: 1px solid var(--main-text) !important;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 20px;
    cursor: pointer;
    min-width: 20px;
}

.radioElement input[type="radio"]:checked:after, #checkRGPD:checked:after {
    content: '';
    position: absolute;
    background: var(--main-text);
    /* margin: 5px; */
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transform: translate(40%, 40%);
}

.texteRGPD{
    font-weight: 500;
}

.shadowForm {
    padding: 50px;
    box-shadow: 0 8px 9px -1px grey;
    border-radius: 25px;
    margin-bottom: 30px;
}

/**************** Page classique ********************/

div:not(#Footer) a:hover img:not(.noHover){
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(3949%) hue-rotate(170deg) brightness(98%) contrast(102%);
}


/**************************************************/

/**************** Page accueil ********************/

/*slider accueil*/

.type_article_claque {
    margin-bottom: 50px;
}

.article_calque_content {
    margin: 0 auto;
    width: 100%;
    min-height: 600px;
    max-height: 600px;
    height: 600px;
}

.slideContenu {
    position: absolute;
    height: 100%;
    padding-left: 50px;
}

div#slider_accueil {
    max-width: 100%;
    margin-bottom: 0;
}

.slideImg {
    width: 100%;
    height: 100%;
    height: 600px;
}

.slideImg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.slick-slide img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.slideHalf{
    width: 50%;
}

.slider_accueil .tiny-button-transparent {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 500 !important;
}

.slider_accueil .tiny-button-transparent:hover {
    background-color: white;
    color: black;
}

.h1Accueil{
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: transparent;
}

.slider_accueil .slick-dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 750px;
    padding: 0;
    margin-left: 0;
    list-style: none;
    text-align: center;
    top: 50%;
    transform: translate(50%, -50%);
    right: 37%;
    bottom: auto;
    justify-content: center;
    align-items: end;
    row-gap: 10px;
    z-index: 0;
}

.slider_accueil .slick-dots li{
    margin: 0 !important;
    width: 22px;
    height: 20px;
    background-color: transparent;
}

.slider_accueil .slick-dots::before {
    content: "";
    position: absolute;
    height: 500px;
    background-color: white;
    width: 4px;
    left: -500px;
}

.slider_accueil .slick-dots li:first-child::before {
    content: "";
    position: absolute;
    height: 180px;
    background-color: white;
    width: 4px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -115%);
}

.slider_accueil .slick-dots li:last-child::after {
    content: "";
    position: absolute;
    height: 180px;
    background-color: white;
    width: 4px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 115%);
}

.slider_accueil .slick-dots li button:before {
    font-size: 10px;
    opacity: 1;
    color: white;
}

.slider_accueil .slick-dots li.slick-active button:before {
    font-size: 16px !important;
    opacity: 1;
    color: white !important;
}

.slider_accueil .slick-dots li.slick-active {
    border: 1px solid white;
    border-radius: 15px;
    /* z-index: 22; */
}

.boutonAncrageAccueil {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    transform: translate(-50%, 0%);
    height: 35px;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.boutonAncrageAccueil a {
    display: block;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

.boutonAncrageAccueil a::after {
    content: url(../images/fleche_accueil.svg);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.boutonAncrageAccueil a:hover::after{
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(3949%) hue-rotate(170deg) brightness(98%) contrast(102%);
}

/*Slider gammes*/
.type_slider_gammes {
    margin-top: 30px;
    margin-bottom: 50px;
}

.slider_gammes{
    margin: 0px 40px;
    margin-top: 30px;
}

.slide_gamme {
    height: 400px !important;
    border-radius: 20px;
    overflow: hidden;
}

.slider_gammes .slick-slide > div {
    margin: 0 10px;
}

.slide_gamme_image{
    height: 350px;
    width: 100%;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    overflow: hidden;
}

.slide_gamme_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slide_gamme_content{
    width: 100%;
    height: 50px;
    background-color: var(--main-color);
    color: white !important;
    text-transform: uppercase;
    font-weight: 600;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
}

.slide_gamme a:hover .slide_gamme_content{
    background-color: #007fb6;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
}

.slide_gamme a:hover .slide_gamme_image {
    border:  4px solid #007fb6;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
}

/*Type article fond bleu famille univers*/
.type_famille_univers{
    background-color: var(--main-color);
    padding: 60px 0;
    color: white !important;
}

.type_famille_univers h2 {
    color: white;
    background-color: var(--main-color);
}
    
.type_famille_univers .traitTitre::after {
    background-color: white;
}

.contentFamille {
    margin-top: 40px;
    column-gap: 70px;
    row-gap: 30px;
}

.itemFamille{
    height: 150px;
}

.itemFamille img{
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.itemContentFamille{
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    height: 100%;
    text-transform: uppercase;
}

.contentFamille a {
    color: white;
}

.contentFamille a:hover {
    color: black;
    filter: brightness(0) saturate(100%) !important;
}

/*Texte a gauche / image a droite */
.type_texte_gauche_image_droite {
    margin: 50px auto;
}

.type_texte_gauche_image_droite .texte {
    margin: auto;
}

.texte_gauche{
    margin-right: 60px;
    margin-top: 20px;
}

.texte_gauche .tiny-button-transparent {
    justify-content: center;
}

.image_droite{
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.image_droite img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_droite .img{
    height: 100%;
}


/*slider*/
.type_slider .slide_gamme_image{
    height: 100%;
}

.slide_content{
    position: absolute;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    bottom: 0;
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    opacity: 0;
    color: white;
    padding: 30px;
}

.slide_content .titreSousContenu{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    opacity: 1;
    margin-bottom: 10px;
}

.slide_gamme:hover  .slide_content{

    opacity: 1;
    background-color: rgba(0, 159, 227, 0.8);
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
}

/*card décalé */

.cardTotal{
    overflow: hidden;
}

.card_decale{
    margin: 50px 0;
    column-gap: 25px;
}

.cardFlottant{
    position: absolute;
    background-color: var(--main-color);
    width: 100%;
    top: 30px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
}


.cardBottom{
    height: 550px;
    width:100%;
    border-radius: 20px;
    overflow: hidden;
}

.cardBottom img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/*slide avis*/

.slide_avis {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 5px 4px grey;
    padding: 30px;
    min-height: 275px !important;
    max-height: 275px !important;
    margin: 20px 0;
}

.slide_content_avis {
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
}

.titre_avis {
    font-weight: 600;
    margin-left: 15px;
}

/*contenu avec fond miniature*/
.type_texte_absolu{
    color: white;
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.titre_blanc h2{
    color: white;
    background-color: transparent;
    margin-bottom: 20px;
    font-weight: 700;
}

.type_texte_absolu .tiny-button-transparent{
    background-color: transparent;
    color: white !important;
    border-color: white;
    margin: 0 auto;
    margin-bottom: 20px;
}

.type_texte_absolu .tiny-button-transparent:hover{
    color: var(--main-color);
    border-color: var(--main-color);
}

/*type engagement*/
.type_engagement table, .type_engagement table tr, .type_engagement table tr td{
    border: 0;
}

.type_engagement {
    margin: 50px auto;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px 15px;
    box-shadow: 1px 9px 10px -7px grey;
}

.engagement {
    max-width: 250px;
    text-align: center;
    font-weight: 500;
}

.engagement a{
    row-gap: 20px;
}

.engagement_content{
    margin: 30px 0;
}

.engagement_article_parent strong{
    color: var(--main-color);
}
/**************************************************/

/**************** Page liste produit ********************/

.famille-produits{
    margin-bottom: 40px;
}

.famille-produits.hidden {
    overflow: hidden;
    max-height: 70px;
}

.famille-produits.expanded {
    overflow: visible;
    max-height: unset;
}

.article .titre{
    text-align: center;
    color: var(--main-color);
    text-transform: uppercase;
}

.article .img{
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.article .img img{
    width: 100%;
    height: 100%;
}

.article .img.imgPortrait img{
    object-fit: contain;
}

.article .img.imgPaysage img{
    object-fit: cover;
}


a.article .img{
    transition: all ease 0.1s;
}

a.article:hover .img{
    border: 4px solid var(--main-color);
}

.article > img:nth-child(2):not(.drapeauFr){
    margin-top: 10px;
}

.titreProduitMargin{
    margin-top: 15px;
}

.prix{
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.prixBarre::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: 100%;
    background-color: #d9365f;
    left: 0;
}

.prixPromo, .prixPromo span{
    color: #d9365f !important;
}

.prix span{
    font-weight: 600;
    font-size: 20px;
}

.page-liste-produits .page_navigation{
    margin: 20px auto;
}

.bandeauProduit{
    position: absolute;
    height: 25px;
    width: 150px;
    color: white;
    top: 0;
    right: 0;
    border-radius: 3px;
    z-index: 15;
    padding: 0 5px;
}

.bandeauNouveau{
    background-color: #EE3831;
}

.bandeauMeilleurVente{
    background-color: var(--main-color);
}

/*Filtres*/
.listeFiltres{
    min-width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 8px 28px -10px grey;
    font-size: 13px;
}

.titreListeFiltres{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin: 5px 0;
    display: block;
    padding: 5px 15px;
}

.titreFiltre{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-weight: 15px;
    padding: 10px 0px;
    cursor: pointer;
}

.titreFiltre span{
    text-align: left;
}

.blockFiltre {
    border-top: 2px solid var(--main-color);
    padding: 5px 15px;
}

.ligneSSFamille{
    padding: 5px 0;
}

.ligneSSFamille label{
    text-transform: lowercase;
    cursor: pointer;
}

.ligneSSFamille input{
    cursor: pointer;
}

.ligneSSFamille label::first-letter{
   text-transform: uppercase; 
}

.blockFiltre input{
    margin-right: 10px;
}

.flecheFiltre{
    width: 20px;
    height: 20px;
}

.flecheFiltre::before {
    content: url(../images/fleche_filtre.svg);
    position: absolute;
    transform: rotate(90deg) translate(-60%, 40%);
    top: 50%;
    left: 50%;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

.optionsFiltre.close{
    height: 0;
    overflow: hidden;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

.optionsFiltre{
    height: auto;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

.flecheRotate::before{
    transform: scaleY(-1) rotate(90deg) translate(70%, 40%);
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

.listeFiltresProduits{
    padding-bottom: 30px;
}

.reinitialiserFiltres{
    width: 100%;
    text-align: center;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 5px;
}

/**************** Page détail produit ********************/
/* double slider images */
.produit-galerie-liste-images{
    width: 580px;
    max-width: 580px;
    height: 490px;
    padding: 0 30px;
}

 .produit-galerie-image{
    width: 510px;
    max-width: 510px;
    height: 490px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 5px;
    margin-bottom: 10px;
    box-shadow: 0px 8px 8px -5px grey;
}

.produit-galerie-liste-images .slick-prev {
    left: 0 !important;
    z-index: 15;
}

.produit-galerie-liste-images .slick-next {
    right: 0 !important;
    z-index: 15;
}

.produit-galerie-image img, .produit-galerie-image-previsu img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-for{
    width: 155px;
    max-width: 155px;
    height: 490px;
}

.produit-galerie-image-previsu{
    width: 155px;
    max-width: 155px;
    height: 153px !important;
    margin: 5px 0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0px 8px 8px -5px grey;
    border: 0 !important;
}

/*Si pas en slider mais img simple*/
.content_produit_detail .img{
    height: 490px;
}

.content_produit_detail .img > img{
    height: 100%;
    width: 80%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0px 8px 8px -5px grey;

}

/*détail produit*/
.titreArticle h1{
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    width: 60%;
}

/*.titreArticle::after{
    content: url(../images/casque.svg);
    display: block;
    width: 75px;
    height: 70px;
    background-color: var(--main-color);
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0px 5px 10px -2px grey;
}*/

.page-produit-detail .prix{
    font-size: 20px;
    width: fit-content;
}

.page-produit-detail .details_prix .prix span{
    color: var(--main-color);
}

.page-produit-detail .ecoPart{
    font-size: 15px;
}

.details_prix{
    width: 100%;
    border-bottom: 2px solid black;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.details_prix .referenceArticle{
    position: relative;
    margin-top: 15px;
    bottom: 0;
}

.details_txt_comp{
    font-weight: 600;
    margin: 20px 0;
    line-height: 1.25em;
}

.details_txt_comp a {
    width: 100%;
    margin-left: 0;
    text-decoration: underline;
}

/*onglets*/
#tabs_produit, #tabs_produit > div, ul#ul_produit li{
    width: 100%;
}

ul#ul_produit {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 30px 0;
}

ul#ul_produit li:first-child a{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

ul#ul_produit li:last-child a{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

ul#ul_produit > li{
    list-style: none;
}

ul#ul_produit li a{
    display: block;
    color: white;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 0px;
    background-color: #D9D9D9;
    text-align: center;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

ul#ul_produit li a:hover, ul#ul_produit li.ui-tabs-active a{
    background-color: #565656;
    transition: all ease 0.3s;
    -webkit-transition: ease all 0.3s;
}

#tabs_produit{
    margin: 30px 0;
}

#tabs_produit > div img{
    margin: 0 auto;
}

#tabs_produit .remises {
    margin-bottom: 10px;
    font-weight: 600;
}

div#tab_remises table, div#tab_remises table tr, div#tab_remises table tr td, div#tab_remises table tr th{
    border: 2px solid black;
}

table.tableauRemise {
    max-width: 575px;
}

.tableauRemise tr td, .tableauRemise tr th {
    padding: 20px 10px;
    text-align: center;
}

/*slider des articles associés*/

.articles_associes{
    overflow: hidden;
    margin: 40px auto;
}

.slider_assoc a.article {
    display: flex !important;
    margin: 0 15px;
}

.slider_assoc .drapeauFr {
    max-width: 90px;
}

.slider_assoc .article .img{
    max-width: 300px;
}

.slider_assoc .slick-track{
    margin-left: 0 !important;
}
/********************************************************/

/* Menu devis counter articles */
.articleCounter{
    position: absolute;
    content:"";
    background-color: #000;
    color:white;
    border-radius: 70px;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popinAide{
    justify-content: center;
    margin-bottom: 20px;
}

.popinDevis{
    font-weight:500;
}

.devisStep{
    border: 3px solid var(--main-color);
    border-radius: 20px;
    margin-top:50px;

    padding-top:35px;
    padding-bottom:50px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0px 5px 4px lightgray;
}

.devisStep img{
    width:70px;
    height: 70px;
    background-color: white;
    position: absolute;
    top:-35px;
    left:50%;
    transform: translateX(-50%);
    padding: 10px;
}

.titleStepDevis{
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    font-size: 69px;
    text-transform: uppercase;
}

.contentStepDevis{
    text-align: center;
    font-size: 16px;
}

.jconfirm .jconfirm-box{
    border-radius: 30px;
}

.jconfirm div.Content{
    width:100% !important;
}

.jconfirm h1{
    color: var(--main-color);
    text-transform: uppercase;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon{
    top: 25px;
    right: 25px;
}

.btnPopinDevis{
    background-color: var(--main-color);
    border-radius: 8px;
    padding:10px;
    font-size:19px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
    box-shadow: 0px 5px 4px lightgray;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.btnPopinDevis:hover{
    background-color: #007fb6;
    color: white;
}

.devisStep:not(:last-child):after{
    content:"";
    position:absolute;
    right:-80px;
    width:50px;
    height:50px;
    top:50%;
    transform: translateY(-50%);
    background-image: url(../images/fleche_steps.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.jconfirm.jconfirm-material .jconfirm-box{
    padding: 30px 45px 10px 45px;

}


/* =================================================== */
.btnClose {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.btnClose::before, .btnClose::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: black;
}
.btnClose::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.btnClose::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===================================================================== */
.devisParent{
    box-shadow: 0px 5px 4px 2px lightgray;
    border-radius: 15px;
    overflow: hidden;
}

.devisProduitListContent, .listeProduitsDevis{
    width:100%;
}

.devisProduitListContent{
    padding:20px;
}

.listeProduitsDevis thead tr th{
    padding:5px;
    text-transform: uppercase;
    font-size:21px;
}

.listeProduitsDevis thead tr th:first-child{
    border-radius: 10px 0px 0px 10px;
}

.listeProduitsDevis thead tr th:last-child{
    border-radius: 0px 10px 10px 0px;
}

.listeProduitsDevis thead th{
    background-color: #e6e6e6;
}

.listeProduitsDevis tbody tr td {
    padding-top:20px;
    padding-bottom:20px;
}

.listeProduitsDevis tbody tr:not(:last-child){
    border-bottom: 1px solid #dddddd;
}

.listeProduitsDevis .img{
    width: 250px;
    height:250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 4px 2px lightgray;
}

.retirerProduit, .ajouterProduit{
    background-color: var(--main-color);
    color: white;
    font-size:26px;
    border: none;
    width:40px;
    height:40px;
    cursor: pointer;
}

.retirerProduit:hover, .ajouterProduit:hover{
    background-color: #007fb6;
}

.btnRetourDevis{
    background-color: #e5e5e5;
    color:black;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    padding:10px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease 0.3s;
}

.btnNextDevis{
    background-color: var(--main-color);
    color:white;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    padding:10px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease 0.3s;
}

.btnRetourDevis:hover{
    background-color: #b2b2b2;
    color: black;
}

.btnNextDevis:hover{
    background-color: #007fb6;
    color:white;
}

.listeProduitsDevis thead th:first-child{
    width: 300px;
}

.listeProduitsDevis thead th:nth-child(4){
    width:20%;
    text-align: left;
}

.listeProduitsDevis tbody tr td:nth-child(2){
    vertical-align: top;
    text-align: left;
    position: relative;
}

.ligneArticleNbArticle{
    width:75px;
    text-align: center;
    font-size:26px;
    font-weight:600;
}

.deleteProduit{
    width:30px;
    height:30px;
    background: url('../images/poubelle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.deleteProduit:hover{
    opacity:0.8;
}

.devisNoProduct{
    font-size: 21px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding-top:50px;
    padding-bottom: 50px;
}


.article-formulaire-step1, .article-formulaire-step2{
    box-shadow: 0px 5px 4px 2px lightgray;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 5px;
    margin-top: 20px;
}

.article-formulaire-step1 form, .article-formulaire-step2 form{
    width:100%;
    padding: 30px 80px 30px 80px;
}

.devisStep1{
    transform: translateX(50%);
    transition: all ease 0.3s;
    margin-bottom: 20px;
    flex-shrink: 0;
    /*display: flex;*/
}

.devisStep2{
    transform: translateX(100%);
    transition: all ease 0.3s;
    margin-bottom: 20px;
    flex-shrink: 0;
    /*display: none;*/
}

.devisStep1.nextStep{
    transform: translateX(-100%);
    height:0px;
    /*display: none;*/
}

.devisStep2.nextStep{
    transform: translateX(-50%);
    /*display: flex;*/
}

/*.listePaniersContent{
    overflow: hidden;
    padding: 0px 5px 0px 5px;
}*/

.devisContentBarreGrise{
    width:100%;
    height:3px;
    background-color: #dddddd;
    margin-top:20px;
    margin-bottom: 20px;
}

.recapPrixDevis .flexHalf:first-child{
    font-size: 21px;
    text-transform: uppercase;
    margin-left:50px;
    font-weight: bold;
}

.recapPrixDevis .flexHalf:last-child{
    font-weight:bold;
    font-size: 22px;
}

.recapPrixDevis.grandPrixRecap .flexHalf:last-child{
    font-weight:bold;
    font-size: 35px;
}

.prixLigneDevis{
    font-weight:bold;
    font-size:20px;
}

.listeProduitsDevis .titre{
    color: var(--main-color);
}

.listePaniersContent .dimensionArticle{
    font-weight: 500;
    font-size:17px;
}

.listePaniersContent .prixUnitaire{
    font-size: 20px;
    font-weight: bold;
}

.referenceArticle {
    position: absolute;
    bottom: 20px;
    left: 0;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    align-items:flex-start;
}

.ecoPart{
    font-size: 16px;
    font-weight: 300;
    margin-bottom:20px;
}

.pagePanier{
    overflow: hidden;
}

.pagePanier .type_texte:first-child{
    margin-top:0px;
}

.type_texte img {
    max-width: 100%;
}

table img {
    max-width: 100%;
    height: auto;
}

.txtTarifIndicatif{
    margin-top: 10px;
    color: var(--main-color);
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content{
    overflow: unset !important;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll{
    overflow-y: auto !important;
}

.familles_liees {
    margin-bottom: 30px;
}
.familles_liees .tiny-button-bleu {
    display: inline-block;
    margin: 0 15px 15px 0px;
}


#slider_accueil.slick-not-init > .slideAccueil:not(:first-child) {
    display: none;
}

.slideAccueil{
    width: 100%;
}

.titreDetail{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 20px;
}

.selectOrdre{
    max-width:350px;
    min-width:200px;
}

.titreListeFiltres .flecheFiltre{
    display:none;
}

#ordreArticle{
    border-radius:15px;
}

#clickToScroll{
    cursor: pointer;
}

.contentFamille .slick-slide > div:first-child{
    margin-bottom: 30px;
}

.cardTotal{
    padding: 0 20px;
}