:root {
    --noir: #271b46;
    --violet: #4715d0;

    /*   --violet2: #7b209d;*/
    --violet2: #b72e85;

    /* --violet: #40f;*/

    --violet-moyen: #bba3ff;
    --violet-clair: #efeaff;
    --violet-gris: #69749c;
    --rouge: #f94c4c;
    --rouge-clair: #fed9d9;
    --jaune: #fff5eb;
    /*    --fond: #fffbfb;*/
    --blanc: #fff;

    --largeur: 1140px;

    --poppins: "Poppins-Variable", Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: "Poppins-Variable";
    src:
        url("fonts/Poppins-Variable.woff2") format("woff2"),
        url("fonts/Poppins-Variable.woff") format("woff"),
        url("fonts/Poppins-Variable.ttf") format("truetype");
    font-weight: 300 800;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "BespokeSlab-Variable";
    src:
        url("fonts/BespokeSlab-Variable.woff2") format("woff2"),
        url("fonts/BespokeSlab-Variable.woff") format("woff"),
        url("fonts/BespokeSlab-Variable.ttf") format("truetype");
    font-weight: 300 800;
    font-display: swap;
    font-style: normal;
}

/*
'wght' (range from 300.0 to 800.0'wght' (range from 300.0 to 800.0
*/
@font-face {
    font-family: "BespokeSerif-Variable";
    src:
        url("fonts/BespokeSerif-Variable.woff2") format("woff2"),
        url("fonts/BespokeSerif-Variable.woff") format("woff"),
        url("fonts/BespokeSerif-Variable.ttf") format("truetype");
    font-weight: 300 800;
    font-display: swap;
    font-style: normal;
}

/*
'wght' (range from 300.0 to 800.0'wght' (range from 300.0 to 800.0
*/
@font-face {
    font-family: "BespokeSerif-VariableItalic";
    src:
        url("fonts/BespokeSerif-VariableItalic.woff2") format("woff2"),
        url("fonts/BespokeSerif-VariableItalic.woff") format("woff"),
        url("fonts/BespokeSerif-VariableItalic.ttf") format("truetype");
    font-weight: 300 800;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: "Tanker-Regular";
    src:
        url("fonts/Tanker-Regular.woff2") format("woff2"),
        url("fonts/Tanker-Regular.woff") format("woff"),
        url("fonts/Tanker-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

/**

'wght' (range from 300.0 to 900.0
*/
@font-face {
    font-family: "Satoshi-Variable";
    src:
        url("fonts/Satoshi-Variable.woff2") format("woff2"),
        url("fonts/Satoshi-Variable.woff") format("woff"),
        url("fonts/Satoshi-Variable.ttf") format("truetype");
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

/* --------------------------------------------

            BALISE NATIVES

-------------------------------------------- */

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-size: 18px;
    scroll-behavior: smooth !important;
}

body {
    font-family: "BespokeSlab-Variable", serif;
    color: var(--noir);
    /*    background: var(--blanc);*/
    background: #fff;
    font-size: 18px;

    @media (max-width: 600px) {
        /*        padding-top: 40px;*/
        /* couvrire la barre de nav */
    }
}

p {
    line-height: 1.6em;
    font-size: 1rem;
    font-weight: 380;
}

p a,
p a:visited,
li a,
li a:visited {
    position: relative;
    border-bottom: 1px solid var(--rouge-clair);
    transition: 0.3s all;
    color: var(--rouge);
}

p a:hover,
li a:hover {
    text-decoration: none;
    border-bottom: 2px solid var(--rouge);
    color: var(--rouge);
}

p a.spip_note {
    border: none;
    color: var(--rouge);
}

strong {
    font-weight: 550;
}

sup a,
sup a:visited {
    color: var(--rouge);
    font-weight: 800;
    border: none;
    display: inline-block;
    margin-left: 0.2em;
    height: 1em;
}

article {
    margin-bottom: 4rem;
}

article[id] {
    scroll-margin-top: 60px;
}
H1,
h2,
h3,
h4 {
    font-family: "Poppins-Variable", Arial, Helvetica, sans-serif;
}
h2 {
    font-size: 1.8rem;
    font-weight: 550;
}

h3,
h4 {
    font-weight: 500;
}

h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--violet2);
}

