/*********************
Variables
*********************/
:root {
    --gutter-margin: 35px;

    --border-radius: 15px;
    --small-radius: 6px;

    /* espaces verticale */
    --ltspace: 20px;
    --smlspace: 60px;
    --mdspace: 110px;
    --bigspace: 120px;

    --medium-pad: 70px;
    --big-pad: 80px;

    /* marges et padding cote */
    --side-dif: 5vw;
    --side-base: 5vw;
    --side-big: calc(var(--side-dif) + var(--side-base));



    --Noir: #000000;
    --Blanc: #ffffff;
    --Bleu-Fonc: #203360;
    --Bleu-Fonc-2: #19377F;
    --Bleu-Txt: #09276F;
    --Bleu-Celtor: #2754A8;
    --Bleu-Clair: #D6E1F5;
    --Vert-Celtor: #6CAC4D;
    --Dgrad-BleuFonc: linear-gradient(180deg, #2754A8 0%, #19377F 100%);
    --Vert-Fonc: #174800;
    --Vert-Clair: #D2EBC6;
    --Dgrad-VerFonc: linear-gradient(180deg, #57903C 0%, #416C2D 100%);
    --Dgrad-VertClair: linear-gradient(180deg, #D2EBC6 0%, #C3DCB7 100%);
    --grid-container-padding: 85px;
    --grid-gutter: 40px;
}

::selection {
    background-color: var(--Vert-Celtor);
    color: var(--Blanc);
}

/* Firefox */
::-moz-selection {
    background-color: var(--Vert-Celtor);
    color: var(--Blanc);
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--Blanc);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--Bleu-Celtor);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--Bleu-Celtor);
    width: 2px;
}

/*********************
Reset Css
*********************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

strong {
    font-weight: 700;
}

button, form button:hover{
    background-color: transparent;
}

/*********************
flex principale
*********************/

.flex_cote{
    display: flex;
    gap: 40px;
}

.flex_cote.reverse{
    flex-direction: row-reverse;
}

/*.flex_egale > *{*/
/*    flex: 1;*/
/*}*/

.flex_egale{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.flex_egale.reverse>*:nth-child(2){
    grid-area: 1 / 1;
}



.block-promo.flex_cote{
    gap: 15px;
}

.block-promo.flex_cote > *:first-child{
    flex: 4;
}

.block-promo.flex_cote > *:last-child{
    flex: 9;
}



.flex_egale>*:nth-child(1){
    padding-right: 4vw;
}

.flex_egale.reverse>*:nth-child(1){
    padding-right: 0;
    padding-left: 4vw;

}


/*********************
Margins Paddings
*********************/

.mrg_cote{
    margin-left: var(--side-base);
    margin-right: var(--side-base);
}

.big_mrg_cote{
    margin-left: var(--side-big);
    margin-right: var(--side-big);
}

.big_pad_cote{
    padding-left: var(--side-big);
    padding-right: var(--side-big);
}

.pad_cote{
    padding-left: var(--side-dif);
    padding-right: var(--side-dif);
}

.big_pad_cote{
    padding-left: var(--side-big);
    padding-right: var(--side-big);
}

.big_pad_pil{
    padding-top: var(--big-pad);
    padding-bottom: var(--big-pad);
}

.sml_pad_top{
    padding-top: var(--smlspace);
}

.sml_pad_btm{
    padding-bottom: var(--smlspace);
}

.mdm_pad_top{
    padding-top: var(--medium-pad);
}

.mdm_pad_btm{
    padding-bottom: var(--medium-pad);
}


/*********************
Body and generale rules
*********************/
body {
    font-family: "Figtree", sans-serif;
    background-color: var(--Blanc);
    padding: 15px;
    padding-top: 0;
}

.h1, h1 {
    color: var(--Blanc);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%; /* 71.4px */
}

.h2, h2 {
    margin-bottom: 20px;
    color: var(--Bleu-Fonc);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 118.75% */
}

.h2, h2 {
    margin-bottom: 20px;
    color: var(--Bleu-Fonc);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 118.75% */
}

.h3, h3 {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.5px; /* 129.545% */
    color: var(--Bleu-Fonc);
}

.sup-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

p {
    color: var(--Bleu-Txt);
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 147.368% */
    letter-spacing: 0.19px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.text-right {
    text-align: right;
}

.tag {
    display: inline-flex;
    border-radius: 25px;
    background-color: var(--Bleu-Clair, #D6E1F5);
    padding: 7px 14px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 23px;
}

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

.link {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    color: var(--Bleu-Celtor);
}

.border {
    border-radius: var(--border-radius);
}

.link-arrow {
    margin-top: 65px;
    display: inline-flex;
    position: relative;
    height: 38px;
    align-items: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    color: var(--Bleu-Fonc);
    gap: 15px;
}

.link-arrow span {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: var(--Bleu-Fonc);
    transition: transform 200ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-arrow span:before {
    content: '';
    display: block;
    width: 11px;
    height: 10px;
    z-index: 2;
    mask-image: url("../icons/arrow.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Blanc);
    transition: 0.2s;
}

.link-arrow:hover span {
    transform: translateX(6px);
}


.link-arrow.calendar-export-ics {
    margin-right: 42px;
}

.link-arrow.calendar-export-ics,
.link-arrow.pdf_charge {
    margin-top: 0;
}

.link-arrow.calendar-export-ics span:before {
    width: 14px;
    height: 13px;
    mask-image: url("../icons/calendar.svg");
}

.link-arrow.pdf_charge span:before {
    width: 12px;
    height: 13px;
    mask-image: url("../icons/icon-telecharge.svg");

}

.link-arrow.calendar-export-ics:hover span, .link-arrow.pdf_charge:hover span {
    transform: translateX(0);
}

.link-arrow.calendar-export-ics:hover span:before {
    transform: scale(1.2);
}

.link-arrow.pdf_charge:hover span:before {
    transform: translateY(1px) ;
}

.dropdown-row .link-arrow.pdf_charge{
    margin: 6px 25px 0 0;
}


.text-no-result {
    display: flex;
    padding: var(--grid-container-padding);
    align-items: center;
    justify-content: center;
}

input, textarea, select, option{
    font-family: "Figtree", sans-serif;
}

/*********************
Background  and color Rule
*********************/


/***
White
*/
.theme-background-white {
    background-color: var(--Blanc);
}

.theme-color-white h1,
.theme-color-white h2,
.theme-color-white h3,
.theme-color-white h4,
.theme-color-white h5,
.theme-color-white h6,
.theme-color-white p,
.theme-color-white a,
.theme-color-white li,
.theme-color-white span {
    color: var(--Blanc);
}

.theme-color-white .tag {
    background: var(--Blanc);
    color: var(--Bleu-Fonc);
}

/***
Green
*/
.theme-background-green {
    background-color: var(--Vert-Clair);
}

.theme-background-green-celtor {
    background-color: var(--Vert-Celtor);
}

.theme-color-green h1,
.theme-color-green h2,
.theme-color-green h3,
.theme-color-green h4,
.theme-color-green h5,
.theme-color-green h6,
.theme-color-green p,
.theme-color-green a,
.theme-color-green li,
.theme-color-green span {
    color: var(--Vert-Fonc);
}

.theme-color-green .tag {
    background: var(--Vert-Clair);
    color: var(--Vert-Fonc);
}

/***
Blue
*/
.theme-background-blue-light {
    background-color: var(--Bleu-Clair);
}

.theme-background-blue-bold {
    background-color: var(--Bleu-Fonc);
}

.theme-color-blue h1,
.theme-color-blue h2,
.theme-color-blue h3,
.theme-color-blue h4,
.theme-color-blue h5,
.theme-color-blue h6,
.theme-color-blue p,
.theme-color-blue a,
.theme-color-blue li,
.theme-color-blue span {
    color: var(--Bleu-Fonc);
}

.theme-color-blue .tag {
    background: var(--Bleu-Clair);
    color: var(--Bleu-Fonc);
}

/*********************
Header
*********************/
#header {
    /*position: relative;*/
    position: fixed;
    top: 0;
    left: 15px;
    right: 15px;
    z-index: 999;
    height: 80px;
    display: flex;
    margin-bottom: -85px;
    transition: 0.4s ease-in-out;
}

.top_head #header {
    height: 100px;
}

.page-template-template-about #header {
   transform: translateY(-100%);
}

.page-template-template-about.top_head #header {
    transform: translateY(0%);
}

/*#header.is-sticky {*/
/*    position: fixed;*/
/*    height: 80px;*/
/*    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));*/
/*    animation: slideDown 0.4s ease forwards;*/
/*    left: 0;*/
/*    right: 0;*/
/*}*/

/*#header.is-sticky:before,*/
/*#header.is-sticky:after {*/
/*    display: none;*/
/*}*/

/*#header.is-sticky .header-area-1 {*/

/*}*/



#header.hide{
    transform: translateY(-100%);
    height: 80px;
}

.menu-open #header.hide, .help_active #header.hide{
    transform: unset;
    /*height: 80px;*/
}

.home.top_head .main_btn .horaire_btn{
    height: 67px;
}

.home.top_head .main_btn .horaire_btn .icone_main_btn{
    width: 10px;
    opacity: 0;
}

.home.top_head .main_btn .horaire_btn.elt_btn {
    transform: translateX(0);
}


/*#header.is-sticky .header-area-1 {*/
/*    border-radius: 0;*/
/*}*/

/*#header.is-sticky .header-area-2 {*/
/*    background-color: #fff;*/
/*    border-radius: 0;*/
/*}*/

/*#header.is-sticky .header-area-3 {*/
/*    border-radius: 0;*/
/*}*/

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#header.is-leaving {
    height: 80px;
    position: fixed;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    animation: slideUp 0.4s ease forwards;
}

#header.is-leaving:after,
#header.is-leaving:after {
    display: none;
}

#header.is-leaving .header-area-1 {
    border-radius: 0;
}

#header.is-leaving .header-area-2 {
    background-color: var(--Blanc);
    border-radius: 0;
}

#header.is-leaving .header-area-3 {
    border-radius: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

#header:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    left: 0;
    bottom: -15px;
    z-index: 999;

    position: absolute;
    background-color: var(--Blanc); /* ← la couleur que tu veux */
    mask-image: url("../icons/corner.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    transform: rotate(-90deg);
}

#header:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    right: 0;
    top: 100% ;
    z-index: 999;

    position: absolute;
    background-color: var(--Blanc); /* ← la couleur que tu veux */
    mask-image: url("../icons/corner.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    transition: 0.4s ease-in-out;
}

.top_head #header:after {
    top: calc( 100% - 20px ) ;
}

.header-area-1 {
    position: relative;
    width: fit-content;
    padding-top: 25px;
    padding-right: 28px;
    background-color: var(--Blanc);
    border-bottom-right-radius: var(--border-radius);

    z-index: 999;
}

.header-area-1 svg {
    margin-left: 22px;
    max-width: 100%;

    height: 40px;
    width: 200px;
    transition: 0.2s;
}

 .header-area-1 svg .txt{
    opacity: 0;
     transition: 0.2s;
}

.top_head .header-area-1 svg .txt{
    opacity: 1;
}

.top_head .header-area-1 svg {
    height: 54px;
    width: 286px;
}

.header-area-2 {
    z-index: 1;
    position: relative;
    width: auto;
    flex: 1;
    background-color: transparent;
    z-index: 999;
}

.header-area-2 > div:first-child {
    position: relative;
    height: 15px;
    width: 100%;
    background-color: var(--Blanc);
}

