/*Fonts*/
/* poppins-200 - 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: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('../webfonts/poppins-v23-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/poppins-v23-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/poppins-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/poppins-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - 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: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../webfonts/poppins-v23-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*============================================================================================================*/

/* Variables */
:root {
    --main-color: #A12417;
    --main-color-header: #F4F4F4;
    --color-red: #A12417;
    --color-blue: #1F3A90;
    --color-lightgrey: #F4F4F4;
}

/*============================================================================================================*/

/* CSS général */
*:not(td) {
    position: relative;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html,
body {
    
    min-height: 100%;
}

/* Permet de garder l'inertie lors d'un scroll sur un mobile */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    font-family: 'Poppins', Arial, Verdana, Tahoma, sans-serif;
    font-size: 17px;
    color: #000;
    font-weight: lighter;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

/* Permet de centrer les images */
.img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hide {
    display: none !important;
}

textarea {
    overflow: auto;
    resize: vertical;
}

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-color);
    transition: ease all 0.3s;
    -webkit-transition: ease all 0.3s;
    font-weight: 400;
    text-decoration: underline;
    width: fit-content;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

.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;
    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-size: 25px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 10px;
}

h3,
.h3 {
    font-size: 20px;
    font-weight: 600;
    color: black;
}

ul li {
    list-style: inside;
}

strong {
    font-weight: 600 !important;
}

table {
    border-collapse: unset !important;
    border: none !important;
}

table[cellspacing="0"],
table:not([cellspacing]) {
    border-collapse: collapse !important;
}

.ancre {
    scroll-margin-top: 80px;
}

h1 span {
    background: url(/images/fond_rouge_rectangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 1px 60px 1px 60px;
    color: #fff;
    font-size: 32px;
    margin-left: -30px;
}

h1.titre_page,
h1.article-titre {
    margin-bottom: 30px;
}

/*============================================================================================================*/

/* Bouton par défaut */
.button,
.tiny-button {
    background: var(--main-color);
    display: block;
    width: fit-content;
    padding: 10px 20px;
    font-weight: 400;
    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,
.tiny-button:hover {
    background: none;
    color: var(--main-color);
}

.button a,
.tiny-button a {
    color: white;
    text-decoration: none;
    font-weight: 400;
}

.button:hover a,
.tiny-button:hover a {
    color: var(--main-color);
}

/*============================================================================================================*/

/* 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: 33%;
}

.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_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: #fff;
    box-shadow: 0 2px 8px 0px #aaa;
    height: 100px;
    display: flex;
}

#Header > .Content {
    height: 100%;
    position: unset;
    justify-content: space-between;
}

#HeaderMenu ul {
    display: flex;
    justify-content: center;
    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;
}

#HeaderMenu ul li {
    display: flex;
    box-sizing: border-box;
    padding: 5px;
    position: unset;
}

#HeaderMenu ul li .spanMenu {
    cursor: default;
}

#HeaderMenu ul li a,
#HeaderMenu ul li .spanMenu {
    margin: auto 15px;
    line-height: 46px;
    font-weight: 300;
    color: white;
    background: linear-gradient(to left, white, white) no-repeat bottom center;
    background-size: 0% 2px;
    transition: 0.25s;
    font-size: 17px;
    text-decoration: none;
    color: var(--color-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

#HeaderMenu ul li>a:hover,
#HeaderMenu ul li.selected>a,
#HeaderMenu ul li .spanMenu:hover,
#HeaderMenu ul li.selected .spanMenu {
    color: var(--color-red);
}

#HeaderMenu ul li.classli1.selected::after,
#HeaderMenu ul li.classli3.selected::after,
#HeaderMenu ul li.classli4.selected::after {
    content: '';
    display: block;
    border-top: 12px solid var(--color-red);
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -20px);
}

#HeaderMenu ul li.classli1,
#HeaderMenu ul li.classli3,
#HeaderMenu ul li.classli4 {
    position: relative;
}

#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%;
}

#HeaderMenu .not_mobile li div.SSMenu {
    position: absolute;
    max-height: 0px;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    padding: 0;
    top: 100px;
    left: 0 !important;
    width: 100%;
    transform: none;
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
}

#HeaderMenu .not_mobile li div.SSMenu.active {
    padding-top: 10px;
    border-bottom: 3px solid var(--color-red);
    padding-bottom: 15px;
}

#InfoHeader #Logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#InfoHeader #Logo img{
    width: auto;
    height: 40px;
}

#HeaderMenu .not_mobile li .SSMenu ul {
    background-color: #fff;
    height: 100%;
    margin-top: 3px;
    padding: 0;
    padding-top: 30px;
    margin: auto;
    display: block;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    padding-bottom: 30px;
}

#HeaderMenu li div.SSMenu.active {
    max-height: 800px !important;
}

#HeaderMenu .not_mobile li div.SSMenu li a:hover {
    color: var(--main-color);
}

#HeaderMenu,
#HeaderMenu>div.not_mobile {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: unset;
}

#HeaderMenu .SSMenu ul li a {
    color: var(--color-red);
    text-align: center;
    font-size: 26px;
    line-height: 26px;
    text-transform: inherit;
}

#HeaderMenu .SSMenu ul li a .img {
    background: var(--color-lightgrey);
    height: 160px;
    width: 160px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    align-content: center;
}

#HeaderMenu .SSMenu ul li a .img img {
    height: 80px;
    width: auto;
}

/*#HeaderMenu .SSMenu ul li:not(:last-child) {
    border-right: 3px solid rgba(161, 36, 23, 0.33);
}*/

#HeaderMenu .SSMenu ul li:not(:last-child)::after {
    content: "";
    width: 3px;
    height: 210px;
    background: rgba(161, 36, 23, 0.33);
    position: absolute;
    right: -1px;
    bottom: 0px;
}

#HeaderMenu .SSMenu ul li {
    padding-top: 30px;
    position: relative;
}

