@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900');

:root {
    --rouge: #d73d67;
    --noir: #373737;
    --rose: #ffebff;
    --blanc: #ffffff;
    --blanc-clair: #fefefe;
    --gris: #909090;
    --gris-moyen: #b5b5b5;
    --gris-moyen-clair: #dddddd;
    --gris-clair: #f5f5f5;
    --bleu: #4a68b1;
    --bleu-clair: #BECAE6;
    --vert: #42881a;
    --vert-clair: #95b086;
}

html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,dfn,del,p,blockquote,fieldset,input,textarea,select,article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,button,canvas,video {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,th,dfn,del {
    font-weight: normal;
    font-style: normal;
}

ul,ol {
    list-style: square;
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 2rem;
    -moz-margin-before: 0px;
    -moz-margin-after: 0.5rem;
    -moz-margin-start: 0px;
    -moz-margin-end: 0px;
    -moz-padding-start: 2rem;
}

fieldset,img {
    border: none;
}

caption,th {
    text-align: left;
}

::selection {
    background: var(--bleu);
    color: var(--blanc);
  }
  ::-moz-selection {
      background: var(--bleu);
      color: var(--blanc);
    }
    
    ::-webkit-scrollbar {
        width: 0.75rem;
        height: 0.75rem;
    }

    @media screen and (orientation:portrait) {
        ::-webkit-scrollbar {
            width: 0.15rem;
            height: 0.15rem;
        }
    }
::-webkit-scrollbar-thumb {
    background-color: var(--gris);
}

a {
    text-decoration: none;
    color: var(--gris);
}

a:active, a:hover, a:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type="button"],input[type="submit"],input[type="reset"],button {
    cursor: pointer;
}

input[type="button"],input[type="submit"],input[type="reset"],button,input[type="search"],input[type="text"],input[type="email"],input[type="tel"],input[type="number"],textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

input,button,textarea {
    line-height: normal;
}

input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
    outline: none;
    color: inherit;
}
    button:hover {
        cursor: pointer;
    }
    button:disabled {
        cursor: not-allowed !important;
    }

input[type="hidden"],[hidden],.hidden {
    display: none !important;
}

textarea {
    overflow: auto;
    resize: none;
}

article,aside,details,figcaption,figure,footer,header,nav,section,.clearfix {
    display: block;
}

audio,canvas,video {
    display: inline-block;
}

a > img {
    vertical-align: bottom;
}

.disabled {
    pointer-events: none;
}

strong,.strong,b {
    font-weight: bold !important;
}
.strong-moyen {
    font-weight: 600;
}

.italic {
    font-style: italic ! important;
}

.border-0 {
    border: 0 !important;
}

.underline {
    text-decoration: underline;
}

del,.del {
    text-decoration: line-through;
}

:focus {
    outline: none;
}

.majuscule {
    text-transform: uppercase;
}
.minuscule {
    text-transform: lowercase;
}

img {
    max-width: 100%;
    height: auto;
}

.relative {
    position: relative;
}

*,*::after,*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    user-select: auto !important;
}

body {
    font: 13px/20px "Roboto", sans-serif;
    color: var(--noir);
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.police-petite {
    font-size: clamp(8px, 0.6rem + 0.6vw, 0.75rem) !important;
    line-height: clamp(10px, 7rem + 0.7vw, 1rem) !important;
}
.police-normale {
    font-size: 1rem;
    line-height: 1.5rem;
}
.police-grande {
    font-size: clamp(12px, 0.8rem + 0.8vw, 1.2rem) !important;
    line-height: clamp(16px, 1.2rem + 1vw, 2.4rem) !important;
}
.police-pm {
    font-variant: small-caps;
}
.police-ls {
    letter-spacing: 0.2rem;
} 
.police-1_2rem {
    font-size: 1.2rem;
}

h3,h5 {
    width: 100%;
    font-weight: 500;
    position: relative;
}
    h3 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 0.75rem;
    }
    h3::first-letter {
        font-size: 1.5rem;
        margin-right: 0.1rem;
    }
    h5::first-letter {
        font-size: 1rem;
    }
    h3::first-letter, h5::first-letter {
        color: var(--bleu);
        text-transform: uppercase;
        font-weight: 900;
    }
    h3 > i {
        margin-right: 0.5rem;
        font-size: 1.5rem;
        position: absolute;
        right: 0;
        bottom: 0.5rem; 
    }
    h5 > i {
        margin-right: 0.25rem;
        font-size: 1.2rem;
        position: absolute;
        right: 0;
        bottom: 0.25rem;
    }

.div-primaire {
    clear: both;
    width: 100%;
    margin: 0 auto;
}
.div-secondaire {
    clear: both;
    width: calc(100% - 0.25rem) !important; 
    margin: 0 auto;
}
.div-tertiaire { 
    clear: both;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}

.flex {
    display: flex;
}
.jc-center {
    justify-content: center;
}
.jc-between {
    justify-content: space-between;
}
.jc-around {
    justify-content: space-around;
}
.ai-center {
    align-items: center;
}
.ai-start {
    align-self: flex-start !important;
}

.flex-ligne_auto {
    flex-flow: row wrap;
}
.flex-colonne {
    flex-direction: column;
}

.largeur-100-pcent {
    width: 100% !important;
}
.hauteur-100-pcent {
    height: 100% !important;
}
.hauteur-100-vh {
    height: calc(var(--vh, 1vh) * 100) !important;
}

