/*  === ABSTRACTS === */

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

/* clearfix */
.clearfix::after {
    content: '';
    clear: both;
    display: table;
}

/* images flexibles */
img {
    display: block;
    width: 100%;
    height: auto;

}

* {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

@font-face {
  font-family:Poppins;
  src:url(https://cdn.prod.website-files.com/69aae2624c53210d376f6a88/69aae33affe953191857bdbc_Poppins-SemiBold.ttf)format("truetype");
  font-weight:600;
  font-style:normal;
  font-display:swap
}
@font-face {
  font-family:Poppins;
  src:url(https://cdn.prod.website-files.com/69aae2624c53210d376f6a88/69aae820afb849c9fda82836_Poppins-Medium.ttf)format("truetype");
  font-weight:500;
  font-style:normal;
  font-display:swap
}


a {
    text-decoration: unset !important;
    cursor: pointer;
}

/* ======================================= */

/*  === VARIABLES === */

:root {
    --light-black: #292C33;
    --primary: red;
    --form-border-color:#f5f5f4;
    --hero-color:#f5f5f4;
    --hero-background-color:#0E6281;
    --hero-highlight-color:#f0d057;
    --button-color:#F4F2F1;
    --button-background-color:#0E6281;
    --button-background-color-hover:#0E3D4E;
}

/*  === GRILLE === */

/*  === TEXTES & POLICES === */

/*  === NAVIGATIONS === */

/*  === COMPOSANTS (formulaires, produits) === */

.btn-clicked {
    background-color: unset;
    display: unset;
    padding: 6px 60px 6px 0px;
    text-align: left;
    color: #8CBFB8;
    text-decoration: unset;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    border: unset;
}

.btn-1 {
    display: block;
    background-color: var(--button-background-color);
    height: 40px;
    width: 83%;
    text-align: center;
    text-decoration: unset;
    font-size: 16px;
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    border: unset;
    padding: 8px;
    margin: auto;
    transition: all 0.2s;
    color:var(--button-color);
}

.btn-1:hover {
    background-color: var(--button-background-color-hover);
    color: #fff;
}

/*  === DIVERS === */

/* ======================================= */

body {
    color: black;
}

/* ======= CONNEXION ======= */

/******* MENU *********/
#topContainer{
    background-color: var(--hero-highlight-color);
    color:var(--primary);
    font-size:120%;
    text-align: center;
    width: 100%;
    min-height: 30px;
    padding:10px;
}
aside {
    background-color: var(--backgroundMenuColor);
    width: 25vw;
    height: 100vh;
    position: sticky;
    top: 0;
    border-right: 2px solid #EBEBEB;
    box-shadow: 3px 0px 10px #0000000D;
}

@media (max-width:1200px) {
    aside {
        display: none;
    }
}

.mt1 {
    margin-top: 1rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

#points-header {
    color: #fff;
}

.header-logo img {
    max-width: 180px;
    text-align: center;
    margin: auto;
    margin-top: 45px;
    height: auto;
}

.nav-profile {
    position: absolute;
    bottom: 15px;
    width: 86%;
}

.nav-notifications {
    position: absolute;
    bottom: 104px;
    width: 86%;
    padding: 0;
}

.nav-lien-site {
    position: absolute;
    bottom: 60px;
    width: 86%;
}

.btn-connexion {
    display: block;
    width: 100%;
    background-color: var(--primary);
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: #fff;
    text-decoration: unset;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    border-radius: 30px;
    margin-top: 16px;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-connexion:hover,
.btn-connexion:active,
.btn-connexion:focus {
    background-color: #000;
    color: #fff;
}
#forgotPasswordBtn{
    font-weight: normal;
    font-size:90%;
}
#forgotPasswordBtn:hover {
    color: var(--primary);
    transition: all 0.2s;
}
#signupForm h1 {
  font-size: 1.5em;
  margin: 30px 0;
  color:#0E3D4E;
}
#signupBtn {
    color: var(--primary);
    margin-left: 8px;
}

.connexion-content {
    width: 78vw;
}

.container-input-connexion {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.container-connexion-content {
    border-radius: 10px;
    box-shadow: 0px 0px 20px #0000000D;
    margin-top: 70px;
    padding: 32px;
    width: 100%;
}

#name,
#firstname,
#email,
#motdepasse {
    display: block;
    border-radius: 30px;
    background-color: #fff;
    border: 2px solid var(--primary);
    padding: 12px 0px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #000;
    min-width: 235px;
}

#signinForm {
    margin-top: 32px;
    margin-left: 32px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 32px;
    border-right: 2px solid #EBEBEB;
}

@media (max-width:1200px) {
    #form-connexion {
        border: none !important;
    }
}

.company-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-company-content {
    max-width: 200px;
    height: auto;
    margin: auto;
}

#btnLoginValid {
    cursor: pointer;
}

.newconnexion {
    align-items: center;
    margin-top: 40px;
}

#inputLoginEmail,
#inputLoginPassword {
    display: block;
    border-radius: 30px;
    background-color: #fff;
    border: 2px solid var(--form-border-color);
    padding: 12px 0px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #000;
    min-width: 235px;
}

@media (max-width:1200px) {
    aside {
        display: none;
    }

    .connexion-content {
        width: 100vw;
    }

    .connexion-content #language {
        display: none;
    }
}

.top-connexion {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    margin: auto;
}

.btn-langue,
.english-language {
    display: inline-block;
    text-align: right;
    color: #fff;
    margin-top: 40px;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: unset;
}

.bookProductBtn {
    color: #fff;
}

.bookProductBtn[disabled="disabled"] {
    opacity: 0.5;
    cursor: not-allowed;
}