hr {
    background: linear-gradient(45deg, var(--violet), var(--rouge));
    color: var(--violet);
    height: 3px;
    margin: 2em 0;
    border: 0;
}

hr.simple {
    background: var(--violet);
    height: 1px;
    margin: 0 0 2em 0;
    border: 0;
}

blockquote {
    font-style: italic;
}

.centre-flex {
    display: flex;
    align-items: center;
    min-height: 200px;
}

/* --------------------------------------------

         TOP NAV

-------------------------------------------- */

.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* ta couleur de fond */
    z-index: 100;
    background: linear-gradient(45deg, #4715d0, 80%, #8e248a);
}
.navbar {
    font-family: "Poppins-Variable", sans-serif;
    height: 65px;
    font-weight: 350;

    padding: 0 0 0 1em;
    transition:
        height 0.3s ease,
        padding 0.3s ease,
        background 0.3s ease;
    justify-content: flex-start;
    width: 1140px;
    margin: 0 auto;

    & .navbar-brand {
        padding-left: 0;
    }
    & .navbar-brand img {
        width: 150px;
    }
    & .loupe {
        background: none;
        border: none;
        padding: 3px;
        font-size: 1.2em;
        position: relative;
        top: -2px;
        left: 8px;
        color: #fff;
    }
}

.navbar .navbar-section:not(:first-child):last-child {
    /* surcharge spectre */
    justify-content: flex-start;
}
.navbar a,
.navbar .btn.btn-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    height: 65px;
    /*    transition: height 0.3s ease;*/
    padding: 0 1em;
    transition: all 0.3s ease;
}
.navbar a:hover,
.navbar .btn.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    height: 40px;
    padding: 0 0 0 1em;

    & .navbar-brand {
        padding-left: 0;
    }
    & .navbar-brand img {
        width: 130px;
    }
}
.navbar.scrolled a,
.navbar.scrolled a.btn.btn-link {
    transition: height 0.3s ease;
    height: 40px;
}

.navbar a:hover,
.navbar .btn.btn-link:hover {
    color: var(--blanc);
    text-decoration: none;
}

.navbar a.active,
.navbar a.btn.btn-link.active {
    text-decoration: none;
    color: var(--blanc);

    background: var(--rouge);
}

.navbar .sub {
    width: 300px;

    & li a {
        height: 2em;
    }
}
.navbar.scrolled .sub {
    margin-top: 0;

    & li a {
        height: 2em;
    }
}

.navbar li a {
    /*  MODAL MOBILE  */

    line-height: 1.2em;
    display: block;
    margin-bottom: 0.2em;
    font-weight: 400;
    color: var(--noir);
    padding: 0.4em;
    letter-spacing: 0;
    border: none;
    font-size: 14px;
    transition: all 0.2s ease;
    height: 1.5em;

    &:hover {
        color: var(--rouge);
        font-weight: 480;
    }
}
.navbar.scrolled li a {
    height: 1.5em;
}

.navbar div.field {
    color: #fff;
}

.navbar input {
    border-color: #cbcbcb;
}

/* 
 * 
 *  NAV MOBILE  
 * 
 */

#burger-nav .fa-bars {
    font-size: 2em;
    margin-top: 16px;
    transition: font-size 0.3s ease;
}
.scrolled #burger-nav .fa-bars {
    margin-top: 9px;
    font-size: 1.5em;
}