#HeaderMenu .SSMenu ul li a:hover::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    border-top: 22px solid var(--color-red);
    border-right: 24px solid transparent;
    border-left: 24px solid transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30px);
}

#HeaderMenu > .not_mobile > ul > li {
    height: 100px;
}

#HeaderMenu > .not_mobile > ul > li.last > a {
    margin-left: 30px;
    background: url(/images/fond_rouge_rectangle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0px 24px 0px 24px;
    color: #fff;
    background-position: center;
}

#HeaderMenu > .not_mobile > ul > li.last > a:hover {
    transform: translateX(-5px);
}

/* 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 {
    margin-top: 100px;
    /*height: 150px;*/
    /*overflow: hidden;*/
}

.bandeau-page img {
    width: 100%;
    display: block;
}

.bandeau-titre {
    position: absolute;
    bottom: 10%;
    width: 100%;
}

.bandeau-titre .titrePage {
    width: auto;
    position: relative;
    z-index: 1;
    padding: 10px 30px;
}

.bandeau-page .img img {
    height: 280px;
    object-fit: cover;
}

.bandeau-page h1 {
    position: absolute;
    top: calc(50% - 15px);
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.bandeau-page h1 span::before {
    content: "";
    width: 105px;
    height: 105px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
}

.bandeau-page h1 .picto_titre img {
    height: 45px;
    width: auto;
    object-fit: cover;
    margin: auto;
}

.bandeau-page h1 .picto_titre {
    background: var(--color-lightgrey);
    border-radius: 50%;
    width: 85px;
    height: 85px;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    align-content: center;
}

.bandeau-page .subtitle {
    position: absolute;
    max-width: 600px;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    color: #fff;
    font-weight: 600;
    right: calc(50% - 600px);
    font-size: 23px;
}

.bandeau_ariane + script + .page-classique {
    margin-top: 70px;
}

.bandeau-page .img::before {
    content: '';
    background: url(/images/fond_bas_bandeau.svg);
    position: absolute;
    height: 150px;
    width: 100%;
    left: 0;
    bottom: -30px;
    z-index: 1;
}

.bandeau-page::after {
    content: '';
    background: url(/images/pointe_rouge.svg);
    position: absolute;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    object-fit: cover;
    transform: rotate(180deg);
    right: 0;
    top: 0px;
    z-index: 1;
}

.page_accueil .bandeau-page::after {
    display: none;
}

#FilAriane::before {
    content: '';
    background: url(/images/fond_semi_triangles.svg);
    background-position: bottom;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    top: 0;
}

#FilAriane {
    padding-top: 30px;
    padding-bottom: 20px;
}

#FilAriane.bandeau_ariane {
    padding: 0;
}