.estompe {
    opacity: 0.6;
}
.estompe-0 {
    opacity: 0;
}
.estompe-1 {
    opacity: 1;
}
.estompe-initial {
    opacity: initial;
}

.hhover:hover {
    cursor: pointer;
}
.effet-hover:hover {
    opacity: 0.65;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 1s ease;
}

.margin-1 {
    margin: 1rem;
}
.margin-b-1 {
    margin-bottom: 1rem;
}
.margin-g-05 {
    margin-left: 0.5rem;
}
.margin-g-1 {
    margin-left: 1rem;
}
.margin-b-3 {
    margin-bottom: 3rem;
}
.margin-b-5 {
    margin-bottom: 5rem;
}
.margin-h-1 {
    margin-top: 1rem;
}
.margin-h-05 {
    margin-top: 0.5rem;
}

.blink_me {
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

.back-general {
    background: url('/images/background_geek.jpg') no-repeat center fixed;
    background-size: cover;
}

.back-rouge {
    background: var(--rouge) !important;
}
.back-rose {
    background: var(--rose) !important;
}
.back-gris {
    background: var(--gris) !important;
}
.back-gris-moyen {
    background: var(--gris-moyen-clair) !important;
}
.back-blanc {
    background: var(--blanc) !important;
}
.back-blanc-clair {
    background: var(--blanc-clair) !important;
}
.back-vert {
    background: var(--vert) !important;
}
.back-vert-clair {
    background: var(--vert-clair) !important;
}
.back-gris-clair {
    background: var(--gris-clair) !important;
}
.back-bleu {
    background: var(--bleu) !important;
}
.back-noir {
    background: var(--noir) !important;
}

.couleur-blanc {
    color: var(--blanc) !important;
}
.couleur-rose {
    color: var(--rose) !important;
}
.couleur-vert {
    color: var(--vert) !important;
}
.couleur-rouge {
    color: var(--rouge) !important;
}
.couleur-gris {
    color: var(--gris) !important;
}
.couleur-bleu {
    color: var(--bleu) !important;
}
.couleur-bleu-clair {
    color: var(--bleu-clair) !important;
}

.bouton-connect {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    border: 0.2rem solid var(--blanc);
    background-color: var(--rouge);
    letter-spacing: 0.2rem;
    font-variant: small-caps;
}
.bouton-rond {
    font-family: "Font Awesome 7 Pro";
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    text-align: center;
    line-height: 3.8rem;
    font-size: 2rem;
    border: 0;
    box-shadow: 0 0 10px var(--gris);
}
.bouton-speciaux {
    color: var(--rouge);
    background-color: var(--rose);
    border-radius: 5px;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--blanc);
}

.euro:not(:empty)::after {
    content: ' \20AC';
}
.euro:empty::after {
    content: '-';
}

.positif:not(:empty)::before {
    content: '\002B';
}

.negatif:not(:empty)::before {
    content: ' \002D';
}

.texte-centre {
    text-align: center !important;
}
.texte-gauche {
    text-align: left !important;
}
.texte-droite {
    text-align: right !important;
}

.border-1px {
    border: 1px solid;
}
.border-1px-gmc {
    border: 1px solid var(--gris-moyen-clair);
}
.border-b-1px-gmc {
    border-bottom: 1px solid var(--gris-moyen-clair);
}

.sticky-0 {
    position: sticky;
    top: 0;
    z-index: 3;
}

.sticky-table th {
    position: sticky;
    top: 0;
    background-color: var(--gris-moyen-clair);
    z-index: 3;
    border-bottom: 2px solid var(--gris-moyen-clair);
} 

.FA-user-connect::before {
    font-family: "Font Awesome 7 Pro";
    content: '\e058';
    font-weight: 900;
    margin-right: 0.5rem;
}
.FA-home::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f015';
    font-weight: 100;
}
.FA-domotique::before {
    font-family: "Font Awesome 7 Pro";
    content: '\e012';
    font-weight: 100;
}
.FA-code::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f121';
    font-weight: 900;
}
.FA-rss::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f09e';
    font-weight: 900;
}
.FA-budget::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f153';
    font-weight: 900;
}
.FA-kb::before {
    font-family: "Font Awesome 7 Pro";
    content: '\3f';
    font-weight: 900;
}
.FA-plus::before {
    font-family: "Font Awesome 7 Pro";
    content: '\2b';
    font-weight: 500;
}
.FA-edit::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f040';
    font-weight: 500;
}
.FA-supprime::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f2ed';
    font-weight: 500;
    margin-right: 0.25rem;
}
.FA-upload::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f093';
    font-weight: 500;
    margin-right: 0.25rem;
}
.FA-alerte::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f071';
    font-weight: 500;
    margin-right: 0.25rem;
}
.FA-imprime::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f02f';
    font-weight: 500;
}

.loader-md {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 147px;
    height: 147px;
    background-color: var(--rouge);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gris)
}
    .loader-md:before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        border: 3px solid transparent;
        border-top: 3px solid var(--rose);
        border-right: 3px solid var(--rose);
        border-radius: 50%;
        animation: loader-md-animate1 2s linear infinite;
    }
.loader-md > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.loader-md > span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: loader-md-animate2 2s linear infinite;
}
    .loader-md > span:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--rose);
        top: -6px;
        right: -8px;
        box-shadow: 0 0 20px var(--rose);
    }