.header-area-2 > div:first-child:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    right: 0;
    top: 15px;
    position: absolute;
    background-color: var(--Blanc); /* ← la couleur que tu veux */
    mask-image: url("../icons/corner.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.header-area-2 > div:first-child:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    left: 0;
    top: 15px;
    transform: rotate(-90deg);
    position: absolute;
    background-color: var(--Blanc); /* ← la couleur que tu veux */
    mask-image: url("../icons/corner.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.header-area-3 {
    height: 80px;
    width: 30%;
    background-color: var(--Blanc);
    border-bottom-left-radius: var(--border-radius);
    padding: 37px var(--grid-container-padding) 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    gap: 10px;
}

.white_head{
    position: absolute;
    width: 15px;
    background-color: var(--Blanc);
    top: 0;
    right: 100%;
    bottom: -30px;
    border-radius: 0 0 var(--border-radius) 0;
}

.white_head.next_head{
    right: unset;
    left: 100%;
    border-radius: 0 0 0  var(--border-radius);
}


#header .custom_pilule .with_arrow input{
    width: 377px;
}

#header .custom_search {
    max-width: 500px;
}

.help-me {
    display: flex;
    align-items: end;
    justify-content: end;
    padding-right: 13px;
    padding-top: 13px;
    position: relative;
}

.help-me button {
    border: none;
    border-radius: 62px;
    background: rgba(108, 172, 77, 0.85);
    backdrop-filter: blur(10px);
    color: var(--Blanc);
    height: 49px;
    display: inline-flex;
    padding-left: 19px;
    align-items: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-right: 0;

}

.help-me button .icon {
    position: relative;
    display: inline-block;
    height: 49px;
    width: 49px;
    margin-left: 9px;
    background-color: var(--Vert-Celtor);
    border-radius: 100%;
}

.help-me button .icon svg {
    position: absolute;
    display: block;
    inset: 0;
    margin: auto; /* centre parfaitement dans les 4 directions */
    /*width: 13px;*/
    /*height: 12px;*/
    transition: 0.3s;
}

.help-me:has(.help-me-content.active) button .icon svg {
   transform: rotate(180deg);
}

.help-me-content {
    opacity: 0;
    left: 15px;
    right: 13px;
    top: 13px;
    background-color: var(--Vert-Clair);
    backdrop-filter: blur(10px);
    position: absolute;
    border-radius: 26px;
    overflow: hidden;
    transition: 0.5s;
    max-height: 0;
    pointer-events: none;
}

.help-me-content.active {
    opacity: 1;
    border-radius: var(--border-radius);
    pointer-events: all;
    max-height: 1200px;
}

/*#header.hide .help-me-content.active{*/
/*    max-height: 0;*/
/*    pointer-events: none;*/
/*}*/

.help-me-content .section:nth-child(2) {
    padding: 23px 46px 92px;
}

.help-me-content .section:nth-child(3) {
    padding: 35px 46px 40px;
}

.help-me-content .sup-title {
    margin-top: 0;
    margin-bottom: 27px;
    text-transform: none;
}

.help-me-content .h2 {
    margin-bottom: 39px;
}

.help-me-content .h3 {
    margin-bottom: 19px;
    margin-top: 0;
}

.help-me-content .section:nth-child(2) .h3{
    margin-top: 43px;
}

.help-me-content .section:nth-child(2) .h3:nth-child(3){
    margin-top: 10px;
}

.help-me-content .custom-select {
    margin-bottom: 43px;
}

.help-me-content .link-arrow {
    margin-top: 0;
}

.help-me-content .close {
   position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px 12px 12px;
    cursor: pointer;
}

.help-me-content .open .custom_select_dropdown {
    display: flex;
    max-height: 360px;
}

.help-me-content .open .custom_select_dropdown {
    display: flex;
    max-height: 360px;
}

.help-me-content .custom_select_input{
    height: 60px;
    padding: 0 56px 0 18.6px;

    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.help-me-content .custom_select .with_arrow>svg {
    height: 8px;
    width: 16px;
    right: 18px;
}

.help-me-content .custom_select.custom_search .with_arrow>svg {
    height: 17px;
    width: 17px;
}

.help-me-content .custom_select .with_arrow>svg.suppr {
    height: 10px;
    width: 10px;
    right: 44px;
}

.help-me-content .custom_select .with_arrow>svg path,
.help-me-content .custom_select .with_arrow>svg circle,
.help-me-content .custom_select .with_arrow>svg line{
    stroke-width: 2px;
    stroke: var(--Vert-Fonc, #174800);
}


.help-me-content .link-arrow {
    font-size: 19px;
    margin-top: 6px;
}

.help-me-content .link-arrow span {
    width: 50px;
    height: 50px;
}

.help-me-content .link-arrow span::before{
    width: 16px;
    height: 15px;
}

.contact_mob{
    display: none;
}

.help-me-content .section:nth-child(3)>div{
    display: flex;
    align-items: center;
    gap: 30px;
}

.lien_num{
    color: var(--Blanc, #FFF);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 123.81% */
    letter-spacing: -0.105px;
    transition: 0.2s;
}

.lien_contact{
    background: var(--Blanc);
    height: 50px;
    padding: 16px 19px 15px 19px;
    border-radius: 62px;
    display: block;
    width: fit-content;
    transition: 0.2s;
}

.lien_contact:hover, .lien_num:hover{
    opacity: 0.8;
}

.lien_contact span{
    color: var(--Vert-Celtor);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}


#header .card{
    position: absolute;
    display: block;
    left: calc(100% + 27px);
    top: 150px;
    width: 352px;
    /*min-width: 300px;*/
    margin-right: var(--side-base);
    padding: 30px var(--gutter-margin);
    background-color: var(--Vert-Clair);
    border-radius: var(--border-radius);
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}


#header .help-me-content.active + .card{
    opacity: 1;
    pointer-events: all;
}

/*#header.hide .help-me-content.active + .card{*/
/*    opacity: 0;*/
/*    pointer-events: none;*/
/*}*/

#header .card .card-image  {
    position: relative;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

#header .card .link-arrow {
    margin-top: 25px;
}

#header .card .card-image:before {
    content: '';
    position: absolute;
    display: block;
    top: -24px;
    left: 55px;
    width: 46px;
    height: 46px;
    background: var(--Vert-Clair);
    transform: translateY(-1%) rotate(45deg);
    border-radius: var(--small-radius) 0;
}

/*#header .card{*/
/*    opacity: 0;*/
/*}*/

.page-template-template-individuals .help-me button {
    background: rgba(39, 84, 168, 0.85);
}

.page-template-template-individuals .help-me button .icon {
    background-color: var(--Bleu-Celtor);
}

.page-template-template-individuals .help-me-content, .page-template-template-individuals #header .card,
.page-template-template-individuals #header .card .card-image:before{
    background-color: var(--Bleu-Clair);
}

.page-template-template-individuals .help-me-content .theme-background-green-celtor{
    background-color: var(--Bleu-Celtor);
}

.page-template-template-individuals .help-me-content .theme-color-green .link-arrow span,
.page-template-template-individuals #header .card .link-arrow span{
    background-color: var(--Bleu-Fonc);
}

.page-template-template-individuals .help-me-content .close svg path{
    stroke: var(--Bleu-Fonc);
}


.page-template-template-individuals .help-me-content .lien_contact span{
    color: var(--Bleu-Celtor);
}

.page-template-template-individuals .help-me-content .section.theme-color-green *, .page-template-template-individuals #header .card *{
    color: var(--Bleu-Fonc);
}

.page-template-template-individuals .help-me-content .custom_select .with_arrow>svg path,
.page-template-template-individuals .help-me-content .custom_select .with_arrow>svg circle,
.page-template-template-individuals .help-me-content .custom_select .with_arrow>svg line{
    stroke: var(--Bleu-Fonc);
}











.page-template-template-individuals .help-me-content .custom_select_input{
    color: var(--Bleu-Fonc);

}

.page-template-template-individuals .help-me-content .custom_select_input::placeholder{
    color: rgba(21, 46, 107, 0.60);
}

.page-template-template-individuals .help-me-content .custom_select_dropdown{
    background: #E6EDF9;
}

.display-actions .theme-color-green .custom_select_dropdown {
    /*background: #E6EDF9;*/
}
.custom_select_option {
    /*color: var(--Bleu-Fonc);*/
}


/* Track */
.page-template-template-individuals .help-me-content .inner_scroll::-webkit-scrollbar-track{
    background: #E6EDF9;
}

/* Handle */
.page-template-template-individuals .help-me-content .inner_scroll::-webkit-scrollbar-thumb{
    background: #718EC6;
    border: 8px solid #E6EDF9;
}

/* Handle on hover */
.page-template-template-individuals .help-me-content .inner_scroll::-webkit-scrollbar-thumb:hover{
    background: #718EC6;
}


















.ouverture{
    display: flex;
    gap: 11px;
    color: var(--Bleu-Fonc-2);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.ouverture span{
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: var(--Vert-Celtor);
    flex: 0 0 auto;
}

.ouverture.ferme span{
    background-color: #ed2020;
}

.select_langues{
    position: relative;
    cursor: pointer;
}

.select_langues select{
    color: var(--Bleu-Fonc-2);
    text-transform: uppercase;

    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    border: 0;
    outline: 0;
    padding: 2px 20px 2px 2px;
    letter-spacing: 0.84px;
}

.select_langues select:focus-visible{
    border: 0;
    outline: 0;
}

.select_langues select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select_langues>svg{
    position: absolute;
    inset: 0 2px 0 auto;
    margin: auto 0 auto auto;
    transition: 0.4s;
}

.select_langues> select:focus ~ svg{
    transform: rotate(180deg);
}



.btn_menu{
    display: flex;
    gap: 9px;
    color: var(--Bleu-Fonc-2);
    text-transform: uppercase;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 100%;
}

.burger{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 14px;
    height: 14px;
}

.burger>div{
    height: 1px;
    width: 100%;
    background-color: var(--Bleu-Fonc-2);
    transition: 0.2s;
}

.burger>div:nth-child(2){
    transform-origin: left;
    transform: scaleX(64%);
}

.btn_menu:hover .burger>div:nth-child(2){
    transform: scaleX(80%);
}

.menu-open-active .btn_menu .burger>div:nth-child(2){
    transform: scaleX(0%);
}

.menu-open-active .btn_menu .burger>div:nth-child(1){
    transform: translateY(6px) rotate(45deg);
}

.menu-open-active .btn_menu .burger>div:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
}

/*********************
Menu
*********************/
body.menu-open, body.help_active{
    overflow: hidden;
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    background: rgba(32, 51, 96, 0.80);
    z-index: 998;

    display: none;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
}

body.menu-open .overlay-menu {
    display: block;
}

body.menu-open-active .overlay-menu {
    opacity: 1;
}

body.help_active .overlay-menu {
    display: block;
    opacity: 1;
}

#menu {
    z-index: 998;
    position: relative;
    top: 150px;
    margin-left: 50px;
    margin-right: 50px;

    transform: translateY(20px);
    transition: transform 600ms ease-in-out, opacity 600ms ease-in-out;
    opacity: 0;
}

body.menu-open-active #menu {
    transform: translateY(0);
    opacity: 1;
}

#menu .container-menu {
    border-radius: var(--border-radius);
    background-color: var(--Blanc);
    backdrop-filter: blur(5px);
    /*padding-top: 70px;*/
    /*padding-bottom: 95px;*/
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

