/* --------------------- 
          HEADER 
------------------------*/
#page-container {
    padding-top:0 !important;
}
.mobiho-header {
    border:2px solid red;
}

.mobiho-header__top {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.mobiho-header__banner {
    background-color: #84A98D;
    padding: 10px 20px;
    width: fit-content;

    & p {
        color: white;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-align: center;
    }
}

.logo-header {
  width: 250px;
  height: auto;
}


.wrapp-logo-account {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* pousse les liens à droite */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ---------------------
   LOGO CENTRÉ
---------------------- */

.box-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-header {
    width: 220px;
    height: auto;
    display: block;
}

/* ---------------------
   LIENS COMPTE
---------------------- */

.box-account {
    color: #26494F;
}

.ul-account-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Liens */
.account-link {
    color: #26494F;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

/* Séparateur propre */
.ul-account-links li + li::before {
    content: "|";
    margin: 0 5px;
    color: #26494F;
    font-weight: 600;
}



/* --------------------- 
        RESPONSIVE 
------------------------*/
@media (max-width: 980px) {
  .logo-header {
    width: 200px;
  }
}