@keyframes loader-md-animate1 {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    } 
}
@keyframes loader-md-animate2 {
    0% {
        transform:rotate(45deg);
    }
    100% {
        transform:rotate(405deg);
    }
}

#remonte-en-haut {
    position: fixed;
    transform: translate(-50%, 0);
    bottom: 0;
    left: 50%;
    z-index: 98;
    display: none;
}
    #remonte-en-haut i { 
        font-size: 5rem;
        color: var(--rouge);
    }

.modal-resize {
    display: inline-flex;
    flex-flow: column nowrap;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 101; 
    background-color: var(--blanc);
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--gris-moyen);
    max-height: 100vh;
}
@media screen and (min-width: 1281px) and (min-height: 800px) {
    .modal-resize {
        max-height: var(--hauteur_max_modal);
    }
}
@media screen and (orientation:portrait) {
    .modal-resize.modal-confirmation {
        height: fit-content;
        top: inherit;
        transform: inherit;
        left: 0;
        border-radius: 0;
        width: 100vw;
        bottom: 0;
    }
}
    .modal-resize > div { 
        padding: 10px;
        overflow-x: auto;
        width: 100%;
        max-width: 98vw;
        max-height: 98vh;
    }
    .modal-resize > div:not(:last-child) {
        height: 100%;
    }
    .modal-resize > div:first-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*overflow: hidden;*/
    }
    .modal-resize:not(.modal-confirmation):not(#form-GF-upload_fichier) > div:first-child {
        /*height: 4rem !important;*/
        height: 65px !important;
        min-height: 65px !important;
    }

.modal-confirmation > div:first-child {   
    padding: 0.50rem 0.50rem 0 0.50rem;
} 
.modal-confirmation > div:nth-child(2) { 
    padding: 0 0.50rem 0.50rem 0.50rem;
}

.modal-normal {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 101;
    background-color: var(--blanc);
    box-shadow: 0 0 10px var(--gris);
}
    .modal-normal > div:first-child {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.50rem;
    }
        .modal-normal > div:first-child > i[class*="fa-circle-xmark"], .modal-resize > div:first-child > i[class*="fa-circle-xmark"] {
            align-self: flex-start;
            font-size: 2rem;
        }
    .modal-normal > div:nth-child(2) {
        display: inline-flex;
        align-items: flex-start;
        height: auto;
        width: 100vw;
        padding: 0.5rem;
        overflow: auto;
    }
    .modal-normal > div:nth-child(3) {
        width: 100vw;
        height: auto;
        max-height: 5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.25rem;
    }
    div [id^="div-haut-bouton-"] > button.bouton + button.bouton { 
        margin-left: 1rem;
    }

.modal-wait {
    position: fixed;
    z-index: 101;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: wait;
    background-color: rgba(255, 235, 235, .70);
}

.modal-wait-background {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 235, 255, .70);
    z-index: 101;
    display: none;
    position: fixed;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="password"], textarea {
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
}
input.grand {
    border-width: 0 0 0.15rem 0;
    font-size: 1.5rem;
}
.input_euro::after {
    content: ' \20AC'; 
    position: absolute;
    top: 5px;
    right: -1rem;
    font-size: 1rem;
}

.effet {
    border: 0; 
    padding: 0.4rem 0; 
    border-bottom: 0.1rem solid var(--gris);
}
    .effet ~ .focus-border {
        position: absolute; 
        bottom: 0; 
        left: 50%; 
        width: 0; 
        height: 0.1rem; 
        background-color: var(--bleu); 
        transition: 0.40s;
    }
    .effet.grand ~ .focus-border {
        height: 0.15rem; 
    }
    .effet:focus ~ .focus-border {
        width: 100%; 
        transition: 0.40s; 
        left: 0;
    }

input[type="text"]:disabled, input[type="number"]:disabled, input[type="tel"]:disabled, input[type="password"]:disabled, textarea:disabled, select:disabled, input[type="checkbox"]:disabled, input.desactiver {
    cursor: not-allowed;
    background: repeating-linear-gradient(60deg, var(--gris-moyen-clair),var(--gris-moyen-clair) 1px, var(--blanc) 1px, var(--blanc) 10px), url('/images/angle-down.svg') no-repeat right 5px top 0 var(--gris-moyen-clair);
}
input[type="text"]:disabled::placeholder {
    opacity: 0;
}
select:disabled {
    border: 1px solid var(--gris-moyen-clair);   
}

::placeholder {
    color: var(--gris-moyen);
    letter-spacing: 0.2rem;
    text-align: left;
}

select {
    -webkit-appearance: none;        
    -moz-appearance: none;
    appearance: none;
    text-overflow: '';  
    border-color: transparent;
    color: var(--noir);
    background: url('/images/angle-down.svg') no-repeat right 5px top 0 var(--gris-moyen-clair);
    padding: 2px 24px 2px 5px;  
    height: 2rem;
    width: auto;
    font-size: 1rem;
    position: relative;
}
.select::after {
    content: "";
    width: 0.8em;
    height: 0.5em;
    background-color: var(--gris-moyen-clair);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  }
    select.petit {
        font-size: 0.8em;
        padding: 1px 18px 1px 2px;
        box-shadow: none;
        border-color: #e5e5e5;
    }
    select::-ms-expand {
        display: none;
    }
    select:focus {
        border: 1px dashed var(--gris-moyen);
        background: url('/images/angle-up.svg') no-repeat right 5px top 0;
        outline: none !important;
    }