#menu .container-menu>div {
    padding-top: 70px;
    padding-bottom: 95px;
}

#menu .container-filters {
    margin-top: 64px;
    display: flex;
    gap: 86px;
    padding-left: 57px;
}

#menu .btn-close {
    height: 11px;
    width: 11px;
    position: absolute;
    top: 30px;
    right: 30px;
    mask-image: url("../icons/menu-cross.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Bleu-Fonc);
    cursor: pointer;
}

#menu:after {
    content: '';
    position: absolute;
    display: block;
    top: -24px;
    right: 55px;
    width: 55px;
    height: 55px;
    background: var(--Bleu-Clair);
    transform: translateY(-1%) rotate(45deg);
    border-radius: var(--small-radius) 0;
    z-index: -1;

}

#menu .menu-list {
    position: relative;
    padding-left: 80px;
    padding-right: 20px;
    flex: 4;
    overflow: hidden;
}


#menu .menu-list:nth-child(2) {
    border-right: 1px solid var(--Bleu-Clair);
}

#menu .menu-list ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: relative;

}

.menu-indicator{
    position: absolute;

    background: var(--Bleu-Clair);
    transition: .2s ease;
    display: block;
    right: calc(100% + 56px);
    z-index: -1;
    top: 10px;
    width: 63px;
    height: 63px;
    transform: translateX(0%) rotate(45deg);
    border-radius: 0 var(--small-radius);
}

.menu-indicator.no-active{
    opacity: 0;
}

#menu .menu-list ul li {
    position: relative;
}

#menu .menu-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 36px;
    display: inline-flex;
    color: var(--Bleu-Fonc);
}

#menu .menu-list ul a {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    transition: all 250ms ease-in-out;
    padding: 9px 0;
}

/*#menu .menu-list ul .current-menu-item > a{*/
/*    font-weight: 700;*/
/*    letter-spacing: -0.2px;*/
/*}*/

#menu .menu-list ul .current-menu-item > a,
#menu .menu-list ul a:hover {
    font-weight: 700;
    letter-spacing: -0.2px;
    transition: all 250ms ease-in-out;
}

/*#menu .menu-list ul a:before {*/
/*    opacity: 0;*/
/*    content: "";*/
/*    display: block;*/
/*    width: 27px;*/
/*    height: 57px;*/
/*    mask-image: url("../icons/triangle.svg");*/
/*    mask-size: contain;*/
/*    mask-repeat: no-repeat;*/
/*    background-color: var(--Bleu-Clair);*/
/*    position: absolute;*/
/*    left: -80px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    transition: opacity 400ms ease-in-out;*/
/*}*/

/*#menu .menu-list ul a:hover:before {*/
/*    opacity: 1;*/
/*    transition: opacity 400ms ease-in-out;*/
/*}*/


#menu .container-menu>div:last-child{
    background-color: var(--Bleu-Clair);
    padding-right: var(--side-base);
    padding-left: var(--side-base);
    flex: 6;
}

#menu .container-menu>div:last-child .news-smart{
    border-radius: 0;
    background-color: var(--Bleu-Clair);
    margin-bottom: 0;
}

#menu .container-menu>div:last-child .news-smart .left{
    padding-left: 0;
    padding-top: 0;
    padding-bottom:0;
}

#menu .container-menu>div:last-child .news-smart>div:last-child{
    border-radius: var(--border-radius);
    overflow: hidden;
}

/*********************
Footer
*********************/
#footer {
    max-width: 100%;
    height: auto;
    background-color: var(--Bleu-Celtor);
    border-radius: var(--border-radius);

    padding-left: var(--side-base);
    padding-right: var(--side-base);
}

#footer .logo {
    margin-bottom: 73px;
}

#footer .area-1 {
    margin-top: 73px;
    margin-bottom: 180px;
    display: flex;
    justify-content: space-between;
}

#footer .area-2 {
    width: 100%;
    margin-bottom: 47px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;

    color: #9EC5E6;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.78px;
}

#footer .menus {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 90px;
}

#footer .menus .menu {
    display: flex;
    gap: 65px;
}

#footer .menus .menu div {
    display: flex;
    flex-direction: column;
    gap: 1px;
    /*flex: 1;*/
}


#footer .menus .menu div>span {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 216.667% */
    letter-spacing: -0.06px;
    text-transform: uppercase;
}

#footer .menus div ul {
    font-size: 17px;
}

#footer .menus div ul a{
    font-style: normal;
    font-weight: 400;
    line-height:  152.941% ;
    letter-spacing: -0.085px;
}

#footer .area-3 {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

#footer .area-3 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
}

#footer .area-3 ul a {
    color: #9EC5E6;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.78px;
}

#footer .info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 47px 35px;
}

#footer .info ul:last-of-type{
    padding-left: 19px;
}

#footer * {
    color: var(--Blanc);
}

#footer .info div:first-of-type{
    display: flex;
    align-items: center;
}

#footer .lien_contact{
    background: var(--Vert-Celtor);
}

#footer input, #footer .custom_select_option  {
    color: var(--Bleu-Fonc);
}

#footer .custom_select{
    height: fit-content;
}

.wpml-ls-statics-footer, .grecaptcha-badge{
    display: none;
}




#footer #copyright *{
    color: #5D9ED5;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /*opacity: 0.65;*/
    display: flex;
    align-items: baseline;
}
#copyright a, #copyright a:visited, #copyright a:hover{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #5D9ED5;
}
#copyright .realisation-break a{
    margin-left: 4px;
}
#copyright .lien_footer, #copyright .realisation-break, #copyright>span{
    display: flex;
}
#footer #copyright .realisation-break a{
    display: inline-flex;
}
#footer #copyright .realisation-break a>svg{
    transform: translateY(3px);
    fill: #5D9ED5;
}


#footer #copyright {
    grid-area: 1 span / 2 span ;
    justify-content: flex-end;
}

@media (max-width: 500px){
    #footer #copyright {
        margin: 0 auto 0 0 ;
        flex-direction: column;
    }
    #copyright>span{
        flex-direction: column;
    }
    #copyright .trait_vertical{
        display: none;
    }
}
@media (max-width: 380px){
    #copyright .realisation-break{
        flex-direction: column;
    }
    #copyright .realisation-break a{
        margin-left: 0;
    }
}


/*********************
Hero Home page
*********************/
.hero-home {
    background-color: var(--Blanc);
    height: calc(100vh - 30px);
    border-radius: var(--border-radius);
    position: relative;
    /*overflow: hidden;*/
    padding-bottom: calc(var(--big-pad));
    padding-top: 158px;
    box-sizing: border-box;
}

.hero-home .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
}

.hero-home .image {
    position: absolute;
    z-index: 1;
    inset: 0; /* shorthand pour top/right/bottom/left: 0 */
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.hero-home .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: grid;
}

.hero-home .list-card {
    display: flex;
    flex-direction: row;
    align-items: end;
    width: 100%;
    justify-content: end;
}

.hero-home .list-card .card{
    margin-left: var(--gutter-margin);
    flex: 0 0 calc(25% - var(--gutter-margin));
    max-width: calc(25% - var(--gutter-margin));;
    padding: 30px var(--gutter-margin);
    background-color: var(--Blanc);
    border-radius: var(--border-radius);
    box-sizing: border-box;
}

.hero-home .list-card .card:nth-child(1) {
    background: var(--Vert-Celtor);
}

.hero-home .list-card .card .link-arrow {
    margin-top: 0;
}

.hero-home .list-card .card .h3 {
    margin-top: 0;
    margin-bottom: 25px;
}

.hero-home .list-card .card:nth-child(1) .h3 {
    color: var(--Vert-Fonc);
}

.hero-home .list-card .card:nth-child(2) .h3 {
    color: var(--Bleu-Fonc);
}

.hero-home .list-card .card:nth-child(3) .h3 {
    color: var(--Bleu-Fonc);
}


.hero-home .list-card .card:nth-child(2) .card-image  {
    position: relative;
    height: 200px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-home .list-card .card:nth-child(2) .card-image:before{
    content: '';
    position: absolute;
    display: block;
    top: -24px;
    left: 55px;
    width: 46px;
    height: 46px;
    background: var(--Blanc);
    transform: translateY(-1%) rotate(45deg);
    border-radius: var(--small-radius) 0;
}

/*********************
Hero btn
*********************/
.hero-btn {
    display: grid;
    grid-row-gap: 13px;
    margin-right: calc((var(--side-big) + 15px) * -1);
    /*margin-right: -15px;*/
    flex: 0 0 auto;
    height: fit-content;
}

.hero-btn a {
    background: var(--Dgrad-VertClair);
    display: flex;
    flex-direction: row;
    position: relative;
    color: var(--Vert-Fonc);
    gap: 15px;
    height: 120px;
    justify-content: space-between;
    align-items: center;
    padding-right: calc(var(--grid-container-padding) + 15px);
    padding-left: 32px;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    position: relative;
}

.hero-btn a * {
    color: var(--Vert-Fonc);
}

.hero-btn div span {
    display: flex;
}

.hero-btn div span:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
}

.hero-btn .icon {
    display: block;
    width: 34px;
    height: 34px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background-color: var(--Vert-Fonc);
    position: relative;
    transition: .2s ease;
}

.hero-btn .icon:before {
    content: '';
    position: absolute;
    display: block;
    width: 11px;
    height: 10px;
    inset: 0;
    margin: auto;
    z-index: 2;
    mask-image: url(../icons/arrow.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #fff;
}

.hero-btn a:hover .icon{
    transform: translateX(6px);
}



.theme-color-blue .hero-btn a, .page-template-template-individuals .hero-btn a  {
    background: linear-gradient(180deg, #D6E1F5 0%, #C6D3EC 100%);
    color: var(--Bleu-Fonc);
}

.theme-color-blue .hero-btn a *, .page-template-template-individuals  .hero-btn a * {
    color: var(--Bleu-Fonc);
}

.theme-color-blue .hero-btn .icon, .page-template-template-individuals .hero-btn .icon  {
    background-color: var(--Bleu-Fonc);
}

/*********************
Hero Municipality
*********************/
.container-municipality, .container-wastes-route{
    overflow: hidden;
}

.hero-municipality {
    /*background: var(--Dgrad-BleuFonc, linear-gradient(180deg, #2754A8 0%, #19377F 100%));*/
    height: fit-content;
    padding-top: 25vh;
    border-radius: var(--border-radius);
    position: relative;
    /*z-index: 1;*/
}


.container-municipality .hero-municipality, .container-wastes-route .hero-content {
    margin-bottom: var(--mdspace);
}

.block-informations-municipality {
    position: relative;
    z-index: 2;
    /*margin-top: -20vh;*/
    margin-bottom: var(--bigspace);
}


button {
    border: none;
    box-shadow: none;
}

button:hover {
    cursor: pointer;
}

.block-informations-municipality .actions {
    display: flex;
    /*justify-content: center;*/
    gap: 15px;
    padding-bottom: 17px;
}

.block-informations-municipality .button {
    position: relative;
    height: 60px;
    display: inline-flex;
    padding-left: 25px;
    padding-right: 25px;
    align-items: center;
    border-radius: 35px;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    background: #566FA7;
    letter-spacing: 0.44px;
    color: var(--Blanc);
    /*margin-left: 7.5px;*/
    /*margin-right: 7.5px;*/
    transition: 0.2s ease;
    white-space: normal;
    flex-shrink: 0;
}

.block-informations-municipality .button.active {
    background-color: var(--Blanc);
    color: var(--Bleu-Fonc);
    font-weight: 700;
}

.block-informations-municipality .button:after {
    content: "";
    display: block;
    /*background: linear-gradient(-45deg, var(--Blanc) 55%, transparent 56% );*/
    background: var(--Blanc);
    position: absolute;
    height: 22px;
    width: 22px;
    border-radius: 4px 0;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-100%) rotate(45deg) scale(0.5);
    z-index: -1;
    opacity: 0;
    transition: 0.2s ease;
}


.block-informations-municipality .button.active:after {

    transform: translateX(-50%) translateY(-52%) rotate(45deg) scale(1);
    opacity: 1;
}


.block-informations-municipality .display-actions {
    position: relative;
    z-index: 10;
}

.block-informations-municipality .display-actions [data-show] {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    /*overflow: hidden;*/
    transition: max-height 0.8s ease, opacity 0.8s ease;
    padding: unset;
}

.block-informations-municipality .display-actions [data-show].is-visible {
    max-height: 10000px;
    opacity: 1;
    pointer-events: all;
}

.page-template-template-wastes-info  .block-informations-municipality .display-actions [data-show].is-visible {
    padding: var(--smlspace) var(--side-dif);
}

.page-template-template-wastes-info  .block-informations-municipality .display-actions [data-show=points-de-depots].is-visible {
    padding: unset;
}

.block-informations-municipality .h2 {
    margin-bottom: 23px;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}


/* onglet scrollable */

.actions-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
    position: relative;
    margin-bottom: 13px;
}