#agreement u {
    color: #000 !important;
}

.language-section {
    position: relative;
}

.language-section a:hover {
    color: #5C16C5;
}

.french-language {
    position: absolute;
    display: block;
    text-align: right;
    color: #000;
    margin-top: 40px;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: unset;
    top: 130%;
    left: 0px;
}

.mission-submit-proof {
    padding: 1rem;
}

.mission-submit-proof p {
    font-size: 13px;
}

.proofPrompt {
    color: #000;
    font-size: 13px;
}


@media (max-width:768px) {
    .btn-langue {
        margin-top: 20px;
        font-size: 30px;
    }

    .french-language {
        font-size: 30px;
        top: 60%;
    }

    .language-section {
        top: -30px;
    }
}

.top-connexion-content-center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-connexion h1 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 100px;
}

.voirplus {
    text-align: center;
}

.voirplus a {
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
}

.voirplus img {
    width: 40px;
    margin: auto;
}

.sponsorship {
    margin-top: 190px;
    width: 80%;
    margin: auto;
}

.sponsorship-content {
    padding: 24px;
}

.sponsorship h1 {
    text-transform: uppercase;
    color: #000;
    font-size: 20px;
    text-align: center;
}

.sponsorship h2 {
    color: #000;
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 64px;
}

.sponsorship h3 {
    color: var(--secondary);
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
}

.sponsorship img {
    margin-top: 80px;
}

.sponsorship p {
    color: #000;
    font-size: 17px;
    padding: 0px 20px;
}

.sponsor-ranking {
    margin-top: 130px;
    padding: 0px 15px;
}

.sponsor-ranking-rank {
    background-color: #fff;
    border-radius: 10px;
    flex-basis: 17.035088%;
    width: 17.035088%;
}

.sponsor-ranking-rank h4 {
    font-size: 16px;
    font-weight: 700;
    background-color: #6C657B;
    color: #fff;
    margin: 0px;
    padding-top: 5px;
    text-transform: uppercase;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    line-height: 1.3;
}

.sponsor-ranking-rank h5 {
    background-color: #6C657B;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.sponsor-ranking-rank h6 {
    color: var(--black);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    border-bottom: 1px solid #707070;
    padding: 10px 0px;
    margin: 0;

}

.sponsor-ranking img {
    height: 20px;
    width: 20px;
    margin: 0px;
    margin-left: 15px;
    margin-right: 10px;
}

.sponsor-ranking p span {
    font-weight: 700;
    font-size: 14px;
}

.sponsor-ranking p {
    color: #000000;
    font-size: 12px;
    padding: 0px;
    padding-right: 10px;
    margin: 0px;
    text-align: left;
    max-width: 95px;
    line-height: 1.3;
}