.container-ckbx-wlabel {
    display: flex;
    font-size: 1rem;
}
    .container-ckbx-wlabel > div:last-child {
        margin-left: 0.6rem;
    }

.ckbx-square-3 {
    font-size: 1.5rem;
}
    .ckbx-square-3 input[type=checkbox] {
        position: absolute;
        opacity: 0;
    }
    .ckbx-square-3 label {
        position: relative;
        cursor: pointer;
        display: block;
        width: 1.2rem;
        height: 1.2rem;
    }
    .ckbx-square-3 label:before {
        content: '';
        position: absolute;
        width: 1.2rem;
        height: 1.2rem;
        transition: background 0.1s 0.1s ease;
        background: var(--blanc);
        box-shadow: 0px 2px 5px 0px rgba(35, 47, 52, 0.5);
    }
    .ckbx-square-3 label:after {
        content: '';
        position: absolute;
        width: .8rem;
        height: .8rem;
        left: .2rem;
        top: .2rem;
        transition: all 0.2s ease;
        background: var(--gris-moyen-clair);
        z-index: 2;
    }
    .ckbx-square-3 input[type=checkbox]:checked + label:after {
        background: var(--bleu);
    } 

.bouton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid;
    transition: all 1s;
    border-radius: 5px;
    font-weight: 700;
}
    .bouton:hover {
        opacity: 0.65;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .bouton:disabled {
        opacity: 0.5;
    }
    .bouton:disabled:hover {
        transition: none;
        cursor: default;
    }
    .bouton i {
        font-size: 1.70em;
    }
    .bouton.premier {
        font-size: 0.75rem;
        letter-spacing: 1px;
        padding: 0.80rem;
        line-height: 0.75rem;
        text-transform: uppercase;
        text-decoration: none;
    }    
        .bouton[class*="premier"] i::after {
            content: "\00a0";
        }
        
.bouton-8rem > button {
    width: 8rem;
}

div[class^="ckbx-style-"] input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.container-ckbx-wlabel {
    display: flex;
}
    .container-ckbx-wlabel > div:last-child {
        margin-left: 0.6rem;
    }

.ckbx-style-9-avec {
    width: 8rem !important;
    font-size: 1rem;
    position: relative;
}
    .ckbx-style-9-avec:before, .ckbx-style-9-avec:after {
        position: absolute;
        font-size: 1rem;
        color: var(--blanc);
        text-align: center;
    }
    .ckbx-style-9-avec:before {
        content: 'AVEC';
        z-index: 1;
        left: 0.5rem;
        top: 0.2rem;
    }
    .ckbx-style-9-avec:after {
        content: 'SANS';
        right: 0.5rem;
        top: 0.2rem;
    }
    .ckbx-style-9-avec input[type=checkbox] {
        position: absolute;
        opacity: 0;
    }
    .ckbx-style-9-avec label {
        width: 4rem;
        height: 1.5rem;
        position: relative;
        cursor: pointer;
        display: block;
    }
    .ckbx-style-9-avec label:before {
        content: '';
        position: absolute;
        width: 8rem;
        height: 1.5rem;
        transition: background 0.1s ease;
        background: var(--rouge);
        box-shadow: inset 0px 1px 1px rgba(171, 66, 63, 0.5);
    }
    .ckbx-style-9-avec label:after {
        content: '';
        position: absolute;
        width: 4rem;
        height: 1.5rem;
        left: 0;
        transition: all 0.2s ease;
        box-shadow: 0px 2px 5px 1px rgba(35, 47, 52, 0.5);
        background: var(--blanc);
        z-index: 2;
    }
    .ckbx-style-9-avec input[type=checkbox]:checked + label:before {
        background: var(--vert);
        box-shadow: inset 0px 1px 1px rgba(84, 152, 140, 0.5);
    }
    .ckbx-style-9-avec input[type=checkbox]:checked + label:after {
        left: 4rem;
    }

.ckbx-style-9-charge {
    width: 10rem !important;
    font-size: 1rem;
    position: relative;
}
    .ckbx-style-9-charge:before, .ckbx-style-9-charge:after {
        position: absolute;
        font-size: 1rem;
        color: var(--blanc);
        text-align: center;
    }
    .ckbx-style-9-charge:before {
        content: 'REVENU';
        z-index: 1;
        left: 0.5rem;
        top: 0.2rem;
    }
    .ckbx-style-9-charge:after {
        content: 'CHARGE';
        right: 0.5rem;
        top: 0.2rem;
        z-index: 1;
    }
    .ckbx-style-9-charge input[type=checkbox] {
        position: absolute;
        opacity: 0;
        z-index: 99;
        width: 10rem;
    }
    .ckbx-style-9-charge label {
        width: 5rem;
        height: 1.5rem;
        position: relative;
        cursor: pointer;
        display: block;
    }
    .ckbx-style-9-charge label:before {
        content: '';
        position: absolute;
        width: 10rem;
        height: 1.5rem;
        transition: background 0.1s ease;
        background: var(--rouge);
        box-shadow: inset 0px 1px 1px rgba(171, 66, 63, 0.5);
    }
    .ckbx-style-9-charge label:after {
        content: '';
        position: absolute;
        width: 5rem;
        height: 1.5rem;
        left: 0;
        transition: all 0.2s ease;
        box-shadow: 0px 2px 5px 1px rgba(35, 47, 52, 0.5);
        background: var(--blanc);
    }
    .ckbx-style-9-charge input[type=checkbox]:checked + label:before {
        background: var(--vert);
        box-shadow: inset 0px 1px 1px rgba(84, 152, 140, 0.5);
    }
    .ckbx-style-9-charge input[type=checkbox]:checked + label:after {
        left: 5rem;
    }
 
@keyframes rotation_logo {
    0% {
        right : 1rem;
        transform: rotate(-0deg);
    }
    50% {
        right: calc(100vw - (var(--hauteur_squelette_haut) * 0.95) - calc(30px + 2rem));
        transform: rotate(var(--rotate_max));
    }
    100% {
        right: calc(50vw - ((var(--hauteur_squelette_haut) * 0.95) / 2));
        transform: rotate(0deg); 
    }
}

.GF-div_upload {
    cursor: pointer;
    width: 100%;
    height: 60px;
}
    .GF-div_upload #uploadfile {
        position: absolute;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        width: 100%;
        height: 50px;
    }
    .GF-div_upload span {
        align-self: center;
        cursor: pointer;
        width: calc(100% - 20px);
        text-overflow: ellipsis;
        height: 30px;
        overflow: hidden;
        line-height: 30px;
        text-align: center;
        text-transform: uppercase;
    }

