/*
Kate style
*/

/********************/
/****** HEADER ******/
/********************/
.header_container {
    display: block;
}
.header_strap {
    position: relative; /* pour le btn navtop resp */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0 29px;
    margin: 0 184px;
}
#searchform {
    display: flex;
}
#searchform input {
    box-sizing: border-box;
    padding: 11px 15px;
    background-color: var(--gris2);
    border: unset;
}
#searchform #s {
    line-height: normal;
    padding-right: 79px;
    color: var(--bleu1);
    border-radius: 5px 0 0 5px;
}
#searchform {
    display: flex;
    border-radius: 5px;
}
/* Focus sur la barre de recherche */
#searchform:has(#s:focus) {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
}
#searchform #s:focus {
    outline: none;
}
#searchform #searchsubmit {
    border-radius: 0 5px 5px 0;
}

#logo {
    position: relative;
    margin-left: -234px;
}
#logo img {
    position: relative;
    z-index: 2;
}
#logo a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.widget_wpml_btn {
    display: none;
}
.header_tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    width: fit-content;
}
.header_tools a {
    padding: 2px;
}
.header_tool_account {
    display: block;
    width: 23px;
    height: 23px;
}
.header_tool_basket {
    display: block;
    width: 25px;
    height: 25px;
}
.header_tools a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
#navtop {
    margin: 0 169px;
}
#navtop ul {
    display: flex;
    justify-content: space-between;
    column-gap: 23px;
}
#navtop ul li {
    position: relative; /* pour le ss-menu */
    display: inline-block;
    padding-bottom: 11px;
}
#navtop ul li a {
    display: block;
    text-decoration: unset;
}
#navtop ul li.menu-item-has-children {
    padding-right: 13px;
    margin-right: 5px;
}
#navtop ul li.menu-item-has-children {
    position: relative; /* pour le before & after */
}
#navtop ul li.menu-item-has-children:after {
    position: absolute;
    content: "";
    display: block;
    width: 8px;
    height: 5px;
    background: url("../img/menu_dropdown_arrow_grey.svg") no-repeat center;
    top: 12px;
    right: 0;
}
/*** État HOVER ***/
#navtop ul li:hover a {
    color: var(--bleu1);
}
/* Trait souligné de gauche à droite : */
#navtop ul li:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bleu3);
  transform-origin: bottom left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#navtop ul li:hover::before,
#navtop ul li.current-menu-item:before {
  transform-origin: bottom left;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

/*** Bordure gauche de la li "protecflam" ***/
#navtop ul li.sliced_menu {
    padding-left: 20px;
    background-image: linear-gradient(var(--gris1), var(--gris1));
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 1px 22px;
}

/*** SOUS-MENU ***/
#navtop ul ul li:after {
    display: none;
}
#navtop ul li ul {
    position: absolute;
    display: none;
    width: fit-content;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 29px 100px;
    box-sizing: border-box;
    padding: 35px 46px 45px;
    margin: auto;
    top: 38px;
    right: -100px;
    left: -100px;
    background-color: var(--gris2);
    border-radius: var(--rad10);
    z-index: 100;
}
#navtop ul li:hover ul {
    display: grid;
}
#navtop ul li ul li {
    padding-bottom: 0;
}
#navtop ul li ul li.submenu_back_arrow {
    display: none;
}
#navtop ul ul li:before,
#navtop ul ul li:after {
    display: none;
}
#navtop ul li ul li a {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
}
#navtop ul li ul li a p {
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

/*** Bouton pour search form responsive (loop + croix) ***/
.resp_search_form_pic_container {
    display: none;
    background: url("../img/resp_search_form_picto.svg") no-repeat center;
    width: 25px;
    height: 25px;
    margin-left: 82px;
}
#searchform_close {
    display: none;
    position: absolute;
    background: url("../img/cross_close_searchbar.svg") no-repeat center;
    width: 15px;
    height: 15px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
/** Spécial sous-menu "sub-menu" sur 2 colonnes : **/
#navtop ul li ul.sub-menu {
    width: max-content;
    gap: 0;
    /*gap: 29px 20px;*/
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
#navtop ul li ul.sub-menu li {
    max-width: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15px;
}
#navtop ul li ul.sub-menu li:nth-child(5n) {
    margin-bottom: 0;
}