.actions{
    display:flex;
    overflow-x:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;

    scroll-behavior:smooth;

    flex:1;
    /*border-radius: 35px;*/
    border-radius: 35px 35px 60px 60px;
}

.actions::-webkit-scrollbar{
    display:none;
}

.tab-arrow{
    flex-shrink:0;
    cursor:pointer;

    /*display: flex;*/
    /*padding: 0;*/
    /*width: 60px;*/
    /*height: 60px;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*border-radius: 50%;*/
    /*background: rgba(255, 255, 255, 0.25);*/
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    /*transform: translate(0, -50%);*/
    transition: 0.2s;
}

.tab-arrow>div{
    display: flex;
    padding: 0;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: 0.2s;
}

.tab-arrow.left{
    right: unset;
    left: 0;
}

.tab-arrow::after{
    z-index: -1;
    content: '';
    position: absolute;

    width: 274px;
    height: 274px;

    top: 50%;
    left: -87px;
    transform: translateY(-50%);
    background: radial-gradient(50% 50% at 50% 50%, #1F4390 57.21%, rgba(31, 67, 144, 0.00) 91.35%);

    pointer-events: none;
}

.tab-arrow.left::after{
    left: unset;
    right: -87px;
}



/* Commune FAQ */

.display-actions .block-faq{
    margin: 0;
}

.display-actions .block-faq .tag{
    display: none;
}

.display-actions .block-faq .filter.theme-background-white{
    background: transparent;
}

.display-actions .block-faq .custom_select_input {
    border: 0px solid transparent;
}

.display-actions .block-faq .answers * {
    color: var(--Bleu-Fonc);
}

.display-actions .block-faq .answers, .display-actions .faq-indicator {
    background-color: var(--Blanc);
}

/*********************
Commune app
*********************/
.municipality-app {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
}

.municipality-app.flex_egale{
    gap: 16px;
}

.municipality-app.flex_egale>div:nth-child(1) {
    padding-right: 0;
}

.municipality-app .block-wastes {
    padding-top: 39px;
    padding-left: 54px;
    padding-right: 54px;
    padding-bottom: 38px;
    margin-bottom: 16px;
}

.municipality-app .block-wastes .text {
    margin-bottom: 52px;
}

.municipality-app .block-hourly {
    padding: 38px 54px 40px;
}

.municipality-app .block-hourly ul {
    position: relative;
    /*padding-bottom: 36px;*/
    /*margin-bottom: 26px;*/
}

.municipality-app .affiche_horaire>div:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
}

.municipality-app .block-hourly ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: radial-gradient(circle, var(--Bleu-Fonc) 1px, transparent 1px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
}

.municipality-app .block-hourly ul:last-child:after {
    display: none;
}

.municipality-app .block-hourly ul li {
    display: grid;
    grid-template-columns: 2fr 4fr;
    width: 100%;
    grid-column-gap: 15px;
}

.municipality-app .calendar {
    padding-left: 54px;
    padding-right: 54px;
    padding-top: 39px;
    padding-bottom: 32px;
    border-radius: var(--border-radius);
}

.municipality-app .calendar .filters {
    margin-bottom: 28px;
}