#FilAriane.bandeau_ariane::before,
#FilAriane.bandeau_ariane::after {
    display: none;
}

#FilAriane::after {
    content: '';
    background: url(/images/trace_pneu_bleue.svg);
    position: absolute;
    width: 340px;
    height: 560px;
    left: -60px;
    top: 0;
    transform: rotate(-36deg);
    background-repeat: no-repeat;
    background-size: contain;
}

.bandeau-page .img::after {
    content: '';
    background: url(/images/trace_pneu_bleue.svg);
    position: absolute;
    width: 340px;
    height: 560px;
    left: -60px;
    top: 100%;
    transform: rotate(-36deg);
    background-repeat: no-repeat;
    background-size: contain;
}

/*============================================================================================================*/

/* 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 {
    position: absolute;
    right: 50px;
    top: 300px;
    width: 50px;
    z-index: 10;
    display: none;
}

.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;
}

.BarreInfoDroite a {
    padding: 8px;
    background: var(--color-red);
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.BarreInfoDroite a img {
    height: 34px;
    width: 30px;
    object-fit: contain;
}

.BarreInfoDroite a:hover {
    transform: translateX(-5px);
}

.page_accueil .BarreInfoDroite {
    display: block;
}

/*=============================================================================================================*/
/*Fil d'ariane*/

#FilAriane > .Content {
    height: 60px;
    display: flex;
    align-items: center;
}

#FilAriane > .Content a,  #FilAriane > .Content li{
    color: var(--color-blue);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

#FilAriane > .Content a:hover {
    color: var(--color-red);
}

#FilAriane > .Content li:not(.first)::before {
    content: '';
    display: inline-block;
    border-top: 8px solid transparent;
    border-left: 8px solid var(--color-red);
    border-bottom: 8px solid transparent;
    margin-bottom: -3px;
    margin-left: 3px;
    margin-right: 3px;
}

#FilAriane > .Content li:last-child a {
    color: var(--color-red);
    text-decoration: underline;
    font-weight: 600;
}

#FilAriane.bandeau_ariane {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#FilAriane.bandeau_ariane > .Content li:last-child a {
    color: #fff;
}

#FilAriane.bandeau_ariane > .Content li:not(.first)::before {
    border-left: 8px solid #fff;
}

/*============================================================================================================*/

/* Pagination */
.page_navigation, .dataTables_paginate, .dataTables_paginate > span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_navigation a {
    transition: none;
}

.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 {
    width: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0px;
    cursor: pointer;
    background: none;
    color: var(--color-blue);
    border: none;
    font-weight: 700;
    font-size: 22px;
    border-radius: 0;
}

.page_navigation a:hover,
.page_navigation li.active a, 
.dataTables_paginate .paginate_button.current, 
.dataTables_paginate .paginate_button:hover {
    background: var(--color-red);
    color: #fff;
}

.page_navigation a:hover::before,
.page_navigation li.active a::before, 
.dataTables_paginate .paginate_button.current::before, 
.dataTables_paginate .paginate_button:hover::before {
    content: '';
    border-top: 45px solid #fff;
    border-right: 15px solid transparent;
    left: 0px;
    position: absolute;
}

.page_navigation a:hover::after,
.page_navigation li.active a::after, 
.dataTables_paginate .paginate_button.current::after, 
.dataTables_paginate .paginate_button:hover::after {
    content: '';
    border-bottom: 45px solid #fff;
    border-left: 15px solid transparent;
    right: 0px;
    position: absolute;
}

.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;
}

.bandeau-test {
    display: none !important;
}

/*============================================================================================================*/

/* Articles */
.actu_basique {
    color: var(--color-blue);
    font-size: 18px;
    font-weight: 400;
    column-gap: 140px;
    margin-bottom: 60px;
}

.actu_basique .texte {
    padding-left: 30px;
}

.actu_basique .image img {
    z-index: 1;
}

.actu_basique .image .img::before {
    content: '';
    background: url(/images/pointe_rouge.svg);
    position: absolute;
    width: 120px;
    height: 120px;
    left: -10px;
    bottom: -6px;
}

.actu_basique .image .img::after {
    content: '';
    background: url(/images/pointe_bleue.svg);
    position: absolute;
    width: 120px;
    height: 120px;
    right: -10px;
    top: -10px;
}

.nos_valeurs h2 {
    margin-bottom: 50px;
}