#modal-nav {
    padding: 0;
    z-index: 900;
    background: linear-gradient(52deg, var(--rouge), 35%, var(--violet));

    & .modal-container {
        background: none;
        max-height: 100%;
        height: 100%;
        box-shadow: none;
    }
    & .modal-overlay {
        background: none;
    }

    & li {
        margin: 3px;
    }

    & li a {
        font-size: 1em;
        border: none;
        color: #fff;
    }
    & li a.active {
        background: none;
        font-weight: 650;
        border-left: 5px solid var(--rouge);
        display: inline-flex;
    }

    & #formulaire-recherche {
        font-size: 17px;
        margin-top: 1em;
    }
    & .btn-clear {
        height: 2rem;
        width: 1.5rem;
        font-size: 2em;
        color: #fff;
        border: none;
        padding: 0.5em;
    }
}

.bouton,
.bouton:visited,
.bonton:hover {
    font-family: "Poppins-Variable", sans-serif;
    border-radius: 6px;
    padding: 0.5em 2em;
    background: var(--violet);
    font-weight: 500;
    transition: all 0.2s linear;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    border: none;
}
button.bouton:hover {
    color: var(--violet-moyen);
}

.bouton.bouton-rouge {
    background: var(--rouge);
}
.bouton.bouton-lien {
    background: none;
    color: var(--rouge);
}
.navbar .bouton-adherer {
    color: var(--rouge);
    font-weight: 800;
}

.bouton:hover {
    color: inherit;
}

/* --------------------------------------------

                SURCHARGE SPECTRE

-------------------------------------------- */

.divider {
    border-top: 1px solid var(--violet-moyen);
    margin: 0.5em 1em;
}
.chip {
    font-size: 0.7em;
    background: var(--rouge);
    border-radius: 11px;
    font-weight: 400;
    font-family: "Poppins-Variable", Arial, sans-serif;
    color: #fff;
    padding: 0 0.8em;
    & a {
        text-decoration: none;
        color: #fff;
    }
}

/*
.btn {
    color: rgba(54, 0, 204, 1);
}
*/

.wrapper {
    width: 100%;
    max-width: var(--largeur);
    margin: 0 auto;
    overflow: hidden; /* obligé pour ne pas avoir de débordement en mobile. */
}



/*
 * 
 * ---ACTIVITES
 * 
 * */

.event-futur {
    & h2 a {
        color: var(--violet2);
    }
}

.event-passe {
    & time {
        color: #666;
    }
    & h3 {
        font-weight: 400;
        font-size: 1.2rem;
    }
    & h3 a {
        color: #db87bc;
    }
    & .chip {
        background: #888;
    }
}

/*
 * 
 * 
 *  --------ACTUALITE
 * 
 * 
 * */

.actu {
    margin-top: 1em;
    min-height: 450px;
    padding: 0 0.5em;
}

.actu .actu-image {
    min-height: 240px;
    background: linear-gradient(34deg, var(--violet) 10%, var(--rouge));
    background: url(../img/abdil-generic.png) no-repeat center center;
    background-size: contain;
    padding: 0;
    transition: all 0.2s linear;
}

.actu .actu-titre h3 {
    font-weight: 600;
    margin: 0.5em 0 0;

    & a {
        color: var(--violet2);
    }

    & a:hover {
        color: var(--violet);
    }
}

.actu .actu-image:hover {
    transform: scale(0.99);
}

.actu .actu-image a.lienimage {
    display: block;
    height: 240px;
    width: 100%;
}

.actu .actu-txt {
    margin-top: 1em;
}

.actu .btn:hover {
    background: var(--violet-clair);
    text-decoration: none;
}
/*-------SPIP ----------- */

html #spip-debug-header {
    width: 600px;
}
.pagination-items {
    display: flex;
    list-style: none;
    padding: 1em;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    font-weight: 900;
    font-family: "Satoshi-Variable", sans-serif;
    max-width: 320px;
    margin: 1em auto;
}

.pagination-item {
    padding: 0.6em;

    & a {
        border: none;
    }
}

.art-117 .spip_document {
    /*  les gens dans l'orga  */

    width: 300px;
    text-align: center;
    margin: 1em auto;
    position: relative;
}