#div-bouton {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 9;
}
@media screen and (min-width: 1281px) { 
    #div-bouton.court {
        right: calc((100vw - (1280px + 1rem)) / 2);
    }
}

#squelette-conteneur {
    flex-direction: column;
}

#squelette-haut {
    height: 4rem;
    display: flex;
    justify-content: space-between;
    top: 0;
    z-index: 9;
    position: fixed;
    width: 100%;
    box-shadow: 0 0 0.1rem var(--gris);
    transition: top 0.3s;
    transition-delay: 0.2s;
}
    #squelette-haut.cache {
        top: calc((var(--hauteur_squelette_haut)) * -1);
    } 
    #squelette-haut > div {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.25rem;
    }
    #squelette-haut > div:first-child { 
        width: calc(30px + 2rem);
    }
    #squelette-haut > div:nth-child(2) { 
        width: 100%;
    }
    #squelette-haut img {
        height: calc(var(--hauteur_squelette_haut) * 0.95);
        width: auto;
        border-radius: 50%;
        transition-duration: var(--temp_animation);
        animation: rotation_logo var(--temp_animation);
        position: absolute;
        right: calc(50vw - ((var(--hauteur_squelette_haut) * 0.95) / 2));
    }
    #squelette-haut div:last-child:empty {
        width: calc(35px + 1rem);
    }
    
#squelette-centre {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: var(--hauteur_squelette_haut);
    /*padding-bottom: var(--hauteur_squelette_bas);*/
    min-height: calc(100vh - var(--hauteur_squelette_bas));
}

#squelette-bas {
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-weight: 700;
}
    #squelette-bas > div {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 1.5rem;
    }
    #squelette-bas > div > i { 
        margin-right: 0.5rem;
        font-size: 2rem;
        color: var(--rouge);
    }

.menu-hamburger {
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 102;
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px var(--gris);
    background-color: var(--blanc);
    overflow-y: auto;
}
    .menu-hamburger > div:first-child {
        flex: 1;
    }
    .menu-hamburger > div:first-child > div { 
        margin-top: 2vh;
    }
        .menu-hamburger > div:first-child > div img { 
            border-radius: 50%;
            max-height: 10vh;
        }
    .menu-hamburger > div:nth-child(2) { 
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        font-size: 1rem;
        letter-spacing: 0.25rem;
        font-weight: 100;
        flex: 2;
    }
    .menu-hamburger > div:nth-child(2) > div { 
        display: flex;
        padding: 1rem;
        color: var(--rouge);
        flex: 1;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    }
    .menu-hamburger > div:nth-child(2) > div > div { 
        display: flex;
        flex-direction: column;
        flex: 1 0 calc(50% - 1rem);
        padding: 2rem 0.5rem 1rem 0.5rem;
        margin: 0.25rem;
        max-height: 24vh;
    }
    .menu-hamburger > div:nth-child(2) > div > div:not(:empty) { 
        border-radius: 0.5rem;
        box-shadow: 0px 2px 5px 1px rgba(215, 61, 103, 0.25);
    }
    .menu-hamburger > div:nth-child(2) > div > div > span { 
        margin-bottom: 1vh;
    }
    .menu-hamburger > div:nth-child(2) > div > div > span:not(:empty) { 
        color: var(--blanc);
        background-color: var(--rouge);
        padding: 0.25rem 0.5rem;
        width: 100%;
        text-align: center;
        font-weight: 200;
    }
    .menu-hamburger > div:nth-child(2) i { 
        width: auto;
        height: 5vh;
        font-style: normal;
        font-size: 8vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 5vh;
    }
    .menu-hamburger > div:last-child {
        background-color: var(--rouge);
    }
        .menu-hamburger > div:last-child i {
            font-size: 1.8rem;
            color: var(--blanc);
            margin: 0.8rem;
        }
