 /* all onglets */
.titleBold{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-2);
    font-size: 1rem;
}
.regularText{
    font-family: var(--police-Quicksand-Regular);
    color: var(--couleur-2);
}
.boldText{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-2);
}
.roseText{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-11);
}
.roseLink{
    font-family: var(--police-Quicksand-Regular);
    color: var(--couleur-14);
}
.none{
    display: none;
}
.wrong{
    font-family: var(--police-Quicksand-Bold);
    color: red;
}
.good{
    font-family: var(--police-Quicksand-Bold);
    color: green;
}
.noneBgcColor{
    background-color: transparent !important;
}
.Light{
    font-family: var(--police-Quicksand-Light);
    color: var(--couleur-13) ;
}
.lightBold{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-13);
}
.blockOmbre{
    box-shadow: 0px 2px 5px #00000019;
    border-radius: 5px;
    background-color: var(--couleur-12);
    max-width: 1700px !important;
    margin-top: 2rem;
    padding: 2rem 3rem;
}
/* all onglets */
 
 
 /* GENERAL (on this onglet) */
/* _____________________________________________________ */
body{
    background-color: var(--couleur-5);
}
*{
    scroll-behavior: smooth;
}
section.compte_connecter{
    display: flex;
    padding: 0;
    position: relative;
}

section.compte_connecter *{
    box-sizing: border-box;
}


section.compte_connecter .Navigation{
    width: 20rem;
    box-shadow: 0px 3px 10px #00000029;
    position: relative;
    z-index: 2;
}

section.compte_connecter .Content{
    background-color: var(--couleur-12);
    width: 100%;
    position: relative;
    z-index: 1;
}


#suppression_visibilite{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 1px 3px #00000029;
    border: none;
    outline: none;
    height: 2.5rem;
    background-color: var(--couleur-5);
    color: var(--couleur-2);
    font-family: var(--police-Quicksand-Regular);
    padding: 0.5rem 1rem;
    max-width: 25rem;
    cursor: pointer;
}
                        /* GENERAL */
/* _____________________________________________________ */
                        


                    /* NAVIGATION */
/* _____________________________________________________ */

section.compte_connecter .Navigation{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
    padding: 3rem 2rem;
    min-width: 15rem;
    height: 100%;
    position: sticky;
    top: 5rem;
}
section.compte_connecter .fondNav{
    visibility: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.445);
    z-index: 2;
    opacity: 0;
    transition: opacity .2s, visibility .2s;
}


section.compte_connecter .Navigation .top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

section.compte_connecter .Navigation .top p.entrepriseName{
    margin-top: -1rem;
}
section.compte_connecter .Navigation .top p.wrong{
    margin-top: -.5rem;
}