.art-117 .spip_document figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--violet);
    background: linear-gradient(115deg, var(--violet), var(--rouge));
    mix-blend-mode: color;
    opacity: 0.7;
}

.art-117 .spip_document img {
    display: block;
    filter: grayscale(100%); /* si pas déjà en N&B */
    border-radius: 15px;
}

/*--------------------------

            HEADER 

---------------------------- */

header {
    font-family: "Poppins-Variable", sans-serif;
    color: #fff;
    background: linear-gradient(45deg, var(--rouge) -10%, var(--violet));
    min-height: 300px;
    padding: 65px 0 3em;

    --angle-bas: calc(100% - clamp(2%, 3vw, 90%));
    clip-path: polygon(0 0, 100% 0, 100% var(--angle-bas), 0 100%);

    & .home h1 {
        font-size: 1.8rem;
        max-width: 600px; /* joli line break */
    }

    & h1 {
        font-weight: 600;
        margin: 15px;
        font-size: 2.2rem;
        margin-top: 1em;
    }
    & .desc {
        margin: 15px;
        font-family: "BespokeSlab-Variable", serif;

        & p {
            font-size: 1.2em;
            line-height: 1.4em;
        }
    }
    & .credits {
        position: relative;
        right: -55%;
        text-align: center;
        opacity: 0.4;
        font-size: 0.6em;
        rotate: 90deg;
        top: 179px;
    }

    @media (max-width: 680px) {
        text-align: center;
        background: linear-gradient(50deg, var(--rouge) -40%, var(--violet));
    }
}

/*
body.art header {
    background: none;
    padding: 65px 0 0 0;

    & h1 {
        font-size: 2.8em;
    }
}
*/

header .logo {
    background-image: url("../img/abdil-generic.png");
    background-repeat: no-repeat;
    background-position: center;
    min-height: 350px;
    background-size: contain;

    @media (max-width: 680px) {
        min-height: 250px;
        margin-top: 2em;
    }
}

.credit {
    font-weight: 400;
    font-size: 0.7em;
    font-family: var(--poppins);
    color: var(--violet);
    margin-left: 1em;
    & p {
        margin: 0;
    }
}

/*--------------------------

                CONTENU

---------------------------- */

.spip_doc_lien img,
.spip_document img,
iframe html img {
    max-width: 100%;
    height: auto;
}

figure.spip_doc_inner {
    /* Style par défaut des images insérée avec une marge */
    margin: 0;
}

.chapo {
    margin: 2em 0;
    font-weight: 700;
    line-height: 1.4em;
}
/*
.chapo p {
    font-weight: 600;
    font-size: 1.3em;
    line-height: 1.3;
}*/

.print {
    display: none;
}

/*
h3.art-sous-rubrique {
    margin-bottom: 1.5em;
}
*/

.logo-home {
    width: 260px;
    display: flex;
    align-items: center;
    margin: 1em auto;
}

.home-desc {
    font-size: 1.4em;
    margin: 0.3em 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    min-height: calc(100vh - 254px);
    /* footer at bottom */
}

.hierarchie {
    margin: 0 0 1em 0;
    font-family: "Poppins-Variable", sans-serif;
    font-weight: 300;
    color: var(--rouge);
    font-size: 0.8em;

    & a {
        color: var(--rouge);
    }
    & img {
        width: 15px;
    }
}

.sommaire-mobile ul {
    list-style: none;
    margin: 1em 0 3em 3em;
}

.maj {
    font-size: 0.7em;
    color: #fff;
    margin-left: 1em;
    opacity: 0.5;
    font-weight: 300;
    font-family: "BespokeSlab-Variable", serif;
}