.menu-hamburger.est-ouvert {
    width: 18rem;
    transition: all 0.5s ease-out;
    left: 0;
}
.menu-hamburger.est-ferme {
    width: 0;
    transition: all 0.5s ease-out;
    left: -25rem;
}

.div-hamburger {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    transition: top 0.3s;
    transition-delay: 0.2s;
}
    .div-hamburger.cache {
        top: calc((var(--hauteur_squelette_haut)) * -1);
    }
.hamburger {
    width: 30px;
    height: 26px;
    border: none;
    position: relative;
    background: linear-gradient(to bottom, var(--rouge), var(--rouge));
    background-size: 100% 20%;
    background-repeat: no-repeat;
    background-position: center center;
    transition: background-size 0.2s 0.25s ease;
    cursor: pointer;
}
.hamburger:before,
.hamburger:after {
    height: 20%;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: var(--rouge);
    content: '';
    transition: transform 0.3s ease;
}
.hamburger:before {
    top: 0;
    transform-origin: 9% 150%;
}
.hamburger:after {
    bottom: 0;
    transform-origin: 9% -50%;
}
.hamburger.est-ouvert {
    background-size: 0 20%;
    transition-delay: 0s;
}
.hamburger.est-ouvert:before {
    transform: rotate(45deg);
    transition-delay: 0.15s;
}
.hamburger.est-ouvert:after {
    transform: rotate(-45deg);
    transition-delay: 0.15s;
}

.boite-recherche {
    display: inline-block;
    border: solid 3px var(--rouge);
    position: relative;
    border-radius: 35px;
    margin: 0 1rem 0.25rem 0;
}
    .boite-recherche input[type=text] {
        color: var(--rouge);
        width: 35px;
        height: 35px;
        padding: 5px 20px 5px 10px;
        border: none;
        box-sizing: border-box;
        border-radius: 35px;
        transition: width 800ms cubic-bezier(0.68, -0.20, 0.27, 1.25) 150ms;
    }
    @media screen and (max-width: 900px) { 
        .boite-recherche input[type=text]:focus, .boite-recherche input[type=text]:not(:placeholder-shown) {
            width: calc(100vw - (30px + 3.25rem));
            transition: width 800ms cubic-bezier(0.68, -0.55, 0.48, 1.20) 150ms;
        }
    }
    @media screen and (min-width: 901px) { 
        .boite-recherche input[type=text]:focus, .boite-recherche input[type=text]:not(:placeholder-shown) {
            width: 600px;
            transition: width 800ms cubic-bezier(0.68, -0.55, 0.48, 1.25) 150ms;
        }
    }
    .boite-recherche input[type=text]:focus + button[type=reset], .boite-recherche input[type=text]:not(:placeholder-shown) + button[type=reset] {
        bottom: 5px;
        right: 5px;
        transition: bottom 150ms ease-out 800ms, right 150ms ease-out 800ms;
    }
    .boite-recherche input[type=text]:focus + button[type=reset]:after, .boite-recherche input[type=text]:not(:placeholder-shown) + button[type=reset]:after {
        top: 3px;
        right: 11px;
        opacity: 1;
        transition: top 150ms ease-out 950ms, right 150ms ease-out 950ms, opacity 150ms ease 950ms;
    }
    .boite-recherche button[type=reset] {
        background-color: transparent;
        width: 25px;
        height: 25px;
        border: 0;
        padding: 0;
        outline: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -13px;
        right: -15px;
        transition: bottom 150ms ease-out 150ms, right 150ms ease-out 150ms;
    }
    .boite-recherche button[type=reset]:before, .boite-recherche button[type=reset]:after {
        content: "";
        height: 18px;
        border-left: solid 3px var(--rouge);
        position: absolute;
        transform: rotate(-45deg);
    }
    .boite-recherche button[type=reset]:after {
        transform: rotate(45deg);
        opacity: 0;
        top: -20px;
        right: -10px;
        transition: top 150ms ease-out, right 150ms ease-out, opacity 150ms ease-out;
    }

.conteneur-formulaire {
    width: 100%;
}
    .conteneur-formulaire > div:first-child {
        padding: 0 0 1.5rem 0;
    }
    .conteneur-formulaire > div:last-child {
        padding: 1.5rem 0 0 0;
    }
    .conteneur-formulaire > div:not(:first-child):not(:last-child) {
        padding: 1.5rem 0;
    }

.conteneur-formulaire-groupe {
    display: flex;
}
    .conteneur-formulaire-groupe > div:first-child {
        width: 3rem;
    }
    .conteneur-formulaire-groupe > div:first-child > i {
        font-size: 1.5rem;
        color: var(--gris-moyen);
    }
    .conteneur-formulaire-groupe > div:nth-child(2) > div:not(:last-child) {
        margin-bottom: 1rem;
    }

.GF-icon-fichier {
    display: flex;
    position: relative;
} 
    .GF-icon-fichier a {  
        color: var(--bleu-clair)
    }  

.GF-icon-fichier-vue-icone {
    justify-content: center; 
    align-items: center;
    flex-direction: column;
    margin: 0.5rem;
    width: 6rem;
}
    .GF-icon-fichier-vue-icone > div:nth-child(2) {
        font-family: "Font Awesome 7 Pro";
        font-size: 3rem;
    }
        .GF-icon-fichier-vue-icone > div:nth-child(2) > span> i:nth-child(2) {
            font-size: 1rem;
            position: absolute;
            color: var(--bleu-clair);
            margin-top: 3px;
        } 
    .GF-icon-fichier-vue-icone > div:nth-child(3) {
        margin-top: 0.25rem;
        font-size: 0.6rem;
        font-weight: 500;
        width: 6rem;
        text-align: center;
        overflow-wrap: break-word;
    }