/*** Bouton navtop (affiché sous 980px) ***/
#navtop_bt {
    display: none;
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--bleu1);    /* couleur de mes barres horizontales */
    left: 0;
    top: 48px;
    cursor: pointer;
    z-index: 888;
}
#navtop_bt.bt_navtop_hover {
    background-color: var(--wh);
}
.navtop_bt_span {
    position: relative;
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--bleu1);
}
.bt_navtop_hover .navtop_bt_span:first-of-type {
    transform: rotate(-45deg);
    top: 10px;
    background-color: var(--bleu1) !important;
}
.bt_navtop_hover .navtop_bt_span:nth-child(2) {
    display: none;
}
.bt_navtop_hover .navtop_bt_span:last-of-type {
    transform: rotate(45deg);
    top: 1px;
    background-color: var(--bleu1) !important;
}
.bt_navtop_hover .navtop_bt_span {
    background: none;
    transition: all 0.3s;
}


/********************/
/****** FOOTER ******/
/********************/
#footer {
    display: block;
    background-color: var(--bleu1);
}
.footer_container  {
    display: block;
    padding: 30px 0 17px;
}
.bloc_reassurances_options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 13px 24px;
    margin-bottom: 22px;
    background-color: var(--bleu2);
    border-radius: var(--rad5);
}
.bloc_single_rea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 255px;
}
.single_rea_pic {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
.single_rea_pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.single_rea_title {
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: var(--wh);
}
.footer_main_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 5%;
    margin-bottom: 10px;
}
.company_infos {
    width: 198px;
}
.company_contacts {
    display: block;
    margin-bottom: 10px;
}
.footer_logo {
    position: relative; /* pour le lien <a> */
    display: block;
    width: 175px;
    height: 73px;
    margin-bottom: 19px;
}
.footer_logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.footer_logo a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.footer_tel,
.footer_contact {
    width: fit-content;
    margin-bottom: 10px;
}
.footer_tel a,
.footer_contact a {
    text-decoration: unset;
}
.footer_tel:hover a,
.footer_contact:hover a {
    color: var(--wh);
}
.footer_tel.classic_btn_wizpic:before,
.footer_contact.classic_btn_wizpic:before {
    position: absolute;
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}
.footer_tel.classic_btn_wizpic:before {
    background: url("../img/footer_tel.svg") no-repeat center;
}
.footer_contact.classic_btn_wizpic:before {
    background: url("../img/footer_mail.svg") no-repeat center;
}
.footer_tel.classic_btn_wizpic:hover:before {
    background: url("../img/footer_tel_white.svg") no-repeat center;
    transition: all 0.3s;
}
.footer_contact.classic_btn_wizpic:hover:before {
    background: url("../img/footer_mail_white.svg") no-repeat center;
    transition: all 0.3s;
}
.footer_schedule:last-child {
    margin-bottom: 10px;
}
.footer_schedule p {
    line-height: normal;
    max-width: 164px;
    color: var(--wh);
}
.company_social_media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}
.company_social_media a {
    display: block;
    width: 24px;
    height: 24px;
}
.company_social_media a.linkedin {
    background: url("../img/footer_linkedin.svg") no-repeat center;
}

.footer_menu {
    position: relative; /* pour les logos partenaires */
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 3.3%;
}
.widget_footer {
    width: 230px;
}
.widget_footer .widget_title {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 20px 0 14px;
    text-transform: uppercase;
    color: var(--wh);
}
.widget_footer ul li {
    line-height: normal;
    margin-bottom: 14px;
}
.widget_footer ul li a {
    text-decoration: unset;
    color: var(--wh);
    transition: all 0.3s;
}
.widget_footer ul li a:hover {
    color: var(--vert-pomme);
    transition: all 0.3s;
}
.bloc_partners {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 10px;
    right: 0;
    bottom: -43px;
}
.partner_logo {
    display: block;
}

.footer_bottom {
    display: block;
    margin-top: 9px;
}
.signature {
    text-align: center;
    color: var(--wh);
}
.signature a {
    text-decoration: unset;
    color: var(--wh);
    transition: all 0.3s;
}
.signature a:hover {
    color: var(--vert-pomme);
    transition: all 0.3s;
}

/******************/
/*** Breadcrumb ***/
/******************/
#breadcrumb {
    margin-top: 10px;
    margin-bottom: 39px;
}
.single-product #breadcrumb {
    margin: 42px 0 16px;
}
#breadcrumb_content {
    display: block;
    font-size: 0;
}
.breadcrumb_item {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
}
.breadcrumb_item:last-of-type {
    font-weight: 400;
}
.breadcrumb_item:not(:last-of-type):after {
    display: inline-block;
    content: '';
    background: url("../img/arrow_breadcrumb.svg") no-repeat center;
    width : 8px;
    height : 16px;
    margin: auto 12px;
    vertical-align: middle;
}
.breadcrumb_item a {
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--bleu1);
}
.breadcrumb_item a:hover {
    text-decoration: underline;
}