.discord-rewards {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.discord-rewards img {
    width: 40px;
    height: 40px;
    margin: 0;
}

.discord-rewards p {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 15px;
}

.reward-space {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.conditions-sponsorship {
    margin-bottom: 100px;
    text-align: center;
}

.conditions-sponsorship a {
    text-decoration: dashed;
    color: #fff;
    font-weight: 300;
}

/*  === BODY === */

@media (min-width:768px) {
    .mobile-appear-title {
        display: none;
    }
}

@media (max-width:768px) {
    .mobile-disappear-title {
        display: none;
    }
}



/* PAGE ACCUEIL ESPACE PARRAIN */

.dashboard {
    width: 83vw;
}

.dashboard-nav {
    margin-top: 30px;
    position: relative;
}

.pop-up-no-notif {
    position: absolute;
    top: 50px;
    right: 280px;
    background-color: var(--primary);
    color: var(--textHeaderColor);
    padding: 5px 20px;
    border-radius: 5px;
}

@media (max-width:768px) {
    .pop-up-no-notif {
        top: 90px;
        right: 20px;
    }
}

.pop-up-no-notif img {
    float: right;
    height: 35px !important;
    width: 35px !important;
}

.img-notif-change {
    height: 40px;
    width: 40px;
    background-image: url(../images/bell-white.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width:1200px) {
    .img-notif-change {
        background-image: url(../images/bell-white.png);
    }
}

.pop-up-no-notif p {
    color: var(--textHeaderColor);
    margin: 10px 0px;
}

.dashboard-nav img {
    height: 40px;
    width: 40px;
    padding: 5px;
}

.notifications {
    position: relative;
}

.notifications p {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    font-size: 3px;
    color: var(--backgroundColor);
    border-radius: 50%;
    padding: 5px 8px;
    margin: 0;
}

.points-nav,
.points-nav * {
    cursor: pointer;
}

.points-nav p {
    margin: 0;
}

.how-it-works,
.points-nav,
.dashboard-left-nav {
    align-items: center;
}

.container-message {
    display: flex;
    flex-direction: column;
}

.left-sponsorship {
    padding: 24px;
    border-right: 2px solid #EDEDED;
}

.right-sponsorship {
    margin: auto;
}


#input-mail-contact {
    display: block;
    border-radius: 30px;
    background-color: #fff;
    border: 2px solid var(--primary);
    padding: 12px 0px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #000;
}

textarea {
    min-height: 150px;
    border-radius: 20px;
    border: solid 2px var(--primary);
    padding: 12px;
}

#remember-me {
    cursor: pointer;
}

.check-cgu {
    cursor: pointer;
}

.btn-send {
    display: block;
    width: 100%;
    background-color: var(--primary);
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    text-decoration: unset;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    border-radius: 30px;
    margin-top: 16px;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-send:hover {
    color: #fff;
    background-color: #000;
}

@media (min-width:360px) and (max-width:600px) {
    .left-sponsorship {
        margin-left: 0;
        border: none;
    }

    .sponsorship {
        width: 100%;
    }

    .sponsorship h2 {
        margin-bottom: 40px;
    }
}

.referral-working {
    width: 100%;
}


.how-it-works p {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
}

.dashboard-left-nav a {
    margin: 0;
}

.points-nav {
    background-color: var(--primary);
    border-radius: 10px;
    padding: 5px 13px;
    margin-right: 30px;
}

.points-nav img {
    width: 20px;
    height: 20px;
    padding: 0px;
}

.points-nav p {
    color: #fff;
    font-size: 18px;
    padding-left: 10px;
}

.notifications {
    margin-right: 30px !important;
}

/*  */

/* .dashboard-rank {
    margin-top: 120px;
} */

/************ HOME **********/

#dashboard {
    width: 100%;
}

.container-bienvenu-parrainages {
    width: 100%;
    display: flex;
}

.container-recompense-mission {
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}

.container-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.container-mission {
    background-color: var(--backgroundColor);
    padding: 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.container-mission h2 {
    color: var(--textMenuColor);
}

.container-recompense {
    background-color: var(--backgroundColor);
    padding: 24px;
    border-radius: 10px;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container-recompense h2 {
    color: var(--textMenuColor);
}

.container-gift-card {
    height: 90px;
    width: 49%;
    display: flex;
    margin-bottom: 24px;
    background-color: #fff;
    border-radius: 10px;
    align-items: center;
    padding: 0;
}

.txt-gift-card {
    margin-left: 7px;
    line-height: 1;
    color: black;
}

.img-gift-card {
    width: 20%;
    object-fit: scale-down;
    max-height: 80px;
}

.container-card-mission {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.card-mission {
    width: 49%;
    background-color: #FFF;
    border-radius: 10px;
    padding: 8px 16px 8px 16px;
    margin-top: 8px;
    margin-bottom: 8px;
    min-height: 150px;
}

.title-card {
    display: flex;
    justify-content: space-between;
}

.number-mission {
    margin-bottom: 0;
    color: #B7B7B7;
}

.title-mission {
    font-size: 15px;
    margin: 0;
}

.txt-mission {
    font-size: 13px;
}

.btn-primary {
    display: block;
    text-align: center;
    width: 100%;
    color: var(--button-color);
    background-color: var(--button-background-color);
    padding: 16px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.2s;
    margin-top: 16px;
}

.btn-primary:hover {
    background-color: var(--button-background-color-hover);
    color: #fff;
}

.container-btn {
    display: flex;
    margin-top: 40px;
}

.btn-secondary {
    color:#0E3D4E;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 0px 20px #0000000D;
    font-weight: bold;
    transition: all .2s;
    background-color: #fff;
}

.btn-faq {
    padding: 32px;
    font-size: 25px;
}

.btn-registration {
    font-size: 15px;
    padding: 16px;
    font-weight: bold;
}

.btn-faq:hover {
    border: 2px solid #1C2230;
    box-shadow: 2px 2px 3px var(--primary);
}

footer {
    padding: 16px;
    background-color: var(--primaryBackground);
    border-radius: 10px;
    margin-bottom: 40px !important;
    display: flex;
    justify-content: center;
    width: 93.5%;
    margin: auto;
    margin-top: 40px;
}



.img-footer {
    max-width: 100px;
    width: fit-content;
}


.dashboard-rank-content {
    flex-basis: 17.5%;
    max-width: 17.5%;
}

.dashboard-rank-container {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    height: 230px;
    align-items: center;
    padding-top: 30px;
}

.dashboard-rank-container h1,
.dashboard-rank-container h2 {
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

.dashboard-rank-container h1 {
    font-size: 16px;
    font-weight: 600;
}

.dashboard-rank-container h2 {
    font-weight: 300;
    font-size: 16px;
}

.dashboard-rank-content h3 {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.validated-rank {
    opacity: 0.3;
}

.next-rank .dashboard-rank-container {
    opacity: 0.3;
}

.next-rank h3 {
    color: var(--secondary) !important;
}

.dashboard-rank-container img {
    height: 100px;
    width: 100px;
    margin: auto;
}

.container {
    display: flex;
    max-width: 1240px !important;
}

.dashboard-bottom-section {
    padding: 64px;
    text-align: center;
    margin-top: 80px;
    background-color: var(--hero-background-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--textHeaderColor);
}




@media (min-width:350px) and (max-width:780px) {

    .active>.ui-accordion-content {
        display: block;
        border-radius: 0px 0px 5px 5px;
        background-color: #f7f7f7;
        padding: 0 16px 16px 16px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
    }

    .container-nav-faq {
        width: 100% !important;
    }


    .faq {
        flex-wrap: wrap;
    }

    .img-content-faq {
        display: none;
    }

    .myNav-item {
        height: auto !important;
    }

    .container-content-faq {
        height: 300px;
    }

    .dashboard-bottom-section,
    .container-header-mission {
        padding: 32px !important;
        margin-top: 40px !important;
    }

    .container-header-mission h1 {
        font-size: 32px !important;
    }

    .dashboard-bottom-section h1 {
        font-size: 32px !important;
    }

    .card-recompense {
        width: 100% !important;
        margin-bottom: 16px !important;
        margin-top: 16px !important;
    }

    #form-invitation {
        width: 100% !important;
    }

    .left-sponsorship {
        padding: 0;
    }

    .card-mission-participe {
        width: 100% !important;
        margin-top: 16px !important;
        margin-bottom: 16px !important;
    }

    .bloc-input-parrainage {
        width: 100%;
    }

    .sponsorship-invitation-title h2 {
        margin-left: 0 !important;
    }

    .check-cgu {
        max-width: 250px;
    }

    .container-parrain-mob {
        width: 95% !important;
    }
}

.dashboard-bottom-section h1 {
    margin: 0px;
    margin-bottom: 5px;
    font-size: 48px;
}


.dashboard-bottom-section p {
    font-weight: 300;
}

.container-parrainages {
    background-color: var(--backgroundColor);
    margin-left: 40px;
    margin-top: 80px;
    padding: 24px;
    border-radius: 10px;
}

.container-parrainages h2 {
    color: var(--textMenuColor);
}

.finalisé .status {
    background-color: #FFD3004D;
    border-radius: 18px;
}

.inscrit .status {
    background-color: #EBEBEB;
    border-radius: 18px;
    opacity: 0.5;
}

aside nav img {
    height: 22px;
    width: 22px;
    margin-right: 15px;
    margin-left: 20px;
}

aside nav {
    margin-top: 32px;
}

aside nav a {
    align-items: center;
    margin: 8px 16px;
    opacity: 0.5;
    color: var(--textMenuColor);
    font-weight: 400;
    font-size: 14px;
    padding: 8px 0px;
}

aside nav a:focus,
aside nav a:active {
    opacity: 1;
    transition: 0.3s ease-in-out;
    background-color: #F5F5F4;
}

aside nav a:hover {
    background-color: #F5F5F4;
}

.nav-active {
    background-color: #F5F5F4;
    opacity: 1 !important;
}


#bigContainer {
    flex-wrap: nowrap !important;
}

#bigContainer.howItWorks {
    background: url('/images/background-faq.png') repeat;
}

/************ PARRAINER ***********/


.sponsorship-section {
    width: 100%;
}

.container-form-left {
    width: 100%;
    margin-top: -32px;
}

.container-form-right {
    padding: 24px;
    border-left: 2px solid #EDEDED;
    width: 32%;
}

.btn-brand {
    max-height: 40px;
    width: auto;
    display: inline-block;
}

.btn-brand img {
    max-width: 32px;
}

/********** RESPONSIVE FORM ********/

@media (min-width:360px) and (max-width:900px) {
    #form-invitation {
        flex-direction: column;
    }

    .container-form-left,
    .container-form-right {
        width: 100%;
    }

    .container-form-right {
        border-left: none;
    }

}



@media (max-width:768px) {
    .refereeEmail {
        display: none;
    }

    .referralContactRow {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .referralContactReminder {
        padding: 2px;
    }
}

form {
    margin-bottom: 8px;
}


#form-invitation {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    padding: 24px;
    box-shadow: 0px 0px 20px #0000000D;
    border-radius: 10px;
    display: flex;
}

/* .sponsorship-invitation-link {
    align-items: center;
} */

/* .sponsorship-invitation-link img {
    height: 40px;
    width: 40px;
} */


.sponsorship-invitation-link h2 {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin: 0;
}

.sponsorship-invitation-link p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}


.sponsorship-invitation input {
    display: block;
    border-radius: 30px;
    background-color: #fff;
    border: 2px solid var(--form-border-color);
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #000;
    min-width: 235px;
    font-size: 12px;
}

.sponsorship-invitation input::-ms-value {
    color: #fff;
    padding-left: 20px;
    font-weight: 300;
}

.sponsorship-invitation input::placeholder {
    color: #000;
    font-weight: 300;
}

.invitation-by-email {
    justify-content: center;
}

.invitation-by-email label {
    font-size: 13px;
    color: #000;
    margin-top: 20px;
}

.invitation-by-email input::placeholder {
    opacity: 50%;
}

.invitation-by-email button {
    margin-top: 20px;
}

.share-social-networks {
    margin-left: 60px;
    padding-bottom: 30px;
}

.share-social-networks img {
    height: 80px;
    width: 80px;
    padding: 5px;
}

.share-social-networks img:hover {
    padding: 0px;
    transition: 0.3s ease-in-out;
}

.tracking-invitation {
    background-color: rgba(88, 90, 250, 0.15);
    border-radius: 10px;
    align-items: center;
}

.tracking-invitation p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin: 0px;
    padding: 17px 0px;
    padding-left: 30px;
}