.municipality-app .calendar .filters .custom-select__trigger {
    border: 1px solid var(--Bleu-Fonc, #203360);
}


.municipality-app .calendar ul {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.municipality-app .calendar ul li {
    background-color: #F4F7FC;
    padding: 8px 10px;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.municipality-app .calendar ul li:nth-child(odd) {
    background-color: #F4F7FC; /* reset */
}

.municipality-app .calendar ul li.is-odd {
    background-color: var(--Bleu-Clair);
}

.municipality-app .calendar ul li span {
    text-align: left;
}


.municipality-app .calendar ul li span.waste {
    flex: 0 0 50%;
    max-width: 50%;
}

.municipality-app .calendar ul li span.day {
    flex: 0 0 30%;
    max-width: 30%;
}

.municipality-app .calendar ul li span.date {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: right;
}

.with_info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.h2.with_info .tooltip-icon{
    margin-top: 6px;
}

.municipality-app .filter .custom_select_classiq.select-month .custom_select_input{
    max-width: 180px;
}

.municipality-app .filter{
    margin-bottom: 27px;
}


/*********************
Select
*********************/
.select-wrapper {
    position: relative;
    display: inline-block;
    /*width: 100%;*/
}

/* Cache l'apparence native mais garde la fonctionnalité */
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 14px 50px 14px 20px; /* espace à droite pour la flèche */
    border: none;
    border-radius: 50px; /* pill shape comme sur ton screenshot */
    background-color: var(--Blanc);
    font-family: inherit;
    font-size: inherit;
    /*color: var(--text-color);*/
    cursor: pointer;
    outline: none;
}

/* Flèche custom avec un pseudo-élément */
.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* la flèche ne bloque pas le clic */

    /* Option 1 — SVG inline */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 8px;
}

/*********************
Custom select
*********************/

.custom-select {
    position: relative;
    user-select: none;
    display: inline-flex;
    border-radius: 62px;
    /*width: 100%;*/
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background-color: var(--Blanc);
    border-radius: var(--border-radius);
    cursor: pointer;
}

.custom-select__arrow {
    width: 12px;
    height: 8px;
    mask-image: url("../icons/arrow.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Bleu-Fonc);
    transition: transform 0.3s ease;
}

.custom-select.is-open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: var(--Blanc);
    border-radius: var(--border-radius);
    padding: 8px 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.custom-select.is-open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    padding: 10px 20px;
    cursor: pointer;
    color: var(--Bleu-Fonc);
    transition: background-color 0.2s ease;
}

.custom-select__option:hover {
    background-color: var(--Bleu-Clair);
}

.custom-select__option.active {
    font-weight: 700;
}

.tooltip-icon {
    content: 'i';
    display: inline-flex;
    width: 18px;
    color: var(--Blanc) !important;
    height: 18px;
    border-radius: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(39, 84, 168, 0.60);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.tooltip-box {
    position: absolute;
    z-index: 1000;
    display: none;
    max-width: 550px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

*[data-js-tooltip-target] {
    display: none;
}

.tooltip-box-container {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    padding: 15px;
}

.tooltip-box-container:after {
    content: "";
    display: block;
    mask-image: url("../icons/triangle.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Blanc);
    position: absolute;
    height: 30px;
    width: 15px;
    bottom: -20px;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center center;
}


.tooltip-box.is-visible {
    transition: opacity 0.4s ease;
    opacity: 1;
}

/*********************
Home News
*********************/
.home-news {
    margin-top: var(--mdspace);
    margin-bottom: var(--smlspace);
}

.news-smart {
    /*display: grid;*/
    /*grid-template-columns: auto 301px;*/
    display: flex;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--Bleu-Fonc);
}

.news-smart > *:first-child{
   flex: 2;
}

.news-smart > *:last-child{
    max-width: 301px;
    flex: 3;
}

.news-smart.news-smart-ajax {
    opacity: 0;
    animation: fadeIn 0.2s ease forwards;
}

.news-smart .left {
    position: relative;
    min-height: 216px;
    background-color: var(--Bleu-Clair);
    padding: 31px 40px 31px 28px;
    box-sizing: border-box;
}

.news-smart .date {
    color: var(--Bleu-Fonc);
    display: inline-flex;
    margin-bottom: 11px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.news-smart .left * {
    color: var(--Bleu-Fonc);
}

.news-smart .left:after {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    top: 50%;
    width: 63px;
    height: 63px;
    background: var(--Bleu-Clair);
    transform: translateY(-50%) translateX(45%) rotate(45deg);
    border-radius: 0 var(--small-radius);
}

.news-smart .left:before {
    content: '';
    position: absolute;
    display: block;
    right: -13px;
    width: 13px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    mask-image: url("../icons/arrow.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Bleu-Fonc);
    transition: 0.2s;
}


.news-smart:hover .left:before {
    transform: translateY(-50%) translateX(6px);

}

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


/*********************
Block CTA
*********************/
.block-cta {
    background-color: var(--Vert-Clair);
    border-radius: var(--border-radius);
    padding-top: var(--big-pad);
    padding-bottom: var(--big-pad);
    position: relative;
    z-index: 8;
}

.container-template-individuals .block-cta {
    padding-left: var(--side-dif);
    padding-right: var(--side-dif);

    margin-left: var(--side-base);
    margin-right: var(--side-base);
}

.container-template-individuals .block-cta>div:last-child{
    margin-top: 90px;
}

.block-cta .tag {
    background-color: #1D5900;
    color: #fff;
}

.block-cta h2 {
    color: var(--Vert-Fonc);
}

.block-cta .cta-link,
.cta-link {
    position: relative;
    display: inline-flex;
    width: 100%;
    background-color: var(--Blanc);
    border-radius: var(--border-radius);
    text-decoration: none;
    margin-bottom: 15px;
    height: 75px;
    padding-left: 28px;
    box-sizing: border-box;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding-right: 19px;
    color: var(--Vert-Fonc);
    font-style: normal;
    font-weight: 700;
    gap: 15px;
}

.cta-link span {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: var(--Vert-Fonc);
    transition: transform 200ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.cta-link:hover span {
    transform: translateX(6px);
}

.cta-link span:before {
    content: '';
    display: block;
    width: 11px;
    height: 10px;
    z-index: 2;
    mask-image: url(../icons/arrow.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Blanc);
}

.block-cta .cta-link:last-child,
.cta-link:last-child {
    margin-bottom: 0;
}

.cta-link.link-document {
    background-color: var(--Bleu-Clair);
    color: var(--Bleu-Fonc);
}

.theme-background-blue-light .cta-link {
    background-color: var(--Blanc);
    color: var(--Bleu-Fonc);
}

.cta-link.link-document span, .theme-background-blue-light .cta-link span {
    background-color: var(--Bleu-Fonc);
}

/*********************
Block faq
*********************/
.block-faq, .block-hourly-image {
    margin-top: var(--mdspace);
    margin-bottom: var(--mdspace);
}

.block-faq h2 {
    flex: 6;
}

.block-faq .filter {
    flex: 4;
}

.block-faq .questions {
    position: sticky;
    top: 100px;
    flex: 6;
    height: fit-content;
}


.block-faq .right-faq {
    /*height: 100%;*/
    flex: 4;
}

.block-faq .questions li {
    padding: 25px 0;
    cursor: pointer;
    border-bottom: 1px dashed rgba(39, 84, 168, 0.75);

    color: var(--Bleu-Fonc);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 136.364% */
    transition: all 250ms ease;
    display: none;
}

.block-faq .questions li:nth-child(-n+6) {
    display: block;
}

.block-faq .questions li.active,
.block-faq .questions li:hover {
    font-weight: 700;
    transition: all 250ms ease;
    letter-spacing: -0.2px;
}

.block-faq .filter {
    margin-bottom: 22px;
}

.block-faq .answers {
    background-color: var(--Vert-Clair);
    padding: 35px var(--grid-gutter);
    border-radius: var(--border-radius);
    position: relative;
    height: 100%;
}


.questions {
    position: relative;
    padding-bottom: 5px;
}

.faq-indicator {
    position: absolute;
    background: #203360;
    transition: .2s ease;

    display: block;
    left: calc(100% + 18px);
    z-index: -1;
    top: 10px;
    width: 63px;
    height: 63px;
    background: var(--Vert-Clair);
    transform: translateX(0%) rotate(45deg);
    border-radius: 0 var(--small-radius);
}

.faq-indicator.top_indiq{
    border-radius: 10px var(--small-radius) 0;
}

/*.block-faq{*/
/*    content: '';*/
/*    position: absolute;*/
/*    display: block;*/
/*    left: 0;*/
/*    z-index: -1;*/
/*    top: 20px;*/
/*    width: 63px;*/
/*    height: 63px;*/
/*    background: var(--Vert-Clair);*/
/*    transform: translateX(-47%) rotate(45deg);*/
/*    border-radius: 0 var(--small-radius);*/
/*}*/

.answers [data-faq-id] {
    display: none;
    opacity: 0;
}

.answers [data-faq-id].active {
    display: block;
    opacity: 1;
}

/* Fade out */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.answers [data-faq-id].leaving {
    display: block;
    animation: fadeOut 0.15s ease forwards;
}

.answers [data-faq-id].entering {
    animation: fadeIn 0.2s ease forwards;
}

.block-faq .answers * {
    color: var(--Vert-Fonc);
}


.theme-color-green .link-arrow span{
    background-color: var(--Vert-Fonc);
}


/*********************
Block promo
*********************/
.block-promo {
    margin-bottom: 20px;
}

.block-promo .container {
    padding-left: 0;
    padding-right: 0;
}

.block-promo .row {
    align-items: stretch;
    gap: 15px;
}

.block-promo .block-content {
    background-color: var(--Bleu-Celtor);
    border-radius: var(--border-radius);
    padding: var(--big-pad) var(--side-base) var(--medium-pad);
    position: relative;
    min-height: 515px;
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.block-promo .link-arrow span{
    background-color: var(--Blanc);
}

.block-promo .link-arrow span:before{
    background-color: var(--Bleu-Fonc);
}

.block-promo .block-content:after {
    content: '';
    position: absolute;
    display: block;
    right: 0; /* largeur du triangle, pour le coller au bloc */
    bottom: 20%; /* ajuste la position verticale */

    z-index: -1;
    width: 63px;
    height: 63px;
    background: var(--Bleu-Celtor);
    transform: translateX(45%) rotate(45deg);
    border-radius: 0 var(--small-radius);
}

.block-promo * {
    color: var(--Blanc);
}

.block-promo .col-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    z-index: -1;
}

.block-promo .col-image .image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.block-promo .link-arrow{
    margin-top: auto;
}

/*********************
Block Gallery
*********************/
.block-gallery {
    margin-top: 20px;
    /*height: 715px;*/
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1698 / 715;
}

.block-gallery .swiper {
    width: 100%;
    height: 100%;
}

.block-gallery .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.block-gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;}

/*********************
Block Dropdown
*********************/
.block-dropdown {
    margin-top: var(--mdspace);
    margin-bottom: var(--mdspace);
}

.block-dropdown .dropdown-left {
    margin-top: 29px;
}

.block-dropdown .dropdown-row {
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--Vert-Fonc);
    margin-bottom: 14px;
}


.block-dropdown .dropdown-row .dropdown-content,
.dropdown-row .dropdown-content {
    display: none;
}

.block-dropdown .dropdown-row.is-visible .dropdown-content,
.dropdown-row.is-visible .dropdown-content {
    display: block;
    /*max-height: 1000px;*/
}
.block-dropdown .dropdown-row:last-child,
.dropdown-row:last-child {
    margin-bottom: 0;
}

.dropdown-row .dropdown-content>*:first-child {
    margin-top: 10px;
}

.block-wastes-list-municipality .dropdown-row .dropdown-content>*:first-child {
    margin-top: 0px;
}

.block-dropdown .dropdown-title {
    display: inline-flex;
    width: 100%;
    position: relative;
    /*padding-bottom: 15px;*/
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.block-dropdown .dropdown-title svg{
    transition: .2s ease;
}

.block-dropdown .dropdown-row.is-visible .dropdown-title svg{
    transform: rotate(180deg);
}

.theme-color-green .block-dropdown .dropdown-row .dropdown-title svg path{
    stroke: var(--Vert-Fonc);
}

.block-dropdown .dropdown-right {
    aspect-ratio: 663 / 567;
    position: relative;
    overflow: hidden;
}

.block-dropdown .dropdown-right .image {
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.block-dropdown .dropdown-right .image {
    /*display: none;*/
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.block-dropdown .dropdown-right .image.is-visible {
    display: block;
}

/*********************
Block text-image
*********************/
.block-text-image .row{
    align-items: center;
}

.block-text-image, .medium_space {
    margin-top: var(--mdspace);
    margin-bottom: var(--mdspace);
}

.block-text-image .image {
    aspect-ratio: 663 / 567;
    overflow: hidden;
    border-radius: var(--border-radius);
}

/*********************
Block Maps
*********************/
.block-maps {
}

.block-maps #map-wrapper {
    position: relative;
    width: 100%;
    height: 721px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.block-maps #map {
    width: 100%;
    height: 100%;
}

#map-wrapper .info-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /*width: 300px;*/
    max-width: 522px;
    background: white;
    z-index: 10;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    padding: 31px 40px 40px 40px;
    border-radius: var(--border-radius);
}

#map-wrapper .info-panel.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#map-wrapper .info-panel .panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 9px;
    padding-bottom: 33px;
    border-bottom: 1px dashed var(--Bleu-Fonc);
    border-image: repeating-linear-gradient(90deg, var(--Bleu-Fonc) 0 1px, transparent 1px 6px) 1;
    margin-bottom: 26px;
    margin-top: 16px;
}

div.panel-section-label,
div.panel-hours-label{
    color: var(--Bleu-Fonc);
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 136.842% */

    margin: 26px 0 12px;
}

.with_itineraire{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.panel-title.h3{
    font-size: 26px;
    line-height: 34px; /* 130.769% */
    align-items: center;
}


#map-wrapper .info-panel .panel-tags .panel-tag {
    color: var(--Vert-Fonc);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 4px 8px;
    line-height: normal;
    border-radius: 25px;
    border: 1px solid var(--Vert-Celtor, #6CAC4D);
    background: var(--Vert-Clair, #D2EBC6);
}

#map-wrapper .map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    color: var(--Bleu-Fonc);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    gap: 24px;
    align-items: center;
    z-index: 10;
    padding: 23px 21px 22px 27px;
}

#map-wrapper .map-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}


.map-filter {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.map-filter + svg path{
    fill: var(--Bleu-Clair);
}

.map-legend .legend-item:nth-child(1) .map-filter:checked + svg path{
    fill: #174800;
}

.map-legend .legend-item:nth-child(2) .map-filter:checked + svg path{
    fill: #6CAC4D;
}

.map-legend .legend-item:nth-child(3) .map-filter:checked + svg path{
    fill: #D2EBC6;
}


.map-filter-btn{
    cursor: pointer;
}

#map-wrapper .map-legend.active_legend label.legend-item {
    display: none;
}

#map-wrapper .map-legend.active_legend {
    padding-left: 21px;
    height: 64px;
}


/*********************
Block wastes list by municipality
*********************/
.block-wastes-list-municipality {
    /*padding-bottom: 92px;*/
    /*padding-top: 76px;*/
}

.block-wastes-list-municipality .icons-recycle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-right: 34px;
}

.block-wastes-list-municipality .item {
    border-radius: var(--border-radius);
    background-color: var(--Blanc);
    width: 100%;
}

.block-wastes-list-municipality .container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.block-wastes-list-municipality .item-head {
    display: flex;
    /*height: 70px;*/
    align-items: center;
    justify-content: space-between;
    padding: 19px 17px 17px;
    cursor: pointer;
}

.block-wastes-list-municipality .item-head span.icon {
    flex: 0 0 auto;
    text-align: center;
}

.block-wastes-list-municipality .item-head .left,
.block-wastes-list-municipality .item-head .right {
    display: inline-flex;
    align-items: center;
}

.block-wastes-list-municipality .item-head .left{
    gap: 20px;
}

.block-wastes-list-municipality .item-head img {
    max-width: 40px;
}

.block-wastes-list-municipality .item-content-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
    padding-left: 80px;
    padding-right: 65px;
    overflow: hidden;
    min-height: 0;
    grid-template-rows: 1fr;
    padding-bottom: 46px;
}

.block-wastes-list-municipality .item-content > div {
    min-height: 0;
    overflow: hidden;
}

.block-wastes-list-municipality .item.is-visible .toggle-icon:before {
    transform: rotate(180deg);
    transition: transform 250ms ease-in-out;
}

.block-wastes-list-municipality .item .toggle-icon {
    display: block;
    height: 34px;
    width: 34px;
    border-radius: 100%;
    background-color: var(--Bleu-Clair);
    position: relative;
}


.block-wastes-list-municipality .item .toggle-icon:before {
    content: '';
    position: absolute;
    display: block;
    width: 12px;
    height: 6px;
    inset: 0;
    margin: auto;
    mask-image: url("../icons/arrow-dropdown.svg");
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Bleu-Fonc);
    transition: transform 250ms ease-in-out;
}

.block-wastes-list-municipality .item .title-warning {
    color: #AA222A;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: block;
}

.block-wastes-list-municipality .item-content .warning {
    color: #AA222A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.block-wastes-list-municipality .item-content .warning * {
    color: #AA222A;
}

.block-wastes-list-municipality .item-cols {
    display: flex;
    width: 100%;
    gap: 47px;
    margin-bottom: 41px;
}

.item-cols .left,
.item-cols .right {
    flex: 1;

}

.block-wastes-list-municipality ul {
    list-style: disc;
    padding-left: 22px;
    margin-top: 10px;
}

.block-wastes-list-municipality ul li {
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.block-wastes-list-municipality ul li a{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.block-wastes-list-municipality ul li a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    vertical-align: middle;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.34766 0C9.67852 0.000272572 9.94685 0.267764 9.94727 0.598633L9.95117 9.35059C9.95132 9.68166 9.68351 9.95055 9.35254 9.95117C9.02146 9.95132 8.7516 9.68351 8.75098 9.35254L8.74805 1.99805L1.19336 9.55273C0.959045 9.78705 0.580018 9.78705 0.345703 9.55273C0.111389 9.31842 0.111389 8.93939 0.345703 8.70508L7.85059 1.19922H0.599609C0.268245 1.19922 7.96564e-06 0.930975 0 0.599609C-1.66124e-07 0.268245 0.268243 7.98702e-06 0.599609 0H9.34766Z' fill='%23203360'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.2s;
}

.block-wastes-list-municipality ul li a:hover::after {
    transform: translate(3px, -3px);
}

/*********************
Template Wastes Route
*********************/
.container-wastes-route {
}


.template-wastes-route .hero-background, .container-municipality .hero-background {
    height: 80vh;
    margin-bottom: -80vh;
    z-index: -1;
    border-radius: var(--border-radius);
    background: var(--Dgrad-BleuFonc, linear-gradient(180deg, #2754A8 0%, #19377F 100%));
}

.template-wastes-route .hero-content {
    padding-top: 228px;
}

.template-wastes-route .hero-content, .hero-municipality {
    position: relative;
    z-index: 10;
}

.template-wastes-route .block-informations-municipality {
    margin-top: 0;
}

.template-wastes-route .block-informations-municipality .actions button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    height: 60px;
    padding-right: 15px;
}

.template-wastes-route .block-informations-municipality .actions button span {
    height: 35px;
    width: 35px;
    background-color: transparent;
    position: relative;
    border-radius: 100%;
    display: flex;
    opacity: 0.8;
    flex: 0 0 auto;
}

.template-wastes-route .block-informations-municipality .actions button.active span {
    background-color: var(--Vert-Celtor);
    opacity: 1;
}

.template-wastes-route .block-informations-municipality .actions button span:after {
    content: '';
    display: block;
    background-color: var(--Blanc);
    mask-image: url("../icons/icon-recycle.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    height: 16px;
    width: 16px;
    margin: auto;
    transition: 0.2s ease;
}

.actions button.active span:after {
    transform: rotate(-180deg);
}

.actions button.no_recycle.active span:after {
    transform: rotate(0deg);
    animation: shake-rotate 0.5s ease-in-out forwards;
}

@keyframes shake-rotate {
    0% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(10deg);
    }
    45% {
        transform: rotate(-8deg);
    }
    60% {
        transform: rotate(8deg);
    }
    75% {
        transform: rotate(-4deg);
    }
    90% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


.template-wastes-route .block-informations-municipality .actions button.no_recycle.active span {
    background-color: var(--Bleu-Fonc);
}

.template-wastes-route .block-informations-municipality .actions button.no_recycle span:after {
    mask-image: url("../icons/icon-not-recycle.svg");
}

.template-wastes-route .slider-container {
    --bg-color: #e2e8f4;
    --card-bg: #ffffff;
    --text-dark: #2a3a5c;
    --text-light: #5a6682;
    --nav-color: #5b73a3;
    width: 100%;
    position: relative;
    overflow: hidden; /* contient les cartes */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.block-waste-route {
}

.block-waste-route>div:first-child{
    flex: 3;
}

.block-waste-route>div:last-child{
    flex: 6;
}

.block-waste-route .tag-recycle {
    display: inline-flex;
    padding: 7px 14px;
    align-items: center;
    gap: 10px;
    background-color: var(--Vert-Celtor);
    color: #fff;
    margin-bottom: 15px;
}

.block-waste-route .tag-recycle:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--Blanc);
    mask-image: url("../icons/icon-recycle.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
}

/* --- Swiper --- */
.mySwiperCard.swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 0 0 20px;
    position: relative;
    /*border-radius: var(--border-radius);*/
}

.mySwiperCard.swiper::after{
    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(214, 225, 245, 0) 20px,  rgba(214, 225, 245, 0)  calc(100% - 30px), rgba(255, 255, 255, 1) 100%);
    z-index: 9;
    pointer-events: none;
    /*opacity: 0;*/
}

.block-waste-route .mySwiperCard.swiper::after{
    background: linear-gradient(90deg, rgba(214, 225, 245, 1) 0%, rgba(214, 225, 245, 0) 20px,  rgba(214, 225, 245, 0)  calc(100% - 30px), rgba(214, 225, 245, 1) 100%);
}

.block-waste-route .slider-container .swiper-wrapper {
    align-items: center;
}

.mySwiperCard .swiper-slide {
    /* Fixer la largeur de la carte active pour éviter les bugs de redimensionnement */
    width: 80%;
    max-width: 100%;
}

/* --- Carte --- */
.mySwiperCard .card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 50px 55px 50px;
    /*box-shadow: 0 10px 30px rgba(42, 58, 92, 0.08);*/
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mySwiperCard .card-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 0;
}

.mySwiperCard .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mySwiperCard .card-image {
    width: 100%;
    /*height: 250px;*/
    max-height: 360px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 13px;
    aspect-ratio: 55 / 36;
}

.mySwiperCard .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Contrôles (Boutons + Pagination) --- */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-left: 10px;
    width: calc(80% + 12px);
}