.nos_valeurs h2 span {
    background: url(/images/fond_bleu_rectangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px 60px 1px 60px;
    color: #fff;
    font-size: 30px;
    margin-left: -30px;
}

.nos_valeurs_detail {
    text-align: center;
    margin-bottom: 75px;
}

.nos_valeurs_detail .tripleDetail {
    background: var(--color-lightgrey);
    margin-top: 90px;
    padding: 0px 45px 20px;
    font-size: 16px;
    line-height: 22px;
}

.nos_valeurs_detail .tripleDetail > .img {
    background: var(--color-lightgrey);
    padding: 30px;
    border-radius: 50%;
    width: 130px;
    margin: auto;
    margin-top: -90px;
}

.nos_valeurs_detail .tripleDetail > h3 {
    color: var(--color-red);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.nos_valeurs_detail .tripleDetail > .contenu {
    color: var(--color-blue);
    font-weight: 400;
    min-height: 90px;
}

.nos_valeurs_detail .flexThird:not(:last-child) .tripleDetail::after {
    content: "";
    width: 2px;
    height: 110px;
    background: var(--color-blue);
    position: absolute;
    right: -1px;
    bottom: 25px;
}

.page_accueil  .contenu_basique {
    margin-bottom: 60px;
}

.actu_entreprise {
    font-weight: 400;
    margin-bottom: 90px;
}

.actu_entreprise > .flexParent {
    column-gap: 60px;
}

.actu_entreprise .texte {
    padding-right: 90px;
}

.actu_entreprise h2 {
    color: var(--color-blue);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 32px;
}

.actu_entreprise h2 span {
    background: url(/images/fond_bleu_rectangle.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 10px 24px 10px 20px;
    color: #fff;
}

.actu_entreprise::after {
    content: '';
    background: url(/images/tuyau-certification-aipr.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: cover;
    width: 300px;
    height: 300px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.projet_idee {
    background: var(--color-red);
    margin-bottom: 120px;
    z-index: 3;
    margin-top: 60px;
}

.projet_idee h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 700;
}

.projet_idee .image img {
    max-width: 140px;
}

.projet_idee .image {
    padding: 20px 20px;
    justify-items: center;
}

.projet_idee .texte .contenu {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}

.projet_idee .texte .btn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
}

.projet_idee .texte .btn:hover {
    text-decoration: underline;
}

.projet_idee::after {
    content: '';
    background: url(/images/griffe_blanche.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: cover;
    width: 280px;
    height: 100%;
    right: 0;
    top: 0px;
}

.PageCookies h3 {
    color: var(--color-blue);
}

.contenu_basique,
.PageCookies {
    color: var(--color-blue);
    font-weight: 400;
    margin-bottom: 30px;
}

.contenu_basique h2 span {
    background: url(/images/fond_bleu_rectangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px 60px 1px 60px;
    color: #fff;
    font-size: 30px;
    margin-left: -30px;
    background-position: left;
}

.contenu_basique .img {
    background: var(--color-lightgrey);
    border-radius: 50%;
    width: 85px;
    height: 85px;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    align-content: center;
    text-align: center;
}

.contenu_basique .img img {
    height: 45px;
    width: auto;
    object-fit: cover;
}

.contenu_basique .title {
    width: fit-content;
}

.contenu_basique .title h2 {
    margin-bottom: 40px;
    margin-top: 60px;
}

.contenu_basique .title h2:not(.noImg)::after {
    content: "";
    width: 95px;
    height: 95px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
}

.nos_etapes .item {
    border: 2px solid var(--color-red);
    border-radius: 5px;
    padding: 15px 30px;
    text-align: center;
    color: var(--color-blue);
    margin: 0 15px;
}

.nos_etapes .item h2 {
    color: var(--color-red);
}

.nos_etapes .item .contenu {
    height: 45px;
    font-weight: 400;
}

.nos_etapes > .contenu {
    color: var(--color-blue);
    font-weight: 400;
    margin-top: 30px;
}

.nos_etapes {
    margin-bottom: 90px;
}

.nos_etapes .item strong {
    font-weight: 700 !important;
}

.nos_etapes .item h2::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    border-top: 20px solid var(--color-red);
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 5px;
}

.nos_etapes h3 {
    color: var(--color-blue);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 19px;
}

/*============================================================================================================*/

/* Footer */
#Footer {
    margin-top: 90px;
    background: var(--color-lightgrey);
    z-index: 2;
}

#Footer .footerMenu {
    row-gap: 15px;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 15px;
}

#Footer .BlocNetwork { 
    background: url(/images/footer_triangle.svg);
    background-size: 100%;
    min-height: 200px;
}

#Footer .Content {
    color: #e5e4e4 !important;
}