.tracking-invitation button {
    height: 35px;
    margin-right: 75px;
}

.even-container {
    background-color: unset !important;
}

.bg-grey {
    background-color: #6C657B !important;
    padding: 6px 68px !important;
}


/************ MISSIONS ***********/

.missions {
    width: 100%;
}

.picto-mission {
    max-width: 20px;
    height: auto;
    margin-right: 8px;
}

.container-header-mission {
    width: 100%;
    background-color: var(--hero-background-color);
    padding: 64px;
    border-radius: 10px;
    text-align: center;
    margin-top: 80px;
    color: var(--hero-color);
}

.container-bloc-mission {
    width: 100%;
    background-color: var(--backgroundColor);
    border-radius: 20px;
    padding: 16px;
}

.container-mission-participe {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


.card-mission-participe {
    display: flex;
    flex-direction: column;
    width: 23%;
    background-color: #FFF;
    border-radius: 10px;
    padding: 8px 16px 8px 16px;
    min-width: 240px;
    margin-bottom: 16px;
    margin-top: 16px;
    justify-content: space-between;
}

.title-card-participe {
    display: flex;
    justify-content: space-between;
}

.number-mission-participe {
    display: flex;
}

.txt-mission-participe {
    font-size: 13px;
    margin: 0;
}

.container-point-btn {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.container-point-btn-active {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.btn-third {
    padding: 8px 10px 8px 10px;
    background-color: rgba(0.11, 0.13, 0.19, .15);
    border-radius: 5px;
    font-size: 15px;
    color: #000;
    transition: all 0.2s;
}

.btn-third:hover {
    color: #fff;
    background-color: #1C2230;
}

.point-participe {
    padding: 8px;
    border-radius: 5px;
    background-color: var(--primary);
    color: #fff;
    font-size: 13px;
}



.mission-container {
    border-radius: 10px;
    margin-top: 20px;
}

.how-many-coin {
    height: 180px;
    width: 180px;
    margin: 20px;
    background: transparent url(../images/mission-img.png) no-repeat center center /cover;
    position: relative;
}

.how-many-coin-container {
    position: absolute;
    bottom: 7px;
    right: 7px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.how-many-coin-container p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
    padding: 2px 0px;
    padding-left: 10px;
    margin-top: -2px;
    padding-right: 10px !important;
}

.how-many-coin img {
    height: 18px;
    width: 18px;
    margin-right: 10px;
}

.btn-1.btn-mission {
    margin: 0;
    width: fit-content;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 13px;
}

.mission-container h3 {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 400;
    text-transform: uppercase;
    margin: 20px 0px;
}

.mission-container p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding-right: 20px;
}

.mission-container p span {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}

.mission-participate {
    margin: 0px 20px;
    padding-bottom: 15px;
}

.mission-participate label {
    color: #fff;
    display: block;
}

.mission-participate input {
    margin-bottom: 15px;
}

.mission-participate input::placeholder {
    color: rgba(242, 242, 242, 0.5)
}

input[type="file"] {
    display: none;
}

.btn-typefile {
    background-color: #6C657B !important;
    padding: 6px 60px;
    height: 35px;
    width: 177.23px;
}

.btn-typefile:hover {
    background-color: #5C16C5;
}

.greybg {
    background-color: #707070 !important;
    cursor: default;
}

.greenbg {
    background-color: #8CBFB8 !important;
    cursor: default;
    padding-top: 8px;
}

/* STATS */

.statistics {
    width: 100%;
}

.statistics-referrals div {
    border-radius: 10px;
    width: 200px;
    height: 200px;
    margin-top: 30px;
    box-shadow: 3px 3px 15px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 110px;
}


.statistics-referrals div h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 20px;
    font-size: 60px;
}

.statistics-referrals div p {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    margin-top: 40px;
}

.validated-referrals {
    background-color: var(--primary);
    margin-right: 30px;
}

.pending-referrals {
    background-color: var(--primary);
}

.available-points {
    background-color: var(--secondary);
    margin-left: 30px;
}

.best-sponsors {
    margin-top: 30px;
    width: 60%;
    background-color: #6C657B;
    border-radius: 10px;
    box-shadow: 3px 3px 15px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 110px;
}

.sponsor-person {
    align-items: center;
}

.sponsor-person p {
    color: #fff;
    font-size: 20px;
    margin-right: 70px;
}

.sponsor-person img {
    width: 30px;
    margin-left: 30px;
}

.sponsor-name {
    align-items: center;
}

.sponsor-name p {
    margin-left: 30px;
    margin-right: 0px;
}

.not-on-podium p {
    font-weight: 300;
}

.not-on-podium div p {
    margin-left: 83.5px;
}

.best-sponsors-actual-rank {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 100px;
}

.best-sponsors-actual-rank span {
    font-weight: 600 !important;
    color: #fff;
}



@media (max-width:768px) {
    .statistics-referrals div {
        margin-bottom: 30px;
    }
}

/************* RECOMPENSES ***********/

#rewards {
    width: 100%;
}