.swiper-btn-prev,
.swiper-btn-next {
    background: none;
    border: none;
    color: var(--nav-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.swiper-btn-prev,
.swiper-btn-next {
    padding-left: 10px;
    padding-right: 10px;
}


.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    color: var(--text-dark);
}

.swiper-btn-prev.swiper-button-disabled,
.swiper-btn-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.layout-historical_gallery .slider-controls {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* --- Pagination Personnalisée --- */
.swiper-pagination-custom {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 250px;
}

.swiper-pagination-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    /*border-top: 2px dotted #aebcd6;*/
    border-bottom: 1px dotted var(--Bleu-Fonc);
    border-image: repeating-linear-gradient(90deg, var(--Bleu-Fonc) 0 1px, transparent 1px 6px) 1;
    z-index: 1;
}

.swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    color: var(--nav-color);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    opacity: 1;
    margin: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;


    /* H4 */
    font-family: Figtree;
    font-style: normal;
    line-height: normal;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: var(--text-dark);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(42, 58, 92, 0.3);
}

.swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom{
    bottom: 0;
}



.layout-historical_gallery .swiper-pagination-bullet {
    background-color: var(--Bleu-Clair);
    color: transparent;
}

.layout-historical_gallery .swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: var(--Bleu-Fonc);
    color: transparent;
}


/*********************
Block Photo Directory
*********************/
.block-photo-directory {

}

.block-photo-directory .photos> .photos-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    row-gap: 36px;
}