/*******************/
/****** CHAPO ******/
/*******************/
.chapo_classic {
    position: relative; /* pour le bckgd lune */
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
}
.chapo_classic_responsive {
    display: none;
}
/* version responsive avec la balise <img> au lieu du background-image */
.chapo_product_cat_pic_container,
.chapo_product_cat_pic_container_nopic {
    position: relative; /* pour le bckgd lune */
    display: block;
    height: 440px;
}
.chapo_product_cat_pic_container_nopic {
    background-color: var(--bleu3);
}
.chapo_product_cat_pic_container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.chapo_container {
    display: block;
    padding: 140px 0 88px;
    z-index: 1;
}
.chapo_container_pic,
.chapo_container_pic_large {
    position: absolute;
    content: "";
    display: block;
    background: url("../img/lune_chapo.svg") no-repeat center center;
    width: 835px;
    height: 1428px;
    top: 0;
    left: -45px;
    z-index: 2;
}
.chapo_product_cat_gammes_pic {
    position: absolute;
    content: "";
    display: block;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 33px 25px;
    background-color: var(--wh);
    border-radius: var(--rad10);
    z-index: 3;
}
.chapo_product_cat_gammes_pic img {
    display: block;
    width: auto;
    max-width: 266px;
    height: 59px;
    max-height: 65px;
    object-fit: contain;
    object-position: center;
}
.chapo_classic .classic_title_h1,
.chapo_desc {
    position: relative;
    max-width: 525px;
    z-index: 3;
}
.chapo_desc {
    display: block;
    max-width: 480px;
    color: var(--wh);
}


/********************/
/******* PAGES ******/
/********************/

/*** 404 ***/
/***********/
#page_404{
display: flex;
flex-wrap: wrap;
padding: 94px 0 94px;
}
#page_404_ill_block{
width: 36.5%;
margin: 0 9.8% 0 0;
}
#page_404_ill_block object{
width: 100%;
max-width: 511px;
height: auto;
margin: auto;
}
#page_404_ill_main{
flex: 1;
padding-top: 53px;
}


/*** PAGE BLOG ***/
/*****************/
.widget_page_filtres {
    display: block;
    margin-bottom: 79px;
}
.widget_filtre_title {
    display: block;
    line-height: 22px;
    margin-bottom: 13px;
}
.widget_page_filtres ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 13px;
    margin-bottom: 79px;
}
.widget_page_filtres ul li a {
    display: inline-block;
    line-height: 14px;
    padding: 9px 18px;
    border-radius: 45px;
    text-decoration: none;
    border: 1px solid var(--turquoise);
    transition: all 0.3s;
}
.widget_page_filtres ul li.current_page_item a,
.widget_page_filtres ul li.current-menu-item a {
    background-color: var(--bleu1);
    border: 1px solid var(--bleu1);
    color: var(--wh);
}
.widget_page_filtres ul li:not(.current_page_item):hover a,
.widget_page_filtres ul li:not(.current-menu-item):hover a {
    background-color: var(--turquoise);
    color: var(--wh);
    transition: all 0.3s;
}
.bloc_list_single_cards {
    display: block;
    margin-bottom: 100px;
}
.list_single_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
}
.single_card {
    position: relative; /* pour le lien <a> */
    display: block;
    width: 423px;
    box-sizing: border-box;
    padding: 17px 17px 26px;
    border-radius: 10px;
    background: var(--gris2);
    border: 1px solid var(--gris2);
    transition: all 0.3s;
}
.single_card:hover {
    border: 1px solid var(--bleu3);
    transition: all 0.3s;
}
.single_card_top {
    position: relative; /* pour la catégorie */
    display: block;
    margin-bottom: 13px;
}
.single_card_thumb,
.single_card_nothumb {
    display: block;
    width: 100%;
    height: 206px;
}
.single_card_nothumb {
    background-color: var(--wh);
    border-radius: var(--rad10);
}
.single_card_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--rad10);
}
.single_card_category {
    position: absolute;
    content: '';
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 11px;
    top: 17px;
    left: 17px;
    color: var(--wh);
    background-color: var(--bleu3);
    border-radius: 19px;
}
.single_card_title {
    display: block;
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 15px;
}
.single_card_excerpt {
    display: block;
    line-height: 23px;
    margin-bottom: 30px;
}
.single_card_date {
    display: block;
    line-height: 23px;
}
.single_card a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/***********************************/
/***** SINGLE CPT RÉALISATIONS *****/
/***********************************/
.chapo_single_rea_front {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}
.chapo_single_rea_slider {
    display: block;
    width: fit-content;
}
.myChapo_rea_slider  {
    height: fit-content;
    margin-bottom: 16px;
}
.myChapo_rea_slider .swiper-wrapper {
    width: 650px;
    height: fit-content;
}
.chapo_rea_single_large_pic {
    display: block;
    width: 100%;
    max-width: 650px;
    height: 537px;
}
.chapo_rea_single_large_pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--rad10);
}
.chapo_rea_slider_btn.swiper-button-prev,
.chapo_rea_slider_btn.swiper-button-next {
    width: 44px;
    height: 44px;
}
.chapo_rea_slider_btn.swiper-button-prev:after,
.chapo_rea_slider_btn.swiper-button-next:after {
    content: '';
    background: url("../img/fleche_slider_rond_blanc.svg") no-repeat center;
    width: 44px;
    height: 44px;
}
.chapo_rea_slider_btn.swiper-button-next:after {
    transform: rotate(180deg);
}
.chapo_rea_minipics {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.chapo_rea_single_minipic {
    display: block;
    width: 105px;
    height: 87px;
}
.chapo_rea_single_minipic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--rad10);
}
.chapo_rea_single_minipic {
    cursor: pointer;
}