.container-bloc-recompense {
    width: 100%;
    background-color: var(--backgroundColor);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.img-card-recompense {
    height: 100%;
    width: 100%;
    max-height: 80px;
    object-fit: scale-down;
}

.point-card-recompense {
    /*position: absolute;*/
    right: 0;
    top: 30px;
    padding: 8px;
    color: var(--hero-background-color);
    background-color: unset;
}

.card-recompense {
    display: flex;
    flex-direction: column;
    width: 23%;
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 16px;
    margin-top: 16px;
/*    position: relative;*/
    min-width: 270px;
    min-height: 305px;
    margin-right: 8px;
    margin-left: 8px;
    justify-content: space-between;
    padding-top: 10px;
}

.title-card-recompense {
    color: var(--primary);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.txt-card-recompense {
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
    min-height: 97.5px;
}

.container-txt-card-recompense {
    padding: 24px;
}

.btn-recompense {
    width: 100%;
    display: block;
    text-align: center;
}

.rewards-container {
    margin-top: 20px;
    background-color: var(--black);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
}

.rewards-container h1 {
    margin: 0;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    padding-top: 8px;
}

.rewards-points {
    align-items: center;
}

.rewards-points img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.rewards-points p {
    font-size: 16px;
    margin: 0 auto;
}

.reward-ok {
    background-color: #8CBFB8;
    width: 100%;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    padding: 10px 0px 10px 20px;
}

.reward-refused {
    background-color: var(--primary);
    width: 100%;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    padding: 10px 0px 10px 20px;
}

/* PROFILE */
h1,
h3.subtitle {
    color: #fff;
}

h3 span {
    color: var(--hero-highlight-color);
    font-weight: bold;
}

.profile h1 {
    margin-bottom: 30px;
}

.profile h2 {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    margin-bottom: 30px;
}

.usecode p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}

.usecode {
    padding: 15px 30px;
    background-color: rgba(88, 90, 250, 0.15);
    border-radius: 10px;
}

.profile .sponsorship-invitation {
    padding-bottom: 50px;
}

.unavailable {
    color: #969BB8 !important;
    margin-right: 70px;
}

.available {
    color: #8CBFB8 !important;
    margin-right: 70px;
}

/*  === HEADER === */

@media (max-width:1200px) {
    .burger-icon span {
        display: block;
        width: 35px;
        height: 5px;
        background-color: var(--primary);
        margin: 6px 0;
    }

    .gg-close-o {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale(var(--ggs, 1));
        width: 40px;
        height: 40px;
        border: 2px solid var(--primary);
        border-radius: 40px;
        margin-top: 40px;
        margin-right: 8px;
        margin-left: 4px;
    }

    .gg-close-o::after,
    .gg-close-o::before {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 30px;
        height: 6px;
        background: var(--primary);
        transform: rotate(45deg);
        border-radius: 5px;
        top: 15px;
        left: 3px
    }

    .gg-close-o::after {
        transform: rotate(-45deg)
    }
}

.logo-nav-mob {
    width: 60%;
    margin: auto;
    margin-bottom: 40px;
}

.header-device {
    background-color: var(--backgroundMenuColor);
    height: 110px;
    align-items: center;
    position: relative;
}

.burger-open {
    height: 100vh;
    width: 100vw;
    background-color: var(--backgroundMenuColor);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    box-shadow: 3px 3px 15px 6px rgba(0, 0, 0, 0.3);
}

.burger-open-nav a {
    align-items: center;
    margin: 20px 15px;
    opacity: 0.5;
    color: var(--textMenuColor);
    font-weight: 400;
    font-size: 16px;
    padding: 5px 0px;
    border-radius: 10px;
}

.burger-open-nav a:focus,
.burger-open-nav a:hover,
.burger-open-nav a:active {
    opacity: 1;
    transition: 0.3s ease-in-out;
    background-color: #F5F5F4;
}

.burgerlogo img {
    width: 150px;
    margin-top: 30px;
    margin-left: 50px;
}

.burgertop a img {
    width: 30px;
    margin-top: 45px;
    margin-left: 15px;
}

.burger-open-nav {
    margin-top: 40px;
    padding-left: 0px;
}

.burger-open-nav a img {
    height: 25px;
    width: 25px;
    margin-right: 30px;
    margin-left: 20px;
}

.burger-open-nav a {
    color: var(--textMenuColor);
    font-size: 18px;
}


#feedbackLinkCopy {
    color: #fff;
}