.block-photo-directory .photo {
    aspect-ratio: 170 / 175;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.block-photo-directory .photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.block-photo-directory .photo::after {
    content: '';
    position: absolute;
    display: block;
    left: 22px;
    bottom: 0;
    width: 31px;
    height: 31px;
    background: var(--Blanc);
    transform: translateY(52%) rotate(45deg);
    border-radius: var(--small-radius) 0;
}

.block-photo-directory .bio {
    margin-top: 18px;
}

.block-photo-directory .bio span {
    display: inline-flex;
    width: 100%;

    color: var(--Bleu-Fonc);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px; /* 126.667% */
}


.block-photo-directory .bio span:first-child, .block-photo-directory .bio span:nth-child(2){
    font-weight: 600;
}


.block-photo-directory .dropdown-left{
    max-width: 333px;
    width: 100%;
}

.block-photo-directory .dropdown-row {
    padding-bottom: 15px;
    margin-bottom: 14px;
}

.block-photo-directory .dropdown-row.is-visible .dropdown-title svg {
    transform: rotate(180deg);
}
.block-photo-directory .dropdown-title svg {
    transition: .2s ease;
}

.block-photo-directory .dropdown-title {
    display: inline-flex;
    width: 100%;
    position: relative;
    /* padding-bottom: 15px; */
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.block-photo-directory .photos> .photos-group{
    /*display:none;*/
    overflow: hidden;
    max-height: 0;
    transition: 0.2s;
    border-radius: var(--border-radius);
}

.block-photo-directory .photos> .photos-group.is-visible{
    /*display: grid;*/
    max-height: 1000px;
    transition: 0.4s;
}

/*********************
Card last post
*********************/
.card-last-post {
    display: grid;
    grid-template-columns: auto 301px;
}

/*********************
Page
*********************/
.template-page .container {
    /*padding-left: 0;*/

}

.hero-page {
    position: relative;
    padding-top: 228px;
    min-height: 70vh;
    border-radius: 15px;
    background: var(--Dgrad-BleuFonc, linear-gradient(180deg, #2754A8 0%, #19377F 100%));
    /*overflow: hidden;*/
    /*margin-bottom: 107px;*/
}

.hero-page.flex_cote, .hero-municipality.flex_cote, .hero-content.flex_cote{
    justify-content: space-between;
}

.hero-page .hero-text {
    z-index: 2;
    position: relative;
}

.aside-nav {
    min-height: 200px;
    /*background-color: var(--Vert-Fonc);*/
    background-color: var(--Blanc);
    position: relative;

    margin-top: -150px;
    border-top-right-radius: var(--border-radius);
    padding-left: var(--side-base);
    padding-right: 70px;

    flex: 0 0 auto;
}

.aside-nav:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    left: 0;
    bottom: 100%;
    position: absolute;
    background-color: var(--Blanc);
    mask-image: url(../icons/corner.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    transform: rotate(180deg);
}

.aside-nav:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    left: 100%;
    top: 135px;
    position: absolute;
    background-color: var(--Blanc);
    mask-image: url(../icons/corner.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    transform: rotate(180deg);
}

.aside-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 18px;
}

.aside-nav ul li {
    position: relative;
}

.aside-nav ul li a {
    color: var(--Bleu-Fonc);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    transition: 300ms ease-in-out;
}

.aside-nav ul li a.active {
    font-weight: 700;
    transition: 300ms ease-in-out;
    letter-spacing: -0.2px;
}

.aside-nav ul li a:before {
    opacity: 0;
    content: "";
    display: block;
    width: 27px;
    height: 57px;
    mask-image: url("../icons/triangle.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--Bleu-Clair);
    position: absolute;
    top: 50%;
    left: calc(var(--side-base) * -1 - 15px);
    transform: translateY(-50%);
    transition: opacity 300ms ease-in-out;

}

.aside-nav ul li a.active:before {
    opacity: 1;
    transition: opacity 400ms ease-in-out;
}

.aside-nav .sticky {
    position: sticky;
    top: 0;
    padding-top: 44px;
    padding-bottom: 6px;
}

.aside-nav .sticky span{
    color: var(--Bleu-Fonc);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    /*line-height: normal;*/
    text-transform: uppercase;
    padding: 33px 0;
    display: block;
}

.aside-content {
    margin-top: calc(var(--mdspace) - 10px);
    margin-bottom: 0;
    margin-right: var(--side-big);
    display: flex;
    flex-direction: column;
    gap: 170px;
    flex: 0 0 1;
}

.aside-content .layout>div{
    margin-top: 0;
    margin-bottom: 0;
}


.hero-page img {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
}


.page-template-template-about .layout>.big_mrg_cote{
    margin-right: 0;
    /*margin-right: var(--side-dif);*/
    margin-left: 0;
    max-width: 821px;
}

.page-template-template-about .layout>.big_mrg_cote{
    margin-right: 0;
    margin-left: 0;
}

.page-template-template-about .layout>div{
    max-width: 821px;
}


.page-template-template-about .layout.layout-historical_gallery>div, .page-template-template-about .layout.layout-trombinoscope>div{
    max-width: 1100px;
}

.layout h2{
    max-width: 570px;
}

.page-template-template-about .flex_cote.theme-background-white{
    gap: 7vw;
    margin-bottom: var(--mdspace);
}

    /*********************
    Template news
    *********************/
.container-template-news .row-news {
    --col-span: 1;
    --col-start: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
    margin-bottom: 30px;
}

.container-template-news .news-categories {
    display: flex;
    gap: 18px;
    padding-top: 37px;
    padding-bottom: 37px;
    margin-bottom: 50px;
}

.container-template-news .news-categories a {
    color: var(--Bleu-Fonc);
    transition: 0.2s;
}

.news-categories a.news-category.active, .news-categories a.news-category:hover {
    font-weight: 700;
    letter-spacing: -0.2px;
}

.container-template-news .row-news .news-smart {
    margin-bottom: 40px;
}

.container-template-news .block-list-news {
    margin-bottom: 110px;
}

.container-template-news .link-document.news-smart-ajax {
    opacity: 0;
}

.container-template-news .pagination {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--Bleu-Celtor);
    cursor: pointer;
}

.container-template-news  .hero-page {
    min-height: 531px;
    height: auto;
    padding-bottom: 117px;
}

/*********************
Container Template Particulier/Individuals
*********************/
.container-template-individuals .hero-page {
    border-radius: 15px;
    background: var(--Dgrad-VerFonc);
    margin-bottom: -20vh;
    padding-bottom: 22vh;
}

/*********************
Container Template Particulier/Individuals
*********************/
.container-single-news .hero-page {
    margin-bottom: -80px;
    min-height: 531px;
    padding-bottom: 100px;
    height: auto;
}

.news-content {
    position: relative;
    margin-bottom: var(--bigspace);
    --space: 90px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: var(--space);
    border-radius: var(--border-radius);
}

.news-content>div:nth-child(1) {
}

.news-content>div:nth-child(2) {
    grid-area: 2 / 1;
    padding-top: 30px;
}

.news-content>div:nth-child(3) {
    grid-area: 2 / 2;
    /*width: 430px;*/
    min-width: 240px;
    max-width: 450px;
    width: 20vw;
}


.page-id-643 .container-single-news .hero-page, .page-template-template-form .container-single-news .hero-page {
    margin-bottom: -149px;
    padding-bottom: 170px;
}

/*********************
Formulaire
*********************/
.pomform input, .benneform input, .pomform select, .calendar-popup input {
    display: inline-flex;
    border-radius: 62px;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border: none;
    box-shadow: none;
    background-color: var(--Blanc);
    font-size: 16px;
    color: var(--Bleu-Txt);
    font-weight: 500;
}

form .link-arrow{
    text-transform: uppercase;
}

.pomform .form-group, .benneform .form-group {
    margin-bottom: 25px;
}

.pomform textarea, .benneform textarea {
    display: inline-flex;
    width: 100%;
    height: 144px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--Bleu-Txt);
    font-weight: 500;
    resize: vertical;
}


.pomform input::placeholder, .benneform input::placeholder, .pomform select::placeholder,
.pomform textarea::placeholder, .benneform textarea::placeholder{
    color: var(--Bleu-Txt);
    opacity: 0.4;
}

.pomform textarea:focus-visible, .pomform input:focus-visible, .pomform select:focus-visible,
.benneform textarea:focus-visible, .benneform input:focus-visible {
    border: unset;
    outline: unset;
}

.page-template-template-form h3{
    margin-bottom: 20px;
}

.pomform label{
    display: none;
}

.pomform{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.pomform .nom_prenom, .pomform .mail_et_telephone, .pomform .adresse, .pomform .zone_de_texte{
    grid-area: 1 span / 2 span;
}

.pomform .with_arrow,
.pomform .custom_select{
    width: 100%;
}




.contain-select {
    position: relative;
}

.contain-select::after {
    content: '';

    position: absolute;

    top: 50%;
    right: 15px;

    width: 13px;
    height: 7px;

    transform: translateY(-50%);

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' viewBox='0 0 13 7' fill='none'%3E%3Cpath d='M12.1797 0.35376L6.26921 6.26452L0.353157 0.353759' stroke='%23203360' stroke-miterlimit='10'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: contain;

    pointer-events: none;

    transition: transform .3s ease;
}

.contain-select select {
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;

    padding-right: 40px;
}

.contain-select:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}





.page-template-template-form .news-content .flex_cote>div:first-child{
    flex: 7;
}

.page-template-template-form .news-content .flex_cote>div:last-child{
    flex: 3;
    padding-left: 4vw;
}

.page-template-template-form .news-content {
    --space: 0;
}

a.big_tel{
    color: var(--Bleu-Fonc);

    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 118.75% */

    display: block;
    margin-bottom: 40px;
}

.page-template-template-form .adress_celtor{
    margin-top: 23px;
}

.adress_celtor{
    color: var(--Bleu-Fonc);
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.adress_celtor>li:first-child{
    font-weight: 700;
}

/*********************
Block Galerie historique
*********************/
.block-historical-gallery .mySwiperCard .card {
    background-color: var(--Bleu-Clair);
}

.block-historical-gallery .mySwiperCard .card .card-image {
    height: auto;
    aspect-ratio: 707 / 364;
    border-radius: var(--border-radius);
}

.second_next{
    display: flex;
    padding: 0;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(39, 84, 168, 0.45);
    position: absolute;
    top: 50%;
    left: 90%;
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: 0.2s;
}

.second_next:hover{
    transform: translate( calc(-50% + 6px), -50%);
}

.second_next>svg{
    margin-left: 2px;
}

/*********************
Block Hourly Image
*********************/
.block-hourly-image ul li {
    display: grid;
    grid-template-columns: 2fr 4fr;
    width: 100%;
    grid-column-gap: 15px;
}

.block-hourly-image p{
    margin-bottom: 10px;
}

.block-hourly-image ul:last-child {
    border-bottom: none;
}

.block-hourly-image .row {
    align-items: center;
}

.block-hourly-image .image {
    aspect-ratio: 663 / 567;
    overflow: hidden;
    border-radius: var(--border-radius);
}

/*********************
Flexible Content
*********************/
.flexible-content .layout{
    /*margin-bottom: 110px;*/
}

/*********************
Template Homepage
*********************/
.container-homepage {
}



/* Gestion map */

.gmnoprint, .gm-style-cc, .gm-fullscreen-control, .gm-style>div>div>a>div>img {
    display: none;
}




/* Crayon */

#wpadminbar{
    display: none;
}
.header-edit-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
.header-edit-link>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-edit-link .dashicons {
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.header-edit-link:hover {
    background-color: #000;
}


.pointille{
    border-bottom: 1px dotted var(--Bleu-Fonc);
    border-image: repeating-linear-gradient(90deg, var(--Bleu-Fonc) 0 1px, transparent 1px 6px) 1;
}

.theme-color-green.pointille{
    border-bottom: 1px dotted var(--Vert-Fonc);
    border-image: repeating-linear-gradient(90deg, var(--Vert-Fonc) 0 1px, transparent 1px 6px) 1;
}


.benneform>div:first-child{
    border-right: 1px dotted var(--Bleu-Fonc);
    border-image: repeating-linear-gradient(180deg, var(--Bleu-Fonc) 0 1px, transparent 1px 6px) 1;

}









/* Benne et custom input, select, etc. */

.news-content div.form_benne{
    grid-area: 1 / 1 / 2 span / 2 span;
    max-width: unset;
    width: 100%;
}

.form_benne.success_resa .etape_fin_commande{
    display: block;
}

.form_benne .etape_fin_commande, .form_benne.success_resa .etape_form_commande{
    display: none;
}

.form_benne .etape_fin_commande>div{
    max-width: 562px;
}

.form_benne .etape_form_commande>div:first-child{
    width: 40%;
    margin-bottom: 51px;
    padding-right: 46px;
}

.benneform{
    display: flex;
    /*justify-content: space-between;*/
}

.benneform h3{
    margin-bottom: 20px;
}

.benneform>div:first-child{
    flex: 0 0 40%;
    padding-right: 66px;
}

.benneform>div:last-child{
    padding-left: 66px;
    width: 100%;
}

.structure_benne{
    display: grid;
    gap:  25px 40px;
}

.structure_benne label{
   margin: 0;
}


.benneform>div:last-child .structure_benne{
   grid-template-columns: 1fr 1fr;
}

/*.benneform>div:last-child .structure_benne>label:nth-child(1){*/
/*    padding-left: 66px;*/
/*    width: 100%;*/
/*}*/

.benneform>div:last-child .link-arrow {
    margin-left: auto;
    margin-right: 0;
    display: flex;
}


.benneform>div:first-child>.structure_benne>div, .benneform>div:first-child>.structure_benne>div .with_arrow{
   width: 100%;
}

.custom_select, .week_picker{
    position:relative;
    width:fit-content;
}

.with_arrow{
    position: relative;
    transition: 0.5s;
    z-index: 5;
    width: fit-content;
}

.with_arrow>svg{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.2s;
    pointer-events: none;
}

.with_arrow>svg.suppr{
    right: 40px;
    opacity: 0;
    cursor: pointer;
}

.open .with_arrow>svg:last-child{
    transform: translateY(-50%) rotate(180deg);
}

.open .with_arrow>svg.suppr{
    opacity: 1;
    pointer-events: all;
}


.custom_select_input, .week_picker_display{
    width: 100%;
    height: 52px;
    padding: 0 52px 0 16px;
    /*border: 1px solid #dcdcdc;*/
    border: unset;
    border-radius: 12px;
    color: var(--Bleu-Fonc);

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.custom_select_input::placeholder, .week_picker_display::placeholder, .display-actions .theme-color-green .custom_select_input::placeholder  {
    color: rgba(21, 46, 107, 0.60);
}


.display-actions .theme-color-green .with_arrow svg path{
    stroke: var(--Bleu-Fonc);
}


.custom_select_input:focus-visible, .week_picker_display:focus-visible {
    border: unset;
    outline: unset;
}

/*.custom_select.empty .custom_select_input {*/
/*    color: #999;*/
/*}*/

.custom_select_dropdown{
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 0;
    width: fit-content;
    min-width: 100%;
    overflow: hidden;
    /*display:none;*/
    padding: 0 0 0 8px;
    border-radius: 0 0 15px 15px;
    background: #E6EDF9;

    /* ombre-mobile */
    box-shadow: 0 0 13px 0 rgba(0, 0, 38, 0.12);

    max-height: 0;
    transition: 0.5s;
}


.display-actions .theme-color-green .custom_select_dropdown {
    background: #E6EDF9;
}

.open .custom_select_dropdown {
    display: flex;
    max-height: 400px;
}

.custom_select_option {
    line-height: normal;
    padding: 8px 10px;
    cursor: pointer;
    transition: 0.2s;
    color: var(--Bleu-Fonc);
    font-weight: 500;
}

.custom_select_option:hover {
    font-weight: 700;
    letter-spacing: -0.1px;
}

.inner_scroll {
    height: auto;
    width: 100%;
    /*overflow: auto;*/
    overflow-y: scroll;
}


.custom_select_dropdown .inner_scroll {
    margin-top: 35px;
}


.custom_select_dropdown .inner_scroll > div:last-child,
.custom_select_dropdown .inner_scroll > div.last-visible {
    margin-bottom: 10px;
}

.custom_select.open, .week_picker.open {
    z-index: 998;
}


/* width */
.inner_scroll::-webkit-scrollbar {
    width: 19px;
}

/* Track */
.inner_scroll::-webkit-scrollbar-track, .display-actions .theme-color-green .inner_scroll::-webkit-scrollbar-track{
    background: #E6EDF9;
}

/* Handle */
.inner_scroll::-webkit-scrollbar-thumb, .display-actions .theme-color-green .inner_scroll::-webkit-scrollbar-thumb{
    background: #718EC6;
    border: 8px solid #E6EDF9;
    border-radius: 10px;
}

/* Handle on hover */
.inner_scroll::-webkit-scrollbar-thumb:hover, .display-actions .theme-color-green .inner_scroll::-webkit-scrollbar-thumb:hover{
    background: #718EC6;
    width: 2px;
}

.custom_pilule .with_arrow input{
    border-radius: 200px;
    min-width: 126px;
}


/* Recherche */

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.custom_search.open .with_arrow>svg:last-child {
    transform: translateY(-50%) rotate(0deg);
}

.custom_search{
    max-width: 300px;
}

.block-informations-municipality .actions .custom_search .custom_select_input{
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 136.842% */
    padding-left: 18px;
    height: 60px;
    min-width: 270px;
}

.block-informations-municipality .actions .custom_search .with_arrow>svg:last-child {
    height: 17px;
    width: 17px;
}


.block-informations-municipality .actions .custom_search .with_arrow>svg.suppr path,
.block-informations-municipality .actions .custom_search .with_arrow>svg:last-child line,
.block-informations-municipality .actions .custom_search .with_arrow>svg:last-child circle{
    stroke-width: 2px;
}


/* select vert */

.theme-color-green{}

.theme-color-green .custom_select_option, .theme-color-green .custom_select_input  {
    color: var(--Vert-Fonc);
}

.theme-color-green .with_arrow svg path {
    stroke: var(--Vert-Fonc);
}

.theme-color-green .custom_select_input::placeholder {
    color: rgba(23, 72, 0, 0.40);
}

.theme-color-green .inner_scroll::-webkit-scrollbar-track, .theme-color-green .custom_select_dropdown {
    background: #F6FBF3;
}
.theme-color-green .inner_scroll::-webkit-scrollbar-thumb {
    background: #579350;
    border: 8px solid #F6FBF3;
}

.theme-color-green .inner_scroll::-webkit-scrollbar-thumb:hover {
    background: #579350;
}


/* select FAQ */

.theme-background-white{}

.theme-background-white .custom_select_input,
.liste_waste_drop .custom_select_input{
    border: 1px solid var(--Bleu-Fonc, #203360);
}

.liste_waste_drop .with_arrow{
    margin-top: 10px;
}

/* custom select que faire des dechets */


.hero-municipality .goto-municipality .custom-select__trigger {
    background-color: transparent;
    padding-left: 0;
    font-size: 57px;
    font-style: normal;
    font-weight: 500;
    /*line-height: 29px;*/
    color: var(--Blanc);
}

.hero-municipality .goto-municipality .custom-select__arrow {
    background-color: var(--Blanc);
    margin-left: 27px;
    mask-image: url(../icons/arrow-dropdown.svg);
}


.hero-municipality .goto-municipality .custom_select {
    width: fit-content;
}

.hero-municipality .goto-municipality .custom_select_input {
    background-color: transparent;
    padding-left: 0;
    font-size: 57px;
    font-style: normal;
    font-weight: 500;
    /*line-height: 29px;*/
    color: var(--Blanc);
    width: 520px;
    min-width: 50px;
    max-width: 100%;
    border-radius: 0;
}

.hero-municipality .goto-municipality .with_arrow .suppr{
    display: none;
}

.hero-municipality .goto-municipality .custom_select_dropdown {
    top: 100%;
    /*margin-top: 10px;*/
    width: fit-content;
    min-width: unset;
    border-radius: var(--border-radius);
}


.hero-municipality .goto-municipality .custom_select_dropdown .inner_scroll {
    margin-top: 10px;
}




.hero-municipality .goto-municipality .reset_option {
    display: none;
}

.hero-municipality .goto-municipality .custom_select_input::placeholder {
    color: var(--Blanc);
}

.hero-municipality .goto-municipality .with_arrow>svg path {
    stroke: var(--Blanc);
}

.hero-municipality .goto-municipality .with_arrow {
    padding: 14px 0;
    width: fit-content;
}


.hero-municipality .with_arrow>svg:last-child{
    height: 10px;
    width: 21px;
}




/* test select semaine */

.week_picker_dropdown{
    flex-direction: column;
    padding: 0 20px;
}

.week_picker_header{
    margin-top: 40px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    color: var(--Bleu-Fonc);
}

.week_picker_header button, .week_picker_header button:hover{
    background-color: transparent;
    padding: 0 10px;
}

.week_picker_calendar {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

.week_row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
}

.week_day {
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: var(--Bleu-Fonc);
}

.week_row:hover .week_day {
    background: #eef3ff;
}

.week_row.active .week_day {
    background: #2d6cff;
    color: white;
}

.week_row.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/*.manquant input,*/
/*input.manquant,*/
.custom_select.manquant .with_arrow input,
.week_picker.manquant .week_picker_input input{
    background: #ffaaaa;
}


.complex_option{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
}

.complex_option .custom_select_option{
    display: flex;
    align-items: center;
    background-color: var(--Blanc);
    color: var(--Bleu-Fonc);
    padding: 10px 15px 10px 10px;
    gap: 15px;
    border-radius: var(--border-radius);
}

.complex_option .custom_select_option svg{
    flex: 0 0 auto;
}


.complex_option .custom_select_option>div{
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 500;
    line-height: normal;
}

.complex_option .custom_select_option>div>span{
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.custom_select_dropdown .inner_scroll{
    margin-top: 41px;
}


.complex_option .custom_select_option:hover{
    font-weight: 700;
    background-color: #CEDBF3;
}

.complex_option .custom_select_option:hover>div,
.complex_option .custom_select_option>div{
    letter-spacing: initial;
}

/* select contact header */

#header .select_contact.custom_pilule .with_arrow input.custom_select_input{
    background-color: var(--Vert-Celtor);
    color: var(--Blanc);
    font-size: 14px;
    font-weight: 400;
    width: 100px;
    min-width: 100px;
    height: 28px;
    padding-left: 15px;
    padding-right: 33px;
}


#header .select_contact .custom_select_option {
    color: var(--Blanc);
    white-space: nowrap;
    word-break: keep-all;
}

#header .select_contact .custom_select_option span{
    transition: 0.2s;
}

#header .select_contact .custom_select_dropdown {
    border-radius: 0 15px 15px 15px;
    background: #78c155;
}


#header .select_contact .inner_scroll {
    padding-right: 8px;
    overflow-y: unset;
    margin-top: 22px;
}

#header .select_contact .custom_select_dropdown .inner_scroll > div:last-child {
    margin-bottom: 6px;
}

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