.contenu {
    margin-top: 2em;
    max-width: 800px;
    min-height: 400px;

    & h1 {
        font-size: 2.2rem;
        font-weight: 600;
        -webkit-text-fill-color: #0000;
        background: linear-gradient(-160deg, var(--violet), var(--rouge) 130%);
        background-clip: border-box;
        -webkit-background-clip: text;
        font-optical-sizing: auto;
        padding-bottom: 0.2em;

        @media (max-width: 600px) {
            font-size: 2em;
        }
    }

    & h2 {
        margin-top: 2em;

        @media (max-width: 600px) {
            font-size: 1.4em;
        }
    }

    & .sous-rub {
        margin-top: 1.5em;

        & h2 {
        }
    }
    & .logo-sous-rub {
        max-height: 250px;
        margin: auto;
    }
}

.contenu article {
    & .illu {
        padding: 1em 0 0 0;
    }

    & .chapo p {
        font-family: "Poppins-Variable", sans-serif;
        font-size: 1.1em;
        font-weight: 550;
        line-height: 1.4em;
    }

    @media (max-width: 680px) {
        margin: 5px 1em 0 3em;
        padding: 0;
    }
}
.art .contenu article {
    /* page article, on ne aisee pas la marge de gauche pour la nav latérale */

    margin-left: 0.5em;
}

.contenu article[id] {
    scroll-margin-top: 100px;
}

.sous-rub {
    & h2 {
        font-size: 1.8rem;
        font-weight: 600;
        & a {
            -webkit-text-fill-color: #0000;
            background: linear-gradient(-160deg, var(--violet), var(--rouge) 130%);
            background-clip: border-box;
            -webkit-background-clip: text;
            font-optical-sizing: auto;
        }
    }
    @media (max-width: 600px) {
        padding: 1em;
    }
}

.rub-content {
    margin: 1em 1em 6em;
}

.notes h4 {
    color: var(--violet);
}
.notes div p {
    font-size: 90%;
}

@media only screen and (max-width: 600px) {
    .hierarchie {
        top: 40px;
        position: sticky;
        background: #fff;
        padding: 3px 0 3px 2px;
        font-weight: 300;
        z-index: 90;
        border-bottom: 2px solid;
        display: block;

        & a {
            color: #111;
        }
    }
}

.art .hierarchie {
    margin: 1em 0;
}

.hierarchie-recherche {
    color: #c4b3f4;
}

.hierarchie-recherche a,
.hierarchie-recherche a:visited {
    color: #716c6c;
}