.chapo_single_rea_maincontent {
    flex: 1;
}
.single_rea_maintitle h1 {
    line-height: normal;
    margin-bottom: 24px;
    color: var(--bleu1);
}
.chapo_single_rea_content {
    margin-bottom: 27px;
}
.bloc_informations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 29px 15px;
    box-sizing: border-box;
    padding: 33px 36px 9px;
    background-color: var(--gris2);
    border-radius: var(--rad10);
}
.bloc_infos_duo {
    position: relative; /* pour le :after picto */
    display: block;
    margin-bottom: 29px;
}
.bloc_infos_title {
    font-weight: 800;
    line-height: 25px;
    padding-left: 29px;
    text-transform: uppercase;
    color: var(--turquoise);
}
.bloc_infos_answer {
    font-weight: 500;
    padding-left: 29px;
}
.bloc_infos_picto {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
}
.bloc_infos_picto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.bloc_solutions_two_cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 95px;
}
.bloc_solut_col {
    flex: 1;
    display: block;
    box-sizing: border-box;
    padding: 28px 35px 65px 28px;
    border-radius: var(--rad10);
}
.bloc_solut_maintitle_container {
    display: flex;
    justify-content: flex-start;
    gap: 28px;
    align-items: center;
    margin-bottom: 38px;
}
.bloc_solut_picto {
    display: block;
    width: 36px;
    height: 36px;
    padding: 17px 16px 16px;
    border-radius: var(--rad10);
}
.bloc_solut_picto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
#bloc_solut_col_left {
    background: var(--degrad-vert);
}
#bloc_solut_col_right {
    background: var(--degrad-bleu);
}
#bloc_solut_col_left .bloc_solut_picto {
    background-color: var(--vert-pomme);
}
#bloc_solut_col_right .bloc_solut_picto {
    background-color: var(--turquoise);
}
.bloc_solut_maintitle.classic_title_h2_white {
    margin-bottom: 0;
}
.bloc_solut_list {
    display: block;
}
.bloc_single_solut {
    margin-bottom: 24px;
    color: var(--wh);
}
.single_solut_title {
    position: relative; /* pour le :before picto */
    display: block;
    font-weight: 700;
    line-height: 27px;
    padding-left: 72px;
}
.single_solut_title:before {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/check_puce_blanc.svg") no-repeat center;
    width: 25px;
    height: 25px;
    left: 30px;
    top: 0;
}
.single_solut_text {
    display: block;
    padding-left: 72px;
}