#b_formulaire input[type=text],input[type=number], select {
    width: 200px;
}

#div-budget {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
    #div-budget > div {
        display: flex;
        flex-flow: column;
    }
    #div-budget > div > div:first-child > table { 
        width: 100%;
    }
    #div-budget > div > div:first-child {
        position: sticky;
        top: 0;
        z-index: 8;
        opacity: 1;
    }
    #div-budget ul {
        width: 100%;
        height: 100%;
        margin: 0.25rem 0.25rem 0.25rem 0.25rem;
        padding: 0;
        list-style-type: none;
    }
    #div-budget ul > li:not(:last-child) {
        margin-bottom: 0.5rem;
    }
    #div-budget > div > div > table { 
        text-align: center;
        text-transform: uppercase;
        border: 0.25rem solid var(--blanc);
    }
    #div-budget > div > div > table {
        border-collapse: separate;
    }
    #div-budget > div > div:last-child > table {
        border-spacing: 0 5px;
    }
        #div-budget > div > div > table >  thead {
            position: sticky;
            top: 0;
            z-index: 8;
            opacity: 1;
            background-color: var(--rose);
        }
        #div-budget > div > div > table >  thead th { 
            text-align: center;
            border: 0.25rem solid transparent;
        }
        #div-budget > div > div > table > thead tr:first-child th { 
            padding: 0.25rem;
        }
        #div-budget > div > div > table thead tr:nth-child(1) th { 
            background-color: var(--bleu-clair);
            color: var(--bleu);
        }
        #div-budget > div > div > table tbody td {
          position: relative;
          height: 50px;
          padding-bottom: 10px;
        }
        #div-budget > div > div > table tbody td > span {
            position: absolute;
            color: var(--gris-moyen);
            z-index: 2;
            opacity: 0.75;
        }
        #div-budget > div > div > table tbody td > span:first-child { 
            bottom: 0.25rem;
            left: 0.25rem;
            font-size: 1.5rem;
        } 
        #div-budget > div > div > table tbody td > span:last-child {  
            bottom: 0.10rem;
            right: 0.25rem;
            font-size: 0.75rem;
        }
        #div-budget > div > div > table tbody td:last-child:not(:empty) { 
            background-color: var(--gris-clair);
            vertical-align: middle;
            border: 1px solid var(--gris-moyen-clair);
        }
.jour_en_cours > td {
    border-color: var(--noir) !important;
}