#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(--color-blue);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

#Footer .Content a:hover {
    color: var(--main-color);
}

.page_accueil #Footer::before {
    content: '';
    background: url(/images/fond_tracteur_rouge.png);
    position: absolute;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    left: 0;
    background-size: contain;
    top: -400px;
}

#Footer::after {
    content: '';
    background: url(/images/bande_pneu_rouge_droite.svg);
    position: absolute;
    width: 190px;
    height: 1000px;
    background-repeat: no-repeat;
    background-size: cover;
    top: -1000px;
    right: 0;
}

.page_accueil #Footer::after {
    height: 1300px;
    background-size: contain;
    top: -1350px;
}

/*============================================================================================================*/

/* 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: 15px;
    border-radius: 5px;
}

#Form input:not([type="button"]):not([type="checkbox"]):focus-visible,
#Form textarea:focus-visible {
    border: none;
    border-bottom: solid 2px lightgray;
    outline: none;
}

textarea {
    resize: vertical;
    height: 100px;
}

.SubmitForm {
    display: block;
    padding: 15px;
    margin: 20px auto;
    width: 100%;
    border: 1px solid var(--main-color);
    cursor: pointer;
    color: white !important;
    background: var(--main-color);
    text-decoration: none !important;
    transition: ease all 0.3s;
}

.SubmitForm:hover {
    color: var(--color-blue) !important;
    background: #fff !important;
    border: 1px solid var(--color-blue) !important;
}

iframe {
    height: auto;
    aspect-ratio: 16/9;
}

.ContenuForm {
    margin-bottom: 20px;
}

label:first-child {
    display: block;
}

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;
    display: flex;
    flex-wrap: wrap;
    column-gap: 42px;
    row-gap: 5px;
}

.ul_liste_actu::before {
    content: '';
    background: url(/images/pointe_rouge.svg);
    position: absolute;
    width: 120px;
    height: 120px;
    left: -15px;
    bottom: -15px;
}

.ul_liste_actu::after {
    content: '';
    background: url(/images/pointe_bleue.svg);
    position: absolute;
    width: 120px;
    height: 120px;
    right: -15px;
    top: 5px;
    z-index: -1;
}

.actu-item {
    padding-bottom: 20px;
    margin-top: 20px;
    display: flex;
    width: calc(33.33% - 28px);
    justify-content: start;
    height: 450px;
}

.actu-item:not(:last-child) {
    border-bottom: 1px solid #ced3e4;
}

.actu-img {
    min-width: 300px;
    /*width: 300px;*/
    /*height: 300px;*/
    overflow: hidden;
    margin-right: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actu-img a {
    width: 100%;
    height: 100%;
    display: flex;
}

.actu-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.actu-item:hover .actu-img a img {
    filter: brightness(0.8);
}

.actu-txt {
    text-decoration: none;
    margin: auto;
    padding: 0 40px;
    text-align: center;
    position: static;
}

.actu-txt h2 {
    margin-bottom: 0px;
    background: var(--color-blue);
    padding: 10px 30px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    font-size: 20px;
    min-height: 90px;
    align-content: center;
}

.titreActu {
    margin-bottom: 20px;
}

.actu-date {
    font-size: 20px;
    margin-bottom: 10px;
}

.actu-knowmore {
    color: #fff;
    position: absolute;
    bottom: 15px;
    width: 100%;
    left: 0;
    font-weight: 600;
    font-size: 20px;
}