time {
    display: block;
    color: var(--violet);
    font-size: 0.9em;
    font-family: "Satoshi-Variable", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

time.passe {
    color: var(--violet-moyen);
    font-weight: 400;
}

.bloc-info {
    border-left: 8px solid var(--violet);
    background: #f7f7f7;
    padding: 20px 55px;
    margin: 2em 0;
    color: #0e3d62;
    background-size: 37px;
    background: #f9f6ff;
}

.pdv-abdil {
    padding: 20px 37px;
    border-left: 8px solid var(--rouge);
    background-size: 39px;
    margin: 2em 0;
    color: var(--noir);
    background: #f5f5f5;
    font-weight: 300;

    & p {
        font-weight: 300;
    }
}

.pdv-abdil li {
    margin-top: 1em;
}

.article-suivant {
    border-top: 2px solid var(--rouge-clair);
    padding: 3em 1em;
    margin-top: 4em;
}
.center {
    margin: auto;
}
.center-v {
    margin: auto 0;
}
.pad {
    padding: 1em;
}


.cartouche{

    height: 350px;
   
    & img{
        margin:auto;
    }
}

.bande {
    padding: 2em 0;

    & h2 {
        color: var(--violet2);
        font-weight: 660;
        font-size: 2.2rem;
    }
    & h3 {
        color: var(--violet2);
        font-weight: 600;
        font-size: 1.2rem;
        width: 85%;
        margin: auto;
    }
}
.separateur {
    border-bottom: 1px solid var(--violet);
    width: 100%;
    margin: 1em 0 1em 0;
}
.diviseur {
    border-left: 1px solid var(--violet-moyen);
}

.activites-passees {
    position: relative;
    top: -51px;
    background: #fff;
    display: block;
    margin: 1em auto;
    width: 300px;
    text-align: center;
    border-right: 1px solid var(--violet);
    border-left: 1px solid var(--violet);
}

/*---------------------- 
 * 
 * AGENDA
 * 
 * --------------------*/

.agenda img.img {
    margin-bottom: 1em;
}

/*--------------------------
 * 
 * NAV latérale
 * 
---------------------------- */

.sidenav {
    position: sticky;
    font-size: 1.1em;
    font-weight: 500;
    max-height: 80vh;
    overflow-y: auto;
    top: 38px;
    margin-top: 9em;

    scrollbar-width: none; /* Firefox */

    & nav {
        width: 90%;
    }
}

.sidenav::-webkit-scrollbar {
    /* Masquer la barre de défilement pour Chrome/Safari */
    display: none;
}

.sidenav h3 {
    /* 1e élément de la liste  */
    border-bottom: 2px solid;
    padding: 0.5em 0 0.5em 0;
    color: var(--violet2);
    font-weight: 600;
    font-size: 1.8rem;
    width: 90%;

    & :hover {
        text-decoration: none;
    }

    & a {
        color: var(--violet);
    }
}

.sidenav nav a {
    font-family: "Poppins-Variable", sans-serif;

    margin: 0.3em 0;
    line-height: 1.3em;
    display: block;
    padding: 0.3rem 0;
    text-decoration: none;
    /*    border-left: 3px solid transparent;*/
    transition: all 0.2s ease;
    /*    border-bottom: 1px solid #ccc;*/
    color: var(--noir);
}

.sidenav nav a.actif {
    color: var(--rouge);
}

.sidenav a a:hover:not(.actif) {
    border-left-color: var(--rouge);
}

.sidenav a.highlight {
    background: var(--violet);
    display: inline-block;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    color: #fff;
    font-weight: 350;
    text-transform: uppercase;
    line-height: 1em;
    font-size: 0.9em;
}

/* partie mobile avec bullet points */

@media (max-width: 600px) {
    .sidenav {
        position: fixed;
        padding: 5px;
        left: 17px;
        z-index: 800;
        background: none;
        width: 20px;
        opacity: 0;
        pointer-events: none;
        /* no clic  */
        transition: all 0.5s ease;
        top: 0;
        margin-top: 5em;

        & h3 {
            display: none;
        }
    }

    .sidenav.visible {
        opacity: 1;
        pointer-events: auto;
        /* Devient cliquable */
        z-index: 50;
    }

    .dot-nav {
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: center;
        position: relative;
        /* Nécessaire pour positionner la ligne */
    }

    /* LA LIGNE VERTICALE */
    .dot-nav::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        /* Épaisseur de la ligne */
        background-color: #ddd;
        /* Couleur de la ligne */
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        /* Place la ligne derrière les points */
    }

    .sidenav .dot-nav a {
        display: block;
        width: 12px;
        height: 12px;
        background-color: #bbb;
        /* Couleur point inactif */
        border-radius: 50%;

        /* CACHER LE TEXTE */
        font-size: 0;
        color: transparent;
        text-decoration: none;

        /* CRUCIAL POUR LA FORME RONDE */
        flex-shrink: 0;
        border: none;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease;
    }

    .dot-nav a.actif {
        background: var(--violet);
        transform: scale(1.2);
    }
}

.sidenav a.rub {
    /*  mettre en évidence la rubrique parente */

    font-size: 1.2em;
    color: var(--noir);
}

/*
 * 
 * 
 *  ----nav Latérale articles
 * 
 * 
 * */

.sidenav-art {
    margin-top: 6em;
}
.rub-36 .sidenav-art {
    /* Activités */

    margin-top: 11em;
}

/* -------------------------  

          FORMULAIRES  

------------------ */

form h4 {
    color: var(--violet);
}
form input[type="text"],
form input[type="email"],
form input[type="date"],
form textarea {
    font-size: 1em;
}

#formulaire-recherche {
    margin-left: auto;
}