/********************************/
/*** PAGE MASTER (et Contact) ***/
/********************************/
/********** GUTENBERG ***********/
/********************************/
.bloc_gut_image_texte .bloc_gut_image_texte_cols_puces_check {
    gap: 17px !important;
}
.bloc_btn_green_notext.classic_btn_simple {
    left: -6px;
    padding: 18px 54px 18px 0;
}
.bloc_exemples_container .bloc_exemples_intro .classic_btn_simple:hover {
    color: var(--wh) !important;
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list .wc-block-components-product-image a:has(img) {
    overflow: hidden;
    border-radius: var(--rad10);
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list .wc-block-components-product-image a img {
    border-radius: var(--rad10) !important;
    transition: all 0.3s;
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list .wc-block-components-product-image a:hover img {
    transform: scale(1.05);
    transition: all 0.3s;
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list li h2.wp-block-post-title {
    line-height: normal;
    margin-bottom: 12px;
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list li h2.wp-block-post-title a {
    font-size: 16px;
    font-weight: 700;
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list li h2.wp-block-post-title a:hover {
    color: var(--bleu1);
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list .product_price_subtitle {
    line-height: normal;
    margin-bottom: 0;
}
.bloc_gut_remontee_prod .bloc_remontee_prod_list .product_price {
    font-weight: 700;
}
.bloc_chiffres_cle_container .bloc_chiffres_cle_maintitle {
    margin-bottom: 73px;
}
.bloc_chiffres_cle_container .bloc_chiffre_cle_single {
    border-bottom: 1px solid var(--gris1);
}
.bloc_chiffres_cle_container .chiffre_cle_single_title {
    font-size: 55px !important;
    line-height: 50px;
    margin-bottom: 10px;
}
.bloc_gut_form_container .bloc_gut_form {
    gap: 6.5%;
}
.bloc_gut_form_page_contact_container .bloc_form_intro_n_form {
    display: flex;
    justify-content: flex-start;
    gap: 43px;
}
.bloc_gut_form_page_contact_container .bloc_gut_form_page_contact_intro {
    flex-basis: unset;
    width: 536px;
}
.bloc_gut_form_page_contact_container .bloc_gut_form_page_contact_intro .bloc_page_contact_intro_bloc_adresse {
    gap: 15px;
}
.bloc_gut_form_page_contact_container .bloc_form_page_contact_form,
.bloc_gut_form_page_contact_container .bloc_gut_form_page_contact_intro_content {
    flex: 1;
}
.bloc_gut_form_page_contact_container .bloc_gut_form_page_contact_intro_content {
    flex-basis: unset !important;
}
.bloc_gut_form_page_contact_container .bloc_gut_form_tel_n_media .classic_btn_wizpic_gut {
    width: -webkit-fill-available;
    padding: 10px 22px 10px 51px;
}
.bloc_gut_form_page_contact_container .bloc_gut_form_tel_n_media .classic_btn_wizpic_gut:before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    background-color: currentColor;

    -webkit-mask-image: url('../img/contact_phone.svg');
    mask-image: url('../img/contact_phone.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.bloc_gut_form_page_contact_container .bloc_gut_form_tel_n_media {
    justify-content: flex-start;
    gap: 9px;
}
.bloc_gut_form_page_contact_container .bloc_gut_page_contact_download_btn .classic_btn_wizpic_gut {
    width: -webkit-fill-available;
}
.bloc_gut_form_page_contact_container .bloc_gut_page_contact_download_btn .classic_btn_wizpic_gut,
.bloc_gut_form_page_contact_container .classic_download_btn > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-sizing: border-box;
    font-size: 19px;
    font-weight: 700;
    line-height: 34px;
    width: 100%;
    padding: 13px 24px;
    text-decoration: unset;
    text-align: center;
    color: var(--bleu1);
    background: var(--vert-pomme);
    border-radius: var(--rad5);
    transition: all 0.3s;
}
.bloc_gut_form_page_contact_container .bloc_gut_page_contact_download_btn .classic_btn_wizpic_gut:before,
.bloc_gut_form_page_contact_container .classic_download_btn > a::before {
    content: '';
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;

    background-color: currentColor;

    -webkit-mask: url('../img/btn_download_picto.svg') no-repeat center / contain;
    mask: url('../img/btn_download_picto.svg') no-repeat center / contain;
}
.bloc_gut_form_page_contact_container .bloc_gut_page_contact_download_btn .classic_btn_wizpic_gut:hover,
.bloc_gut_form_page_contact_container .classic_download_btn > a:hover {
    color: var(--wh) !important;
    background: var(--bleu3);
}

/********************/
/*** PAGE ACCUEIL ***/
/********************/
.chapo_classic.chapo_homepage {
    margin-bottom: 106px;
    overflow: hidden;
}
.chapo_classic.chapo_homepage .chapo_container {
    padding: 263px 0 109px;
}
.chapo_classic.chapo_homepage h1,
.chapo_classic_responsive.chapo_homepage h1 {
    margin-bottom: 0;
}
.chapo_classic.chapo_homepage h1 .classic_title_h2,
.chapo_classic_responsive.chapo_homepage h1 .classic_title_h2 {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    max-width: 678px;
    color: var(--wh);
    z-index: 3;
}
.chapo_classic.chapo_homepage .chapo_container_pic {
    left: -45px;
}

/***  Bloc REMONTEE PROD SLIDER ***/
.bloc_remontee_prod_slider_front {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 53px;
}
.mySwiperHomeProducts {
    order: 2;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}
.bloc_remontee_prod_slider_front .bloc_remontee_prod_slider_desc_container {
    order: 1;
    position: relative;
    display: block;
    padding-left: 11%;
    width: 291px;
}
.bloc_remontee_prod_slider_front .bloc_remontee_prod_slider_desc {
    position: relative;
    display: block;
    max-width: 284px;
    min-height: 400px;
    padding-right: 24px;
    background-color: var(--wh);
}
.mySwiperHomeProducts .swiper-wrapper {
    justify-content: flex-start;
    gap: 0 !important;
    height: auto;
    padding-bottom: 44px;
    z-index: 1;
}
.mySwiperHomeProducts .swiper-slide {
    flex: 0 0 290px;
    width: 290px !important;
    height: auto;
}
.mySwiperHomeProducts .swiper-slide .single_product_card_pic {
    width: 290px;
    height: 282px;
}
.home_prod_btn_prev.swiper-button-prev,
.home_prod_btn_next.swiper-button-next {
    top: auto !important;
    bottom: 0 !important;
    width: 44px;
    height: 44px;
    color: transparent !important;
    cursor: pointer;
    z-index: 2;
}
.home_prod_btn_prev.swiper-button-prev {
    right: 17.5% !important;
    left: unset;
}
.home_prod_btn_next.swiper-button-next {
    right: 11.7% !important;
    left: auto !important;
}
.home_prod_btn_prev:after,
.home_prod_btn_next:after {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    background: url("../img/arrow_slider_home.svg") no-repeat center;
}
.home_prod_btn_prev:after {
    transform: rotate(180deg);
}
.bloc_select_product_cat_front {
    display: flex;
    justify-content: flex-start;
    gap: 25px 66px;
    box-sizing: border-box;
    padding: 51px 70px 51px 72px;
    margin-bottom: 123px;
    background: var(--degrad-vert);
    border-radius: var(--rad10);
}
.select_product_cat_desc {
    display: block;
    width: 403px;
}
.bloc_select_product_cat_maintitle {
    font-size: 24px;
    margin-bottom: 13px;
}
.bloc_select_product_cat_text,
.bloc_select_product_cat_subtitle {
    color: var(--wh);
}
.bloc_select_product_cat_subtitle {
    flex: 1;
    line-height: normal;
}
.select_product_cat_selection {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}
.select_product_cat_selection_container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.bloc_select_product_cat_select {
    flex: 1;
    display: block;
    box-sizing: border-box;
    padding: 16px;
}
.bloc_select_product_cat_select option {
    font-size: 16px;
    line-height: normal;
}
.select_product_cat_selection_container button {
    display: block;
    border: 0;
}
.bloc_trust {
    display: flex;
    justify-content: space-between;
    gap: 45px 81px;
    margin-bottom: 123px;
}
.bloc_trust_mainpic {
    display: block;
    height: 100%;
    max-width: 560px;
    aspect-ratio: 560 / 670;
}
.bloc_trust_mainpic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--rad10);
}
.bloc_trust_content {
    flex: 1;
    display: block;
}
.bloc_trust_titles {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 13px;
    margin-bottom: 46px;
}
.bloc_trust_maintitle.classic_title_h2 {
    margin-bottom: 0;
}
.bloc_trust_list_qualities {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.bloc_trust_single_quality {
    display: block;
    width: 46.5%;
}
.bloc_link_cards {
    margin-bottom: 145px;
}
.bloc_link_cards_container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.bloc_single_link_card {
    flex: 1;
    position: relative; /* pour le titre + lien <a> */
    display: block;
    width: clamp(200px, 40vw, 424px);
    aspect-ratio: 424 / 444;
    border-radius: var(--rad10);
    transition: all 0.3s;
}
.single_link_card_pic {
    position: relative; /* pour le :hover flèche */
    display: block;
}
.single_link_card_pic img {
    display: block;
    width: 100%;
    height: 444px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--rad10);
}
.single_link_card_title {
    position: absolute;
    display: block;
    font-size: 53px;
    line-height: 53px;
    max-width: 296px;
    padding-right: 20px;
    bottom: 25px;
    left: 32px;
    margin-bottom: 0;
}
.bloc_single_link_card a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.bloc_single_link_card:after {
    position: absolute;
    content: '';
    display: block;
    background: url('../img/arrow_white_transparent.svg') no-repeat center;
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 28px;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.4s ease
    ;
}
.bloc_single_link_card:hover::after {
    opacity: 1;
    visibility: visible;
}
.myLogoSwiper {
	position: relative; /** pour les effacés blancs sur les côtés du slider */
	display: block;
	margin-bottom: 72px;
	overflow: hidden;
    z-index: 1;
}
.myLogoSwiper:after {
	position: absolute;
	content: '';
	background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0.17%, #FFF 99.83%);
	width: 66px;
	height: 100%;
	top: 0;
	z-index: 2;
}
.myLogoSwiper:after {
	right: 0;
	transform: rotate(180deg);
}
.slider_logos_container {
	display: flex;
	align-items: center;
	column-gap: 66px;
	animation: scrollLogos 30s linear infinite; /* fonction pour créer défilement CSS */
    z-index: 1;
}
@keyframes scrollLogos {
    0% {
        transform: translateX(0); /* à 0% j'affiche les logos, à 100% l'élément est décalé vers la gauche de 100% de sa largeur et boucle indéfiniment avec "infinite" */
    }
    100% {
        transform: translateX(-100%);
    }
}
.single_logo {
	display: block;
	width: auto;
	max-width: 105px;
	height: 60px;
}
.single_logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.slider_logos_title_container {
    position: relative;
    background-color: transparent;
    z-index: 2;
}
.slider_logos_title {
    position: absolute;
    display: block;
    width: fit-content;
    padding: 25px 45px 25px 0;
    margin-bottom: 0;
    top: -11px;
    background-color: var(--wh);
    overflow: visible;
    z-index: 2;
}
.slider_logos_title:before {
    position: absolute;
    content: '';
    top: 0;
    right: 100%; /* commence exactement au bord gauche du titre */
    width: 100vw; /* part suffisamment loin vers la gauche */
    height: 100%;
    background: var(--wh);
    z-index: 1;
    pointer-events: none;
}
.slider_logos_title:after {
	position: absolute;
	content: '';
	background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0.17%, #FFF 99.83%);
	width: 66px;
	height: 100%;
	top: 0;
    right: -66px;
	z-index: 2;
}

/*****************************/
/*** PAGE WOO - Mon compte ***/
/*****************************/
.woo_my_account {
    margin-bottom: 100px;
}
.woo_my_account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.woo_my_account .woocommerce-MyAccount-navigation {
    display: block;
    width: 292px;
}
.woo_my_account .woocommerce-MyAccount-navigation ul {
    display: block;
    padding: 39px 40px 48px 30px;
    border: 1px solid var(--turquoise);
    border-radius: var(--rad10);
    margin: 0 0 30px;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li {
    position: relative;
    line-height: 24px;
    padding: 0 0 0 14px;
    margin: 0;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li:not(:last-child) {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--turquoise);
  margin-bottom: 30px;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li a {
    font-size: 20px;
    text-decoration: none;
    color: var(--turquoise);
    background: unset;
    transition: all 0.3s;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--bleu1);
    transition: all 0.3s;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
  padding-left: 0;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a,
.woocommerce-page .woocommerce-message .button,
.woocommerce form p button.woocommerce-Button {
    position: relative; /* pour la flèche */
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 11px;
    padding: 18px 54px 18px 22px;
    text-decoration: unset;
    color: var(--bleu1) !important;
    background: var(--vert-pomme);
    border-radius: var(--rad5);
    transition: all 0.3s;
}
.woocommerce form p button.woocommerce-Button {
    width: fit-content;
    margin-top: 20px;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce form p button.woocommerce-Button:hover {
    color: var(--bleu1) !important;
    background-color: var(--vert-pomme) !important;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::after,
.woocommerce-page .woocommerce-message .button:after,
.woocommerce form p button.woocommerce-Button:after {
    position: absolute;
    content: '';
    background-image: url('../img/fleche_blanche_bouton.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--turquoise);
    width: 9px;
    height: 7px;
    padding: 6px 8px;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    border-radius: var(--rad90);
    transition: all 0.3s;
}
.woo_my_account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover::after,
.woocommerce-page .woocommerce-message .button:hover::after,
.woocommerce form p button.woocommerce-Button:hover::after {
    padding: 6px 12px;
    right: 14px;
    transition: all 0.3s;
}
.woo_my_account .woocommerce-MyAccount-content {
    flex: 1;
}
.woocommerce-info,
.woocommerce-message {
    border-top-color: var(--turquoise);
}
.woocommerce-error {
    border-top-color: var(--orange);
}
.woocommerce-message::before,
.woocommerce-info:before {
    color: var(--turquoise);
}
.woocommerce-error:before {
    color: var(--orange);
}
.woocommerce table.shop_table {
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--bleu3);
    border-radius: var(--rad10);
}
.woocommerce table.my_account_orders th {
    padding: 24px 12px;
}
.woocommerce table.shop_table tbody tr:first-child {
    border-top: 3px solid var(--bleu3);
}
.woocommerce table.my_account_orders .button.view {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 11px;
    padding: 18px 54px 18px 22px;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    color: var(--bleu1);
    background-color: var(--vert-pomme);
    border: 1px solid var(--vert-pomme);
    border-radius: var(--rad5);
    transition: all 0.3s;
}
.woocommerce table.my_account_orders .button.view:after {
    position: absolute;
    content: '';
    background-image: url('../img/fleche_blanche_bouton.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--turquoise);
    width: 9px;
    height: 7px;
    padding: 6px 8px;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    border-radius: var(--rad90);
    transition: all 0.3s;
}
.woocommerce table.my_account_orders .button.view:hover {
    color: var(--bleu1) !important;
}
.woocommerce table.my_account_orders .button.view:hover::after {
    padding: 6px 12px;
    right: 14px;
    transition: all 0.3s;
}

.woocommerce .woocommerce-Addresses,
.woocommerce .woocommerce-order-details {
    margin-top: 25px;
}
.woocommerce .woocommerce-order-details h2 {
    margin-bottom: 15px;
}
.woocommerce .woocommerce-customer-details address {
    border: 1px solid var(--turquoise);
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  width: 100%;
}
.woocommerce-account .addresses .woocommerce-Address-title {
    display: block;
    margin-bottom: 40px;
}
.woocommerce-account .addresses .title h2 {
    margin-bottom: 17px;
}
.woocommerce-account .addresses .title h3,
.woocommerce-account .addresses .title .edit {
    float: unset;
}
.woocommerce-account .addresses address {
    line-height: 26px;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--orange);
    border-radius: var(--rad10);
}
.woocommerce form .form-row {
    padding: 3px;
    margin: 0 0 6px;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  padding: 9px 8px;
  color: var(--bleu1);
  background-color: var(--gris2);
  border: none;
  border-radius: var(--rad5);
}

/******************************/
/*** PAGE WOO - Page PANIER ***/
/******************************/
.page.woocommerce-page .classic_title_h1 h1 {
    text-align: left;
    color: var(--wh);
}
.wc-block-cart table.wc-block-cart-items th,
.wc-block-cart .wc-block-cart__totals-title {
    font-size: 17px;
}
.wc-block-cart table tbody {
    border: 1px solid var(--turquoise);
    border-radius: var(--rad5);
}
.wc-block-cart table tbody tr td.wc-block-cart-item__image {
    width: 80px;
    padding-left: 20px;
    border-top: unset;
}
.wc-block-cart table tbody tr td.wc-block-cart-item__image img {
    border-radius: var(--rad5);
}
.wc-block-cart table tbody tr td.wc-block-cart-item__product {
    padding-left: 15px !important;
    border-top: unset !important;
}
.wc-block-cart table tbody tr td a.wc-block-components-product-name {
    font-size: 18px !important;
    margin-bottom: 9px;
}
.wc-block-cart table tbody tr td.wc-block-cart-item__prices {
    padding-bottom: 10px !important;
}
.wc-block-cart table tbody tr td.wc-block-cart-item__total {
    font-weight: 500 !important;
    padding-right: 20px;
    border-top: unset;
}
.kal-suffix-ttc {
	font-size: .8em;
	font-weight: 400;
	opacity: .7;
	white-space: nowrap;
}
/*** Bloc "Total panier" ***/
.wc-block-components-textarea,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
    box-sizing: border-box;
    padding: 30px 20px;
    background-color: var(--gris2);
    border: unset;
    border-radius: var(--rad10);
}

/*** Bloc "Validation de la commande" ***/
.wp-block-woocommerce-checkout form h2.wc-block-components-title,
.wc-block-components-checkout-order-summary__title-text {
    font-size: 26px !important;
    font-weight: 800 !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    margin-right: 10px !important;
}
.wc-block-components-form .wc-block-components-checkout-step {
    margin: 0 0 35px;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border-color: var(--turquoise);
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked::before {
    background: var(--turquoise);
}
#shipping-fields .wc-block-components-address-card,
.wp-block-woocommerce-checkout form #contact input {
    background-color: var(--gris2);
    border: unset;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
#shipping-option .wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: unset;
    border: 2px solid var(--turquoise);
}
.wp-block-woocommerce-checkout-order-summary-block {
    background: var(--gris2);
}

/***  PAGE VALIDATION COMMANDE ***/
.woocommerce ul.order_details {
    margin-top: 50px;
}
.woocommerce .woocommerce-order-details {
    box-sizing: border-box;
    padding: 40px 60px 45px;
    background: var(--gris2);
    border-radius: var(--rad10);
}
.woocommerce ul.order_details li {
    margin-bottom: 15px;
}

/*********************/
/*** STICKY BUTTON ***/
/*********************/
#sticky_btn {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 17px 12px 16px;
    top: 79vh;
    right: 59px;
    background: var(--bleu3);
    border-radius: 9px;
    z-index: 9999;
}
.stcky_btn_picto {
    display: block;
    width: 29px;
    height: 27px;
    margin-bottom: 8px;
}
.stcky_btn_picto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.sticky_btn_title {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: var(--wh);
}
.sticky_btn_link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}