.div_categorie {
    padding: 0.5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
    .div_categorie button { 
        margin: 0.25rem;
        font-size: 0.8rem;
        line-height: 1rem;
        padding: 0.5rem;
        border-radius: 1.5rem;
        border: 1px solid var(--gris-moyen-clair);
        background-color: var(--gris-clair);
    }
        .div_categorie button:active { 
            border: 1px solid var(--rouge);
            background-color: var(--rose);
        } 
.div_article {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.div-article {
    border-bottom: 1px solid var(--bleu-clair) 
}
.div-article + .div-article {
    margin-top: 3rem;
}

.article-1 { 
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    background-color: #ffffff;
    width: calc(100vw - 1rem);
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    position: relative;
    touch-action: pan-y;
}
    .article-1 pre[class*=language-] {
        background-color: var(--gris-clair) !important;
    }
    .article-1 img { 
        width: auto;
        max-width: calc(1280px - 1.5rem);
        height: auto;
        margin: 10px 0 0 0;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 50% 50%;
        object-position: 50% 50%;
    }
    @media screen and (max-width: 1280px) { 
        .article-1 img {
            max-width: calc(100vw - 1rem) !important;
        }
    }
    .article-1 ul, .article-1 ol {
        list-style-position: inside;
    }
    .article-1 div.illustration {
        text-align: center;
    }
    .article-1 > div.titre-menu, .article-1 > div.titre-menu > div:first-child {
        display: flex;
        flex-flow: row nowrap;
    }
    .article-1 > div.titre-menu {
        position: sticky;
        top: 0;
        z-index: 8;
        user-select: none !important;
    }
    .article-1 > div.titre-menu > div:last-child { 
        text-transform: uppercase;
        padding: 0.5rem;
        background-color: var(--bleu-clair);
        color: var(--bleu);
        width: 100%;
        display: flex;
        align-items: center;
    }
    .article-1 > div.titre-menu > div:last-child h1 {
        font-weight: 700;
        line-height: normal;
    }
    .article-1 > div.indications {
        display: flex;
        justify-content: space-between;
        margin: 0.5rem 0;
    }
    .article-1 > div:nth-child(4) {
        padding: 0.5rem 0 1.5rem 0;
    }        
    .article-1 > div.scr-article *:not(img) { 
        max-width: calc(100vw - 1rem) !important;
        overflow: auto;
        /*touch-action: pan-y;*/
        width: 100%;
    }
        .article-1 > div.scr-article table, .article-1 > div.scr-article table tr, .article-1 > div.scr-article table tbody tr td {
            width: auto;
        }
    .article-1 > div.indications > div, .article-1 > div:last-child {
        display: flex;
        align-items: center;
    }
        .article-1 > div.indications i, .article-1 > div:last-child i {
            color: var(--bleu);
            font-size: 1rem;
        }
        .article-1 > div.indications i:first-child, .article-1 > div:last-child i { 
            margin-right: 0.25rem;
        }
        .article-1 > div.indications i:last-child {
            margin-left: 0.25rem;
        }
        .article-1 > div.indications span, .article-1 > div:last-child span { 
            font-size: 0.7rem;
            color: var(--gris);
            font-style: italic;
        }
    .article-1 > div:last-child { 
        position: absolute;
        bottom: -1.2rem;
        text-transform: lowercase;
    }

@media screen and (max-width: 900px) { 
    .article-1 > div.scr-article table {
        display: table-cell;
    }
}

.article-efface_bouton {
    width: 0px;
    transition: all 0.3s ease-out;
}
.article-affiche_bouton {
    width: 150px;
    transition: all 0.3s ease-out;
}

.div_recherche {
    padding: 0 0.5rem 1rem 0.5rem;
}
    .div_recherche input {
        padding-left: 0.5rem;
    }
      
.div-add_on {
    display: flex; 
    flex-direction: column;
    width: 100%;
}
    .div-add_on > div {
        width: 100%;
    }
    .div-add_on > div ul { 
        -webkit-padding-start: 0;
        font-size: 0.9rem;
    }
    .div-add_on > div ul li a {
        text-transform: uppercase;
        color: var(--blanc);
        font-weight: 300;
    }
    .div-add_on > div ul li {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    .div-add_on > div ul li a:first-child { 
        margin-right: 1rem;
        text-transform: initial;
        font-style: italic;
    }
    
.retour-rss {
    padding: 0.5rem;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
}
    .retour-rss > h4 {
        margin-bottom: 0.5rem;
    }

.div-rss {
    display: flex;
    border: 1px solid var(--gris-moyen-clair);
    min-height: 6rem;
    border-radius: 0.50rem;
    padding: 0.25rem;
    width: 100%;
    max-width: 27rem;
}
    .div-rss:not(:last-child) {
        margin-bottom: 0.75rem;
    }
    .div-rss > div:first-child {
        display: flex;
        flex-direction: column;
        flex: 2.8;
    }
    .div-rss > div:first-child > div {
        padding: 0.25rem;
    }
    .div-rss > div:first-child > div:nth-child(2) { 
        height: 4rem;
        text-transform: uppercase;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;  
        overflow: hidden;
    }
    .div-rss > div:first-child > div:last-child {
        font-size: 0.8rem;
        color: var(--gris-moyen);
        font-style: italic;
    }
    .div-rss > div:first-child img {
        width: auto;
        max-height: 1.5rem;
    }
    .div-rss > div:last-child {
        padding: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1.2;

    }
    .div-rss > div:last-child img {
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 0.25rem;
        height: 7.5rem;
    }

.filtre-rss {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}
    .filtre-rss div.categorie_rss img {
        width: auto;
        max-width: 7rem;
        height: auto;
        max-height: 5rem;
        padding: 0.5rem;
        transition: all 0.75s ease;
        filter: grayscale(0%);
        position: relative;
    }
    .filtre-rss div.categorie_rss img:hover, .filtre-rss div.categorie_rss img:active {
        filter: grayscale(100%);
        transition: all 0.75s ease;
    }
    .filtre-rss > div {
        background-color: var(--blanc);
        border-radius: 0.50rem;
        width: 100%;
        padding: 1rem;
    }
        .filtre-rss > div:not(:first-child):not(:last-child) {
            margin: 0.5rem 0 0;
        }
        .filtre-rss > div:first-child {
            margin-bottom: 0.5rem;
        }
        .filtre-rss > div:last-child {
            margin-top: 0.5rem;
        }

.filtre-rss-titre {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem 0;
    background-color: var(--bleu-clair);
    padding: 0.15rem;
}
    .filtre-rss-titre span {
        text-transform: uppercase;
        color: var(--bleu);
        font-weight: 700;
        font-size: 1.5rem;
        padding: 0.50rem;
    }
    .filtre-rss-titre:first-child {
        margin: 0 0 1.5rem 0;
    }
    .filtre-rss-titre:last-child {
        margin: 2.5rem 0 0 0;
    }
    .filtre-rss-titre:not(:first-child):not(:last-child) {
        margin: 2.5rem 0 1.5rem 0;
    }
    .filtre-rss-titre i {
        font-size: 2.5rem;
        color: var(--bleu);
    }

.categorie_rss {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;;
}

.rss-casse::before {
    font-family: "Font Awesome 7 Pro";
    content: '\f00d';
    font-weight: 500;
    font-size: 5rem;
    color: var(--rouge);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rss_filtre i {
    font-family: "Font Awesome 7 Pro";
    content: '\f0b0';
    font-size: 2.5rem;
    color: var(--rouge);
}

#retour_maj_rss {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 102;
    color: var(--blanc);
    display: flex;
    flex-direction: column;
}
    #retour_maj_rss > div {
        display: flex;
        justify-content: space-between;
        text-transform: uppercase;
        font-variant: small-caps;
        font-size: 0.75rem;
        line-height: 0.9rem;
    } 
    #retour_maj_rss span:first-child { 
        margin-right: 3rem;
    }