section.compte_connecter .Navigation .top .pdp{
    background-color: var(--couleur-10);
    border-radius: 50%;
    height: 8rem;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
section.compte_connecter .Navigation .top .pdp .photo_de_profil_base{
    height: 5rem;
    width: 5rem;
    object-fit: contain;
}
section.compte_connecter .Navigation .top .pdp .photo_de_profil{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.compte_connecter .Navigation .top h2{
    font-size: 1.7rem;
    line-height: 1.75rem;
    text-transform: none;
}

section.compte_connecter .Navigation .menu{
    display: none;
}


section.compte_connecter .Navigation ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

section.compte_connecter .Navigation ul li{
    display: flex;
    gap: 0.5rem;
    cursor: pointer;
    align-items: center;
}

section.compte_connecter .Navigation ul li p,
section.compte_connecter .Navigation ul li a
{
    font-family: var(--police-Quicksand-Bold);
    color: #c3c3c3;
    transition: color .2s;
    text-align: left;
}
section.compte_connecter .Navigation ul li p:hover,
section.compte_connecter .Navigation ul li a:hover
{
    color: #e65fa9;
}



section.compte_connecter .Navigation ul li.active p,
section.compte_connecter .Navigation ul li.active a{
    color: #ec0082;
}


section.compte_connecter .Navigation ul li.active img.Active{
    display: block;
}
section.compte_connecter .Navigation ul li.active img.notActive{
    display: none;
}
section.compte_connecter .Navigation img.Active{
    display: none;
}

section.compte_connecter .Navigation #ButtonPopUpDeleteAccount:hover{
    text-decoration: underline;
    cursor: pointer;
}

                    /* NAVIGATION */
/* _____________________________________________________ */



                    /* CONTENU */
/* _____________________________________________________ */
section.compte_connecter .Content{
    display: flex;
    flex-direction: column;
    background-color: var(--couleur-5);
    padding: 3rem 4rem;
}

/* about you */
section.compte_connecter .Content .aboutYou{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

section.compte_connecter .Content .aboutYou .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

section.compte_connecter .Content .aboutYou .left h1{
    font-size: 2rem;
    text-transform: none;
}

section.compte_connecter .Content .aboutYou .right{
    height: 100%;
    display: flex;
    align-items: flex-end;
}

section.compte_connecter .Content .aboutYou .right .showMyPage{
    padding: 1rem 2rem;
    background-color: #A7118A;
    transition: background-color .2s;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}
section.compte_connecter .Content .aboutYou .right .showMyPage:hover{
    background-color: var(--couleur-10);
}
section.compte_connecter .Content .aboutYou .right .showMyPage p,
section.compte_connecter .Content .aboutYou .right .showMyPage p span
{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-12);
}
section.compte_connecter .Content .aboutYou .right .showMyPage p span.point_exclamation{
    display: none;
}
/* about you */


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


/* statistiques */
section.compte_connecter .Content .statistiques{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #C3C3C3;
}
section.compte_connecter .Content .statistiques h2{
    font-size: 1rem;
}
section.compte_connecter .Content .statistiques .statsDiv{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
section.compte_connecter .Content .statistiques .statsDiv .stats
{
    display: flex;
    gap: 1rem;
}

section.compte_connecter .Content .statistiques .statsDiv .stats .statistique{
    height: 5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    width: 15rem;
    box-shadow: 0px 3px 6px #00000029;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

section.compte_connecter .Content .statistiques .statsDiv .stats .statistique .hover{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    background-color: #00000090;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: opacity .2s;
    opacity: 0;
    gap: .5rem;
}
section.compte_connecter .Content .statistiques .statsDiv .stats .statistique .hover:hover{
    opacity: 1;
}
section.compte_connecter .Content .statistiques .statsDiv .stats .statistique .hover p{
    color: var(--couleur-12);
    font-family: var(--police-Quicksand-Bold);
    max-width: 8rem;
}


section.compte_connecter .statsDiv .stats .statistique .img{
    position: relative;
}

section.compte_connecter .statsDiv .stats .statistique .fond{
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    opacity: 0.25;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.compte_connecter .statsDiv .stats .statistique .img img{
    height: 2rem;
    width: 2rem;
    object-fit: contain;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 4;
}

.stat1{
    background-color: #ECB1DC;
}
.stat1 .fond{
    background-color: #A7118A;
}
.stat2{
    background-color: #FFBCE2;
}
.stat2 .fond{
    background-color: #EC0082;
}
.stat3{
    background-color: #D9CBE3;
}
.stat3 .fond{
    background-color: #603689;
}


section.compte_connecter .statsDiv .stats .statistique .texts strong{
    color: #FFF;
    font-family: var(--police-Quicksand-Bold);
    font-size: 2rem;
}
section.compte_connecter .statsDiv .stats .statistique .texts p{
    color: #FFF;
    font-size: .8rem;
    font-family: var(--police-Quicksand-Bold);
}


section.compte_connecter .statsDiv .textDiv{
    max-width: 10rem;
}

section.compte_connecter .statsDiv .textDiv p{
    color: var(--couleur-2);
    font-family: var(--police-Quicksand-Regular);
}

section.compte_connecter .statsDiv .textDiv a{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-11);
    text-decoration: underline;
}
/* statistiques */


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


/* groupes */
section.compte_connecter .groupes{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
    margin-top: 3rem;
}

section.compte_connecter .groupes .groupe{
    width: calc(50% - 1rem);
    max-width: 30rem;
    border-radius: 5px;
    box-shadow: 0px 2px 5px #00000019;
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #fff;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

section.compte_connecter .groupes .groupe .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}


section.compte_connecter .groupes .groupe .left .top{
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

section.compte_connecter .groupes .groupe .left .top p{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-2);
}

section.compte_connecter .groupes .groupe .bottom p{
    color: var(--couleur-2);
}

section.compte_connecter .groupes .groupe .right{
    width: 5rem;
}
section.compte_connecter .groupes .groupe .right img{
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    cursor: pointer;
    object-fit: contain;
}

/* groupes */







/* _____________________________________________________ */
/* FOOTER & HEADER */
header#main-header{
    background-color: var(--couleur-10);
}
#menuDeroulant{
    background-color: var(--couleur-10);
}
#menuDeroulant .span-burger::before{
    background-color: transparent;
}
header#main-header .gauche a{
    color: var(--couleur-12);
}