#profile em,
.tracking-invitation-container * {
    color: #fff;
}

#notifTrigger p {
    color: var(--textMenuColor);
}

#notifCounter,
#notifCounter2 {
    color: var(--backgroundColor);
    background: var(--primary);
    height: 20px;
    width: 20px;
    font-size: 12px;
    font-weight: bold;
    padding-left: 6px;
}

#notifCounter2 {
    border-radius: 50%;
    display: inline-block;
    margin-left: 15px;
    position: relative;
    top: -5px;
    padding-top: 4px;
    padding-left: 6px;
}

#notifBlock {
    position: absolute;
    z-index: 100;
    left: 197px;
    top: 0;
    display: inline-block;
    width: max-content;
    opacity: 1;
}

#notifBlock p {
    color: var(--textHeaderColor);
}

#errorsBlock {
    position: fixed;
    width: 500px;
    text-align: center;
    margin: 1rem 0rem;
    background: orangered;
    padding: 2rem;
}

#bookFormConfirmBtn {
    width: 90%;
}

@media (min-width:1200px) {

    #nav-burger-fr,
    #nav-burger-en {
        display: none;
    }
}

@media (max-width:1200px) {

    #nav-burger-fr,
    #nav-burger-en {
        display: flex;
    }
}

@media (max-width:1200px) {
    .btn-1 {
        width: 100%;
    }
}