.flex_egale .image{
    position: relative;
}

.flex_egale .image::after{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    bottom: 24%;
    width: 63px;
    height: 63px;
    background: var(--Blanc);
    transform: translateX(-52%) rotate(45deg);
    border-radius: 0 var(--small-radius);
}

.flex_egale.reverse .image::after{
    left: unset;
    right: 0;
    transform: translateX(52%) rotate(45deg);
}



/* Templete points */

.with_maps_point{
    padding-top: 0;
    overflow: hidden;
    display: grid;
}

.with_point_carte{
    grid-area: 1 / 1;
    display: grid;
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 774px;
}

.with_maps_point .hero-text{
    grid-area: 1 / 1;
    padding-top: 228px;
}



/*.with_point_carte svg{*/
/*    display: block;*/
/*   min-width: 100%;*/
/*    !*width: 100%;*!*/
/*    min-height: 100%;*/
/*    justify-self: end;*/

/*    margin-left: auto;*/
/*}*/

.with_point_carte img{
    object-position: right;
}



.point_plus{
    position: absolute;
    right: 330px;
    top: 230px;
    height: 49px;
    width: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--Vert-Celtor);
    transform: translate(-50%);
    cursor: pointer;
    overflow: visible;
    z-index: 3;
}

.with_point_carte .point_plus:nth-of-type(2){
    right: 310px;
    top: 345px;
}

.with_point_carte .point_plus:nth-of-type(3){
    right: 510px;
    top: 430px;
}

.with_point_carte .point_plus:nth-of-type(4){
    right: 160px;
    top: 460px;
}


.point_plus .text_point{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: 50%;
    background-color: var(--Vert-Celtor);
    color: var(--Blanc);
    z-index: -1;
    padding: 28px 32px 32px;
    border-radius: var(--border-radius);
    transform: scale(0.2);
    transform-origin: bottom;
    max-width: 296px;
    width: max-content;
    transition: 0.2s;
    line-height: 129%;
}

.point_plus.actif {
    z-index: 5;
}

.point_plus:hover {
    z-index: 6;
}

.point_plus:hover .text_point, .point_plus.actif .text_point{
    opacity: 1;
    transform: scale(1);
}



.with_maps_point .hero-text{
    pointer-events: none;
}

.with_maps_point .hero-text h1{
    width: fit-content;
    pointer-events: all;
}

.hero-text>p, .hero-text>.demi>p{
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    max-width: 841px;
}

.container-template-news .hero-text>p{
    max-width: 730px;
}

.hero-text>.demi>p{
    width: 50%;
    max-width: 720px;
    pointer-events: all;
}




/* faq */

.filter {
    display: flex;
    gap: 18px;
}

.filter .custom_search{
    min-width: 150px;
    max-width: 215px;
}


.affiche_horaire>div{
    border-bottom: 1px dotted var(--Bleu-Fonc);
    border-image: repeating-linear-gradient(90deg, var(--Bleu-Fonc) 0 1px, transparent 1px 6px) 1;
    padding-bottom: 35px;
    margin-bottom: 27px;
}

.affiche_horaire>div:last-of-type{
    border-bottom: 0px dotted transparent;
    border-image: unset;
}

.affiche_horaire ul{
   font-size: 19px;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.indication_italic, .block-hourly-image p.indication_italic{
    font-size: 14px;
    font-style: italic;
    margin: 0;
}


/*.calendar-popup{*/
/*    z-index: 999;*/
/*    position: fixed;*/
/*}*/

.calendar-popup *{
    color: var(--Blanc);
}


.calendar-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 99999;
    display: flex;
}

.calendar-popup {
    position: relative;
    max-width: 700px;

    background-color: var(--Bleu-Celtor);
    border-radius: var(--border-radius);
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    margin: auto;
    padding: var(--smlspace);
}

.calendar-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: 0;
    background: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}


.calendar-popup h3{
    margin-bottom: 20px;
}

.calendar-popup__url{
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.calendar-popup .link-arrow{
    margin-top: 10px;
}

.calendar-popup .dropdown-title{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    cursor: pointer;
    margin-top: 40px;
}

.calendar-popup .dropdown-title svg{
    flex: 0 0 auto;
    transition: 0.2s;
}

.calendar-popup .is-visible .dropdown-title svg{
    transform: rotate(180deg);
}

.calendar-popup .dropdown-title svg path{
    stroke: var(--Blanc);
}

.calendar-popup  .dropdown-content{
    padding-left: 16px;
}

.calendar-popup  .dropdown-content p{
    margin-top: 16px;
}

.calendar-popup  .dropdown-content p:first-child{
    margin-top: 24px;
}

.calendar-popup .link-arrow span {
    background-color: var(--Blanc);
}

.calendar-popup .link-arrow span:before {
    background-color: var(--Bleu-Fonc);
}

.calendar-popup__providers{
    display: flex;
    gap: 30px;
}