.btnFiltre {
    border: none;
    padding: 10px 30px;
    color: var(--color-blue);
    background: var(--color-lightgrey);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.btnFiltre.selected,
.btnFiltre:hover {
    color: #fff;
    background: var(--color-blue);
}

.btnFiltre:not(:last-child)::after {
    content: "";
    width: 2px;
    height: 23px;
    background: var(--color-red);
    position: absolute;
    right: -1px;
    bottom: 10px;
}

.containerFiltres {
    margin-top: 60px;
    margin-bottom: 30px;
}

.containerFiltres .filtres::before {
    content: '';
    display: inline-block;
    border-top: 43px solid #fff;
    border-right: 20px solid transparent;
    transform: translateX(20px);
    z-index: 1;
}

.containerFiltres .filtres::after {
    content: '';
    display: inline-block;
    border-bottom: 43px solid #fff;
    border-left: 20px solid transparent;
    transform: translateX(-20px);
}

.slider-actu .slider_item img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.retourActu {
    margin-bottom: 30px;
    color: var(--color-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 20px;
    font-weight: 500;
    font-size: 20px;
}

.retourActu:hover {
    color: var(--color-red);
}

.retourActu::before {
    content: '';
    display: inline-block;
    border-top: 12px solid transparent;
    border-right: 12px solid var(--color-blue);
    border-bottom: 12px solid transparent;
    margin-right: 6px;
}

.retourActu:hover::before {
    border-right: 12px solid var(--color-red);
}

.actu_galerie {
    margin-bottom: 90px;
    color: var(--color-blue);
    font-weight: 400;
    column-gap: 30px;
    z-index: 3;
}

.slick-next::before {
    content: '' !important;
    display: inline-block;
    border-top: 20px solid transparent;
    border-left: 18px solid var(--color-red);
    border-bottom: 20px solid transparent;
    transform: translateY(-25%);
}

.slick-prev::before {
    content: '' !important;
    display: inline-block;
    border-top: 20px solid transparent;
    border-right: 18px solid var(--color-red);
    border-bottom: 20px solid transparent;
    transform: translateY(-25%);
}

.actu_galerie .slick-dots li {
    margin: 0 0px;
}

.actu_galerie .slick-dots li.slick-active button:before {
    color: var(--color-red);
}

.slick-dotted.slick-slider {
    margin-top: 30px;
}

.slick-slide {
    margin: 0 10px;
}

/*.slick-list {
    margin: 0 -10px;
}*/

.page_navigation {
    margin-top: 30px;
    margin-bottom: 120px;
}

.page_navigation li.prev,
.page_navigation li.next {
    display: none;
}

/*============================================================================================================*/

/* Page contact */
.contact_form {
    background: var(--color-red);
    padding-top: 20px;
    margin-top: 60px;
    margin-bottom: 90px;
}

.contact_form .Col1 {
    width: calc(50% - 8px);
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.contact_form .Col2 {
    width: calc(50% - 8px);
    display: inline-block;
    vertical-align: top;
}

.contact_form .form-has-req-field {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.contact_form .SubmitForm {
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
}

.contact_form .form1 {
    padding: 0 40px;
}

.contact_form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.contact_form .texteRGPD {
    padding: 0 40px;
    color: #fff;
}

.contact_form .isFile {
    display: flex;
    color: #fff;
    font-weight: 400;
    align-items: center;
    margin-bottom: 15px;
}

.contact_form .isFile .button {
    cursor: pointer;
    background: #fff;
    color: var(--color-blue);
    border-radius: 6px;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 10px;
}

.contact_form .isFile .button:hover {
    color: var(--color-red);
}

.contact_form .p_3 {
    width: calc(50% - 8px);
    display: inline-block;
    margin-right: 10px;
}

.contact_form .p_4 {
        width: calc(50% - 7px);
    display: inline-block;
}

.contact_form .p_8 {
    width: calc(200% + 14px);
    display: inline-block;
    left: calc(-100% - 14px);
}

.contact_form .detailErreur {
    color: lightpink;
    font-size: 12px;
    font-style: italic;
    margin-top: -10px;
}

.contact_form .texteRGPD .detailErreur {
    margin-top: 0px;
}

.contact_form .err {
    display: none;
}

.contact_contenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact_contenu p:first-child { 
    margin-right: auto;
}

.contact_contenu p:not(:first-child) { 
    background: var(--color-blue);
    color: #fff;
    padding: 10px 75px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 15px;
    height: 60px;
    align-content: center;
    display: inline-flex;
    align-items: center;
}

.contact_contenu p:first-child img { 
    height: 60px;
}

.contact_contenu p:nth-child(2)::before { 
    content: '';
    border-top: 60px solid #fff;
    border-right: 20px solid transparent;
    position: absolute;
    left: 0;
    top: 0;
}

.contact_contenu p:nth-child(n+2):not(:last-child)::after {
    content: "";
    width: 3px;
    height: 36px;
    background: var(--color-lightgrey);
    position: absolute;
    right: -1px;
    bottom: 12px;
    opacity: 0.6;
}

.contact_contenu p:last-child::after  { 
    content: '';
    border-bottom: 60px solid #fff;
    border-left: 20px solid transparent;
    position: absolute;
    right: 0;
    top: 0;
}

.contact_contenu p:not(:first-child) img {
    margin-right: 6px;
}

.contact_contenu a {
    color: #fff;
    text-decoration: none;
}

.contact_form .isFile label:first-child {
    min-width: 100px;
}

.page_maintenance #Footer {
    display: none;
}

/*============================================================================================================*/

/* Page cookies */
.PageCookies a {
    word-break: break-all;
}

/*============================================================================================================*/

/* Page d'accueil */
.page-accueil {
    /*padding-top: 100px;*/
}

.page_accueil #FilAriane {
    display: none;
}

.presentation {
    overflow: hidden;
}

.presentation .logo_milieu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.presentation .img {
    height: 600px;
}

.presentation .logo_milieu img {
    width: 600px;
}

.presentation a.btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    padding: 8px 24px;
    z-index: 2;
}

.presentation a.btn:hover {
    transform: translate(-50%, 5px);
}

.presentation a.btn::before {
    content: '';
    background: url(/images/forme_blanc_decouvrir.svg);
    position: absolute;
    width: 180px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    left: -3px;
    top: 1px;
}

.presentation .triangle_half {
    width: 50%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.presentation .triangle_half::before {
    content: '';
    width: 2000px;
    height: 100%;
    position: absolute;
    bottom: -100%;
    border: 10px solid var(--color-red);
    background: var(--color-blue);
    transform: rotate(12deg);
    z-index: 1;
    right: -930px;
}

.presentation::after {
    content: '';
    width: 2000px;
    height: 100%;
    position: absolute;
    bottom: -100%;
    border: 10px solid var(--color-red);
    background: var(--color-blue);
    transform: rotate(-12deg);
    right: calc(50% - 1092px);
}

.bandeau_overlay {
    background: var(--color-blue);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.33;
}

.article-contenu-triple {
    background: var(--color-blue);
}

.page_accueil h1 {
    text-align: center;
    padding-top: 30px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.contenu_triple_detail {
    column-gap: 40px;
    z-index: 2;
    transform: translateY(40px);
}

.contenu_triple_detail .tripleDetail {
    background: #fff;
    padding: 40px 30px 30px;
    text-align: center;
    text-decoration: none;
}

.contenu_triple_detail .tripleDetail:hover {
    background: #eee;
}

.contenu_triple_detail .img img {
    height: 60px;
    width: auto;
}

.contenu_triple_detail .img {
    background: var(--color-lightgrey);
    width: max-content;
    padding: 30px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}

.contenu_triple_detail h2 {
    color: var(--color-red);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

.contenu_triple_detail .contenu {
    font-weight: 400;
    height: 100px;
    color: var(--color-blue);
}

.article-contenu-triple::after {
    content: '';
    background: url(/images/fond_bandes_claires.png);
    position: absolute;
    width: 100%;
    height: 800px;
    right: 0px;
    bottom: -302px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.nos_projets {
    margin-bottom: 120px;
}

.nos_projets .actu-item.slick-slide {
    display: flex;
    height: 450px;
    border: none;
}

.nos_projets .headline {
    margin-bottom: 45px;
    justify-content: space-between;
}

.nos_projets h2 span {
    background: url(/images/fond_bleu_rectangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px 30px 1px 30px;
    color: #fff;
    font-size: 30px;
    background-position: center;
}

.nos_projets .ul_liste_actu::after {
    right: -6px;
    top: -15px;
}

.nos_projets .ul_liste_actu::before {
    left: -6px;
    bottom: -15px;
}

.page_accueil .nos_projets .img {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) -45.82%, rgba(32, 59, 144, 0.95) 81.33%);
}

.nos_projets .img {
    height: 300px;
}

.nos_projets .img::after {
    content: '';
    background: url(/images/fond_semi_triangles.svg);
    background-position: center;
    position: absolute;
    width: 100%;
    height: 600px;
    left: 0;
    top: 100%;
}

.nos_projets .img img {
    z-index: -1;
    height: 300px;
}

.nos_projets .bloc_realisations {
    margin-top: -200px;
    z-index: 2;
}

.nos_projets .bloc_realisations .slick-track {
    margin: unset;
}

.nos_projets .img_pneu {
    position: absolute;
    top: 80%;
    left: 0;
    transform: translateX(-80%);
    z-index: -1;
    max-height: 400px;
    overflow: hidden;
}

.page_accueil .nos_projets .img::after {
    /*height: 800px;*/
    height: 1100px;
}

.article-confiance {
    background: var(--color-lightgrey);
    margin-bottom: 90px;
}

.confiance h2 span {
    background: url(/images/fond_bleu_rectangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px 30px 1px 30px;
    color: #fff;
    font-size: 32px;
}

.confiance {
    padding-top: 45px;
}

.confiance h2 {
    margin-bottom: 40px;
}

.confiance_detail .slick-slide img {
    display: block;
    height: 180px;
    object-fit: contain;
    padding: 0 20px;
}

.confiance_detail {
    padding-bottom: 40px;
}

.page-actu-detail h1 span {
    font-size: 28px;
}

/*============================================================================================================*/

/*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;
}

.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 .btn_qte {
    width: 30px;
    height: 30px;
    border: 1px solid black;
    cursor: pointer;
    user-select: none;
}

/*============================================================================================================*/

/* Page panier */
.lienPanier {
    display: block;
    width: 30px;
    height: 30px;
}

.lienPanier img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.listePaniersContent {
    margin: 10px auto;
}

.listePaniersContent .listePaniers {
    margin-top: 10px;
    border: solid 1px lightgray;
    padding: 10px;
}

.listePaniersContent .listePaniers>.titre {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px lightgray;
}

.listePaniersContent .listePaniers .panier {
    padding: 10px;
    border: solid 1px lightgray;
}

.listePaniersContent .listePaniers .panier a {
    cursor: pointer;
}

.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;
}

.pagePanier .detailPanier .panier table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 10px;
}

.pagePanier .detailPanier .panier th {
    padding: 10px;
    font-weight: 500;
    color: black;
}

.pagePanier .detailPanier .panier th:first-child {
    text-align: left;
    padding-left: 50px;
}

.pagePanier .detailPanier .panier tr:not(:last-child) {
    border-bottom: solid 1px #cfd0d2;
}

.pagePanier .detailPanier .panier td {
    color: black;
    position: relative;
    padding: 30px 0px;
}

.pagePanier .detailPanier .panier td:not(:last-child):not(:nth-child(4))::after {
    content: '';
    width: 1px;
    height: 60%;
    background: #cfd0d2;
    position: absolute;
    top: 20%;
    right: 0;
}

.pagePanier .detailPanier .panier td:first-child {
    width: 30%;
    padding-right: 10px;
}

.pagePanier .detailPanier .panier td:first-child .img {
    width: 45%;
}

.pagePanier .detailPanier .panier td:first-child img {
    width: 100%;
}

.pagePanier .detailPanier .panier td:first-child .titre {
    width: 50%;
}

.pagePanier .detailPanier .panier td:first-child p:first-child a {
    color: black;
}

.pagePanier .detailPanier .panier td:first-child p:first-child a:hover {
    color: var(--main-color);
}

.pagePanier .detailPanier .panier td:not(:first-child) p {
    text-align: center;
}

.pagePanier .detailPanier .panier td:nth-child(3) p {
    width: 30px;
    height: 30px;
    background: var(--main-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagePanier .detailPanier .panier td:nth-child(3) button {
    width: 30px;
    height: 30px;
    background: white;
    border: solid 1px var(--main-color);
    cursor: pointer;
    font-size: 18px;
}

.pagePanier .detailPanier .panier .deleteProduit {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url(../images/picto_supprimer.svg);
    background-size: 100% auto;
    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 slider ****/
.type_galerie{
    margin-top: 40px;
    margin-bottom: 40px;
}

.type_galerie h2{
    margin-bottom: 20px;
}

.contenu_galerie{
    margin-top: 30px;
    margin-bottom: 20px;
}

.contenu_galerie .slide {
    padding: 0 30px;
}

.contenu_galerie_partenaire{
    max-width: 100%;
}


.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;
}