@media (max-width:768px) {
    .header-logo img {
        width: 150px !important;
        height: auto;
        margin: 0px !important;
    }

    .notifications {
        margin-right: 20px !important;
    }

    .top-connexion h1 {
        font-size: 22px;
        margin-bottom: 250px;
    }

    .top-connexion {
        height: 65vh;
    }

    .btn-1 {
        font-size: 16px;
        width: 100%;
    }

    .voirplus {
        margin-top: 40px;
    }

    .sponsorship h1 {
        font-size: 22px;
        padding: 0px 50px;
    }

    .sponsorship h2 {
        font-size: 20px;
    }

    .sponsorship h3 {
        font-size: 25px;
    }

    .sponsorship p {
        font-size: 20px;
    }

    .sponsor-ranking-rank {
        margin: 15px 60px;
        padding-bottom: 15px;
    }

    .croix-none {
        display: none !important;
    }

    .sponsor-ranking p {
        padding: 0px;
        max-width: 150px;
    }

    .sponsor-ranking-rank h4 {
        font-size: 20px;
    }

    .sponsor-ranking-rank h5 {
        font-size: 20px;
        margin-top: -1px;
    }

    .sponsor-ranking-rank h6 {
        font-size: 20px;
    }

    .sponsor-ranking p span {
        font-size: 20px;
    }

    .discord-rewards p {
        font-size: 25px;
        padding: 0px 20px;
        font-weight: 400;
        padding-bottom: 70px;
    }

    .dashboard-rank-content {
        flex-basis: 60%;
        max-width: 60%;
        margin: auto;
    }

    .validated-rank,
    .next-rank {
        display: none;
    }

    .dashboard-rank {
        margin-top: 60px;
    }


    .sponsorship-invitation h1 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .sponsorship-invitation-link img {
        height: 20px;
        width: 20px;
    }

    .sponsorship-invitation-link h2 {
        font-size: 20px;
    }

    .sponsorship-invitation-link p {
        font-size: 14px;
    }

    .sponsorship-invitation {
        background-color: unset;
        padding: 0px;
    }

    .invitation-by-email button {
        width: 100%;
        margin-bottom: 20px;
    }

    .share-social-networks img {
        height: 60px;
        width: 60px;
    }

    .share-social-networks {
        margin-left: 0px;
    }

    .tracking-invitation button {
        margin: auto;
        border-radius: 20px;
        height: 42px;
        margin-bottom: 20px;
    }

    .mission-container h3 {
        font-size: 20px;
    }

    .how-many-coin {
        margin: 0px;
        height: 200px;
        width: 200px;
    }

    .mission-container p span {
        display: block;
    }

    .mission-participate {
        margin: 0px;
    }

    .mission-container {
        margin-top: 60px;
    }

    .btn-clicked {
        margin-bottom: 20px;
    }

    .btn-typefile {
        width: 189.41px;
        height: 40.75px;
    }

    .statistics-referrals div {
        width: 45%;
        height: 20%;
    }

    .statistics-referrals div p {
        margin-top: 30px;
    }

    .statistics-referrals div h1 {
        margin-bottom: 20px;
        margin-top: 5px;
    }

    .best-sponsors {
        width: 100%;
    }

    .sponsor-person img {
        margin-left: 20px;
    }

    .sponsor-person {
        padding-top: 20px;
    }

    .sponsor-person p {
        margin: 0px;
        margin-left: 63.5px;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .sponsor-person .sponsor-name p {
        margin: 0px;
        margin-left: 30px;
        font-weight: 700;
    }

    .sponsor-name {
        margin-right: 100px;
    }

    .validated-referrals {
        margin-right: 15px;
    }

    .available-points {
        margin-left: 0px;
        margin-top: 0px !important;
    }

    .rewards-container {
        background-color: var(--light-black);
    }

    .usecode {
        justify-content: center;
    }

    .available,
    .unavailable {
        margin-right: 0px !important;
        display: block;
    }

    .usecode p {
        display: block;
        width: 100%;
        text-align: center;
    }

    .code-xxx {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .profile h2 {
        font-size: 20px;
    }

    .btnSubmitProofContainer {
        margin-left: 0;
    }

    .sponsor-ranking-rank {
        flex-basis: 100%;
        width: 100%;
    }

    .sponsor-ranking {
        margin-top: 40px;
    }
}

.radialgradientphone {
    background: rgb(29, 32, 41);
    background: linear-gradient(90deg, rgba(29, 32, 41, 1) 0%, rgba(51, 39, 81, 1) 50%, rgba(29, 32, 41, 1) 100%);
    height: 100%;
}

.titleconnectionsponsor-ranking {
    padding: 0px 80px !important;
}

.mission-informations {
    max-width: 550px;
    margin-bottom: 20px;
}

@media (min-width:1200px) {
    .header-device {
        display: none;
    }
}

@media (min-width:768px) and (max-width:1200px) {
    .header-logo img {
        margin: 0px;
    }

    .sponsor-ranking-rank {
        margin-bottom: 30px;
    }

    .sponsor-ranking p {
        max-width: 150px;
    }

    .sponsorship-invitation h1 {
        font-size: 30px;
    }

    .mission-informations {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .best-sponsors {
        width: 100%;
    }

    .available-points {
        margin-left: 0px;
        margin-top: 0px !important;
    }
}

@media (min-width:768px) {
    .title-none {
        display: none;
    }

    .radialgradientphone {
        background: unset;
    }
}

@media (max-width:1200px) {
    .dashboard nav {
        display: none;
    }

    .dashboard {
        width: 100vw;
    }
}

.input_copy-link {
    position: relative;
}

.input_copy-link img {
    position: absolute;
    top: 17%;
    right: 41%;
    height: 25px;
    width: 25px;
}

@media (max-width:1200px) {
    .input_copy-link img {
        display: none;
    }
}

/* === MAIN === */

body {
    position: relative;
}

.confirmation-mission {
    display: flex;
    position: absolute;
    z-index: 1;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.4);
    overflow-y: hidden;
    position: fixed
}

.token-purple {
    height: 30px !important;
    width: 30px !important;
}

.confirmation-mission-container {
    background-color: var(--primaryBackground);
    height: 300px;
    border-radius: 10px;
    margin: auto;
    box-shadow: 5px 5px 1px 0px var(--primary);
    flex-basis: 90% !important;
}

.fermer-confirmation {
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

.confirmation-mission img {
    height: 20px;
    width: 20px;
}

.confirmation-mission h2 {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 20px;
}

#confirmProductName,
.confirmation-mission h3,
.confirmation-mission h3 span {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    margin-left: 20px;
    margin-top: -3px;
}
#confirmProductNameH{
    color: #fff;
    
}
.confirmation-mission p {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: 50px;
}

.confirmation-mission button {
    margin: auto;
    padding-top: 0px;
}

/*  === FOOTER === */

/*  === MISE EN PAGE DIVERS === */

.align-items--center {
    align-items: center;
}

.justify-content--center {
    justify-content: center;
}

.marginauto {
    margin: auto
}

.transform-upp {
    text-transform: uppercase;
}

.ml-53 {
    margin-left: 53.5px;
}

.height35 {
    max-height: 35px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mr-30 {
    margin-right: 30px !important;
    margin-bottom: 24px;
}

.mr-70 {
    margin-right: 70px !important;
}

.pb-50 {
    padding-bottom: 50px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mt-60 {
    margin-top: 60px;
}

.ml-20 {
    margin-left: 20px !important;
}

.width60 {
    width: 60% !important;
}

@media (max-width:768px) {
    .width60 {
        width: 100% !important;
    }

    .mr-30 {
        margin-right: 0px !important;
    }

    .mt-60 {
        margin-top: 30px !important;
    }
}



/************** RESPONSIVE ************/

@media (min-width : 360px) and (max-width : 930px) {
    .container-bienvenu-parrainages {
        flex-direction: column;
    }

    .container-parrainages {
        margin-left: 0;
        text-align: center;
        margin-top: 40px;
    }

    .container-recompense-mission {
        flex-direction: column;
    }

    .container-mission {
        margin-top: 40px;
    }

    .container-recompense {
        margin-right: 0;
    }

    .container-card {
        margin-bottom: 0px !important;
    }

    .img-gift-card {
        border-radius: 10px;
        max-height: 80px;
    }

    .container-gift-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .container-card-mission {
        flex-direction: column;
    }

    .card-mission {
        margin-bottom: 20px;
        width: 100%;
    }

    .container-card {
        flex-direction: column;
    }

    #mission-card-down {
        margin-top: 0 !important;
    }

    .container-btn {
        flex-direction: column;
        align-items: center;
    }

    .btn-secondary {
        width: 100%;
        margin-bottom: 20px;
    }

    .myNav {
        width: 100% !important;
    }

    .img-content {
        display: none;
    }

    .txt-accordeon {
        line-height: 1.8;
    }

    .container-li {
        width: 80% !important;
        padding: 16px;
    }

    #signinForm {
        margin-left: 0 !important;
        border-right: 0 !important;
        padding-right: 0 !important;
    }

    #form-connexion {
        margin-left: 0 !important;
        padding-right: 0 !important;
    }

    .company-content {
        width: 100% !important;
    }

    .container-connexion-content {
        margin-bottom: 40px;
    }

    .h1-login {
        font-size: 30px;
    }

    .container-connexion-content {
        margin-top: 40px;
    }

    .new-account {
        margin-bottom: 64px;
    }

    textarea {
        width: 100%;
    }

    .newconnexion {
        max-width: 270px;
        align-items: center;
        justify-content: center;
    }

    #signupBtn {
        margin-left: 0;
    }

    .myNav-link {
        display: none !important;
    }

    .container-content-faq {
        border: 3px solid var(--primary);
        margin-top: 0;
    }

    .h1-contact {
        display: none;
    }

    .container-input-connexion {
        margin-top: 40px;
    }

}