form input#recherche {
    padding: 2px 0 2px 0.5em;
    font-size: 1em;
    width: 180px;
    margin-top: 3px;
}

.formulaire_formidable input,
.formulaire_formidable textarea {
    display: block;
    padding: 0.5em 0.8em;
    border: 1px solid var(--violet);
    margin: 0.5em 0 2em;
    border-radius: 3px;
    max-width: 100%;
}

.formulaire_formidable button {
    background: var(--violet-clair);
    color: var(--violet);
    border: none;
    padding: 0.5em 1em;
    border-radius: 3px;
    transition: background 0.5s;
}

.formulaire_formidable button:hover {
    background: var(--violet);
    color: #fff;
}

.formulaire_formidable label {
    font-weight: 900;
}

.formulaire_formidable .reponse_formulaire_ok {
    background: #8fffb0;
    padding: 2em;
    border-radius: 3px;
    font-size: 1.2em;
}

.formulaire_formidable .reponse_formulaire_erreur {
    background: var(--rouge);
    color: #fff;
    padding: 2em;
}

.formulaire_formidable .erreur_message {
    color: var(--rouge);
}

form.crm .form-input {
    /*  inscription et mise à jour */
    max-width: 300px;
    margin: 8px 0;
}

form input[type="checkbox"] {
    margin-bottom: 0.4rem;
}
form .columns {
    margin-top: 1em;
}
span.obligatoire {
    font-size: 0.9em;
    font-weight: 400;
    color: var(--violet);
}
.container .sommaire-back {
    background: url(../img/up.png) no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

form .form-group.choix-paiement {
    padding: 2em;
    background: #fff;
    border: 1px solid var(--rouge-clair);
    border-radius: 4px;
    box-shadow: 2px 2px 10px #eee;

    & label {
        margin-bottom: 1em;
    }
}

form .comment {
    color: var(--violet-gris);
    font-weight: 300;
}

/* ----------------------------

                TABLES 

-------------------------------*/

table td,
table th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
table {
    width: 100%;
    margin: 3em 0;
    table-layout: fixed;
    /* pour équilibrer les colonnes */
}

table td {
    vertical-align: top;
}

.row_first {
    color: var(--violet);
    font-size: 1.2em;

    @media (max-width: 600px) {
        font-size: 1em;
    }
}

table.table-condensed {
    /* le date picker*/
    width: 250px;
    font-size: 1.2em;
}

/* ----------------------------

                FOOTER

-------------------------------*/

footer {
    font-family: "Poppins-Variable";
    font-weight: 300;
    background: linear-gradient(90deg, var(--rouge) -10%, var(--violet));
    padding: 7em 2em 5em;
    color: #fff;
    font-size: 0.8em;
    margin: 4em 0 0 0;
    position: relative;
    --angle-haut: clamp(1%, 3vw, 10%);
    clip-path: polygon(0 var(--angle-haut), 100% 0, 100% 100%, 0 100%);
    /*   clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);*/
}

footer a,
footer a:visited {
    color: #fff;
}

footer .pitch {
    margin: 21px 0 0 10px;
}

footer .footer-logo {
    width: 200px;
    vertical-align: text-bottom;
}

footer .reseaux {
    font-size: 3em;
}

footer .sponsors a {
    display: block;
    margin-top: 15px;

    & img {
        width: 100px;
    }
}

footer .footer-list div {
    margin-top: 0.5em;
}

footer .footer-list div a {
    text-decoration: underline;
}

/* ----------------------------

                @MEDIA

-------------------------------*/

@media only screen and (max-width: 840px) {
    /* MD */
    h1 {
        font-size: 3em;
    }

    .home-desc {
        text-align: center;
        font-size: 1.2em;
        margin: 0.8em auto;
    }

    .home-desc span {
        display: inline;
    }
}

@media only screen and (max-width: 600px) {
    /* SM */
    h1 {
        font-size: 2.5em;
    }

    .home-desc {
        margin: 2em auto 0;
        font-size: 1em;
    }
}