header#main-header .droite button:nth-child(2){
    border: 1px solid var(--couleur-12);
}
#main-header-mobile #menuDeroulant .span-burger span{
    background-color: var(--couleur-12);
}
#menuDeroulant .span-burger::before{
    color: var(--couleur-12);
    background-color: #6B4D91;
}

footer#main_footer{
    position: relative;
    z-index: 2;
    background-color: var(--couleur-10);
}
footer#main_footer li a{
    color: var(--couleur-12);
}
footer#main_footer .ul2 li:nth-child(1) a{
    color: var(--couleur-11);
}
/* FOOTER & HEADER */
/* _____________________________________________________ */





/* _____________________________________________________ */
/* POPUP DELETE ACCOUNT */
.popUpDeleteAccount{
    display: none;
    z-index: 10;
}

.popUpDeleteAccount.actif{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 5rem;
}


.popUpDeleteAccount .fond{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000002f;
}

.popUpDeleteAccount .inPopUp{
    background-color: var(--couleur-12);
    padding: 1rem 3rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0px 3px 10px #00000029;
    position: relative;
    z-index: 4;
    height: fit-content;
}

.popUpDeleteAccount .inPopUp .croix {
    height: 2rem;
    width: 2rem;
    position: absolute;
    cursor: pointer;
    top: .5rem;
    right: .5rem;
}
.popUpDeleteAccount .inPopUp .croix .ligne{
    height: 3px;
    width: 1.5rem;
    border-radius: 10px;
    background-color: var(--couleur-10);
    transform-origin: center;
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    transition: background-color .2s, transform .2s;
}
.popUpDeleteAccount .inPopUp .croix:hover .ligne{
    background-color: #8d61b9;
}

.popUpDeleteAccount .inPopUp .croix .ligne:nth-child(1){
    transform: rotate(-225deg);
}
.popUpDeleteAccount .inPopUp .croix:hover .ligne:nth-child(1){
    transform: rotate(-45deg);
}

.popUpDeleteAccount .inPopUp .croix .ligne:nth-child(2){
    transform: rotate(225deg);
}
.popUpDeleteAccount .inPopUp .croix:hover .ligne:nth-child(2){
    transform: rotate(45deg);
}

.popUpDeleteAccount .inPopUp h3{
    max-width: 30rem;
    text-align: center;
}

.popUpDeleteAccount .inPopUp .deleteAccountButton{
    padding: 1rem 2rem;
    border-radius: 2rem;
    background-color: red;
    color: var(--couleur-12);
    font-family: var(--police-Quicksand-Bold);
    transition: background-color .2s;
    text-align: center;
    cursor: pointer;
}

.popUpDeleteAccount .inPopUp .deleteAccountButton:hover{
    background-color: rgb(144, 0, 0);
}

@media screen and (max-width: 1200px) {
    .popUpDeleteAccount.actif{
        align-items: flex-start;

        padding-top: 10rem;
    }

}

@media screen and (max-width: 700px) {
    .popUpDeleteAccount .inPopUp{
        width: 20rem;
    }
}

@media screen and (max-width: 500px) {
    .popUpDeleteAccount .inPopUp{
        width: 80%;
    }
    
    .popUpDeleteAccount .inPopUp h3{
        font-size: 1rem;
    }
}

@media screen and (max-width: 400px) {
    .popUpDeleteAccount .inPopUp{
        width: 80%;
    }
    .popUpDeleteAccount .inPopUp .deleteAccountButton{
        font-size: .8rem;
        padding: .5rem 1.5rem;
    }

}
/* POPUP DELETE ACCOUNT */
/* _____________________________________________________ */




/* NAV MOBILE */
/* _____________________________________________________ */



section.compte_connecter .Navigation .menu{
    display: none;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    justify-content: center;
    width: 100%;
    height: 2rem;
    transition: margin-top .2s;
    margin-top: .5rem;
}

section.compte_connecter .Navigation .menu .burger{
    height: .6rem;
    width: 1rem;
    position: relative;
}
section.compte_connecter .Navigation .menu .burger div{
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--couleur-11);
    transition: width .1s, transform .2s;
    transform-origin: center;
    position: absolute;
}

section.compte_connecter .Navigation .menu .burger div.l1{
    top: .0rem;
}
section.compte_connecter .Navigation .menu .burger div.l2{
    width: 60%;
    top: .3rem;
}
section.compte_connecter .Navigation .menu .burger div.l3{
    top: .6rem;
}

section.compte_connecter .Navigation .menu p{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-11);
}

section.compte_connecter .Navigation.active .menu .burger div.l1{
    transform: rotate(225deg);
    top: .3rem;
    border-radius: 10px;
}