@media (min-width : 360px) and (max-width : 1200px) {
    .display-mob {
        display: none;
    }
}

@media (min-width : 1200px) {
    .display-desk {
        display: none;
    }
}



/*********** CSS ACCORDEON **********/

.myNav {
    width: 65%;
    margin: auto;
    margin-top: 24px;
    padding: 12px;
}

.myNav-item {
    height: 353px;
}

.myNav-item-active {
    display: block;
}

.myNav-link {
    display: flex;
    align-items: center;
    background: var(--backgroundColor);
    padding: 24px;
    border-radius: 10px 10px 0 0;
    border: 2px solid var(--backgroundColor);
    box-shadow: 0px -2px 15px rgba(0, 0, 0, 0.10);
}

.txt-accordeon {
    color: var(--primary) !important;
    font-weight: bold;
}

.myNav-content {
    padding: 0 20px;
    padding-bottom: 8px;
}

.ui-accordion-content {
    display: none;
}

.active-desk>.ui-accordion-content {
    display: block;
    border-radius: 0px 0px 5px 5px;
    background-color: #f7f7f7;
    padding: 0 16px 16px 16px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
}

.ui-accordion-content li {
    padding: 24px;
}

ul,
li {
    list-style: none;
}

.container-content-accordeon {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    border-bottom: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    padding: 0;
    height: 336px;
}

.container-content-faq {
    width: 100%;
    height: 352px;
    padding: 0;
    display: flex;
    padding: 8px;
    align-items: center;
    border-right: 3px solid var(#f9f7f6);
    border-left: 3px solid var(#f9f7f6);
    border-bottom: 3px solid var(#f9f7f6);
    border-radius: 0 0 10px 10px;
}

.container-li {
    margin-left: 40px;
    width: 400px;
    margin: auto;
    font-size: 13px;
}

.img-content-faq {
    width: auto;
    margin-right: 10%;
    height: 65%;
    max-height: 220px;
}

.number-accordeon {
    padding: 8px 8px 8px 8px;
    border-radius: 50px;
    background-color: #f0d057;;
    margin-right: 24px;
    color: var(--primary);
    max-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
}

.nav-faq .number-accordeon {
    min-width: 40px;
}

.faq {
    display: flex;
    justify-content: flex-start;
}

.container-nav-faq {
    margin-top: 35px;
    width: 35%;
    height: fit-content;
    box-shadow: 0px 0px 20px #0000000D;
    border-radius: 10px;
}

.nav-faq {
    display: flex;
    flex-direction: column;
    margin-left: -15px;
    margin: 0;
    padding: 0;
}

.li-nav-faq {
    margin-top: 8px;
    margin-bottom: 8px;
    line-height: 1.5;
    opacity: 0.25;
    border-left: 4px solid transparent;
    padding: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.li-nav-faq-active {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 8px;
    margin-bottom: 8px;
    line-height: 1.5;
    opacity: 1;
    border-left: 4px solid var(--primary);
}

.li-nav-faq a {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.li-nav-faq-active a {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

/************ MISE EN FORME WIDGET ********/


.container-fluid {
    padding: 0;
}

th {
    padding: 4px 8px;
    color: #fff;
    font-size: 14px;
}

td {
    font-size: 15px;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 110px;
}

tr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thead-dark {
    background-color: #818181;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    margin-bottom: 16px;
}

.table-hover {
    display: flex;
    flex-direction: column;
}

.referralContactRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}