section.compte_connecter .Navigation.active .menu .burger div.l2{
    width: 0;
}
section.compte_connecter .Navigation.active .menu .burger div.l3{
    transform: rotate(-225deg);
    top: .3rem;
    border-radius: 10px;
}



/* NAV MOBILE */
/* _____________________________________________________ */



/* aboutYouGeneral */
/* _____________________________________________________ */
.aboutYouGeneral{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    /* background-color: red; */
    padding-bottom: 2rem;
    border-bottom: 1px solid #C3C3C3;
}

.aboutYouGeneral .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.aboutYouGeneral .left .titre{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.aboutYouGeneral .left .titre img{
    width: 1.5rem;
}

.aboutYouGeneral .left h1{
    font-size: 2rem;
    text-transform: none;
}

.aboutYouGeneral .right{
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.aboutYouGeneral .right .showMyPage{
    padding: 1rem 2rem;
    background-color: #A7118A;
    transition: background-color .2s;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    text-align: center;
}
.aboutYouGeneral .right .showMyPage:hover{
    background-color: var(--couleur-10);
}
.aboutYouGeneral .right .showMyPage p,
.aboutYouGeneral .right .showMyPage p span
{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-12);
}
.aboutYouGeneral .right .showMyPage p span.point_exclamation{
    display: none;
}

@media screen and (max-width:1400px) {
    .aboutYouGeneral{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media screen and (max-width:800px) {
    .aboutYouGeneral{
        margin-top: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .aboutYouGeneral .left .titre img{
        width: 1.5rem;
    }
    .aboutYouGeneral .left .titre h1{
        font-size: 1.5rem;
        text-align: left;
    }
}
@media screen and (max-width:500px){
    .aboutYouGeneral .right .showMyPage{
        padding: .5rem 3rem;
    }
    .aboutYouGeneral{
        text-align: center;
    }
    .aboutYouGeneral .right .showMyPage p span.point_exclamation{
        display: block;
    }
    .aboutYouGeneral .right .showMyPage p span.sur_specialiste{
        display: none;
    }
    .aboutYouGeneral .left{
        align-items: center;
    }
    .aboutYouGeneral .right{
        margin: 0 auto;
    }
    .aboutYouGeneral .right .showMyPage p,
    .aboutYouGeneral .right .showMyPage p{
        display: flex;
        flex-wrap: nowrap;
    }
}
@media screen and (max-width: 380px) {
    .aboutYouGeneral .right .showMyPage{
        padding: 0.5 2rem;
    }
    .aboutYouGeneral .right .showMyPage p{
        font-size: .7rem;
        width: fit-content;
        min-width: fit-content;
    }
}
    /* aboutYouGeneral */
/* _____________________________________________________ */


@media screen and (max-width:1500px) {
    section.compte_connecter .Content .statistiques .statsDiv{
        align-items: flex-start;
    }
    section.compte_connecter .Content .statistiques .statsDiv .stats{
        flex-wrap: wrap;
        width: 31rem;
    }
}



@media screen and (max-width:1400px) {
    section.compte_connecter .Content .aboutYou{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media screen and (max-width:1260px) {
    section.compte_connecter .Content .statistiques .statsDiv{
        align-items: flex-end;
    }
    section.compte_connecter .Content .statistiques .statsDiv .stats{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        width: fit-content;
    }
}


@media screen and (max-width: 1200px) {
    section.compte_connecter .groupes .groupe{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: .5rem;
    }
    
    section.compte_connecter .groupes .groupe .left{
        align-items: center;
        justify-content: center;
    }
    section.compte_connecter .groupes .groupe .left .bottom{
        text-align: center;
        min-height: 5rem;
    }
    section.compte_connecter .groupes .groupe .right{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    section.compte_connecter .groupes .groupe .right img{
        height: 2rem;
        width: 2rem;
        min-height: 2rem;
        min-width: 2rem;
    }
}

@media screen and (max-width: 1025px) {
    section.compte_connecter .Navigation{
        top: 3rem;
    }
}


@media screen and (max-width:1000px) {
    section.compte_connecter .groupes .groupe{
        width: 100%;
    }
    section.compte_connecter .groupes .groupe .left .bottom{
        text-align: center;
        min-height: 3rem;
    }

    section.compte_connecter .Content .statistiques{
        align-items: center;
    }
    section.compte_connecter .Content .statistiques .statsDiv{
        flex-direction: column;
        align-items: center;
    }
}


@media screen and (max-width:800px) {
    section.compte_connecter .fondNav.active{
        opacity: 1;
        visibility: visible;
    }
    section.compte_connecter .Navigation .menu{
        display: flex;
    }
    section.compte_connecter{
        flex-direction: column;
    }

    section.compte_connecter .Navigation{
        background-color: var(--couleur-12);
        position: fixed;
        overflow: hidden;
        height: 3rem;
        width: 60%;
        top: 4rem;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%);
        border-radius: 5px;
        z-index: 3;
        padding: 0;
        gap: 0;
        gap: 1.5rem;
        transition: height .2s;
    }
    section.compte_connecter .Navigation .top{
        display: none;
    }

    section.compte_connecter .Content{
        padding: 5rem 4rem;
    }

    section.compte_connecter .Content .aboutYou{
        margin-top: 2rem;
    }

    section.compte_connecter .Navigation.active{
        height: 23rem;
        justify-content: flex-start;
    }
    
    section.compte_connecter .Navigation #ButtonPopUpDeleteAccount{
        transition: margin .2s;
    }
    section.compte_connecter .Navigation.active #ButtonPopUpDeleteAccount{
        margin-right: 2rem;
    }
    

    section.compte_connecter .Content{
        padding: 2rem 0;
    }
    section.compte_connecter .Content .aboutYou,
    section.compte_connecter .groupes
    {
        padding: 0 4rem;
    }
    section.compte_connecter .Content .statistiques,
    section.compte_connecter .Content .statistiques .statsDiv
    {
        align-items: flex-start;
        overflow: hidden;
        max-width: 100%;
    }
    section.compte_connecter .Content .statistiques h2{
        padding-left: 4rem;
    }
    section.compte_connecter .statsDiv .textDiv
    {
        width: 100%;
        min-width: 30rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    section.compte_connecter .Content .statistiques .statsDiv .stats{
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 1rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    section.compte_connecter .Content .statistiques .statsDiv .stats .statistique{
        min-width: 15rem;
    }

    section.compte_connecter .groupes{
        align-items: center;
        flex-direction: column;
    }
}


@media screen and (max-width: 500px) {
    section.compte_connecter .Content .aboutYou .right .showMyPage{
        padding: .5rem 3rem;
    }
    section.compte_connecter .Content .aboutYou,
    section.compte_connecter .Content .statistiques h2,
    section.compte_connecter .statsDiv .textDiv{
        text-align: center;
    }
    section.compte_connecter .Content .statistiques{
        border: none !important;
        padding-bottom: 0;
        min-width: 10rem;
    }
    section.compte_connecter .statsDiv .stats .statistique .fond {
        height: 2.5rem;
        width: 2.5rem;
    }
    section.compte_connecter .statsDiv .stats .statistique .img img{
        height: 1.5rem;
        width: 1.5rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    section.compte_connecter .statsDiv .stats .statistique .texts strong{
        font-size: 1.5rem;
    }
    section.compte_connecter .statsDiv .stats .statistique .texts p{
        font-size: .7rem;
    }
    section.compte_connecter .Content .statistiques h2,
    section.compte_connecter .Content .statistiques .statsDiv .stats{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    section.compte_connecter .Content .aboutYou,
    section.compte_connecter .groupes{
        padding: 0 2rem;
    }
    section.compte_connecter .Content .aboutYou .right .showMyPage p span.point_exclamation{
        display: block;
    }
    section.compte_connecter .Content .aboutYou .right .showMyPage p span.sur_specialiste{
        display: none;
    }
    section.compte_connecter .Content .aboutYou .left{
        align-items: center;
    }
    section.compte_connecter .Content .aboutYou .right{
        margin: 0 auto;
    }
    section.compte_connecter .Content .aboutYou .right .showMyPage p,
    section.compte_connecter .Content .aboutYou .right .showMyPage p{
        display: flex;
        flex-wrap: nowrap;
    }

    section.compte_connecter .statsDiv .textDiv{
        width: 100%;
        min-width: 20rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    section.compte_connecter .statsDiv .textDiv{
        min-width: 15rem;
    }
    section.compte_connecter .groupes{
        padding-top: 2rem;
        border-top: 2px solid #C3C3C3;
    }

}


@media screen and (max-width: 380px) {
    section.compte_connecter .Content .aboutYou,
    section.compte_connecter .groupes{
        padding: 0 1rem;
    }
    section.compte_connecter .groupes{
        padding-top: 2rem;
    }

    
    section.compte_connecter .Content .statistiques h2,
    section.compte_connecter .Content .statistiques .statsDiv .stats
    {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    section.compte_connecter .Content .aboutYou .right .showMyPage{
        padding: 0.5 2rem;
    }
    section.compte_connecter .Content .aboutYou .right .showMyPage p{
        font-size: .7rem;
        width: fit-content;
        min-width: fit-content;
    }
}