/* ==========================================================
   HEADER
========================================================== */

.b612-site-header {
    width: 100%;
    height: 120px;

    background: #06152d;

    position: relative;
    z-index: 1000;
}


/* ----------------------------------------------------------
   CONTENEUR DU HEADER
---------------------------------------------------------- */

.b612-site-header__inner {
    width: calc(
        100% -
        (var(--b612-container-gutter) * 2)
    );

    max-width: var(--b612-container-width);

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    position: relative;
}


/* ----------------------------------------------------------
   LOGO
---------------------------------------------------------- */

.b612-site-logo {
    display: flex;
    align-items: center;

    width: 200px;
    height: 90px;

    flex-shrink: 0;

    line-height: 0;

    position: relative;
    z-index: 2;
}


.b612-site-logo img {
    display: block;

    width: 120px;
    height: auto;

    transform: translateX(-20px);
}


/* ----------------------------------------------------------
   NAVIGATION
---------------------------------------------------------- */

.b612-site-nav {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 32px;

    white-space: nowrap;
}


.b612-site-nav a {
    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 1.05rem;
    font-weight: 500;

    line-height: 1;

    text-decoration: none;
    white-space: nowrap;
}


/* ----------------------------------------------------------
   MENU MON COMPTE
---------------------------------------------------------- */

.b612-site-account {

    display: flex;

    align-items: center;

    margin-left: auto;

    flex-shrink: 0;

    position: relative;

    height: 100%;
}

.b612-site-account a {
    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
    white-space: nowrap;
}


.b612-site-account-link {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #ffffff !important;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;
}


.b612-site-account-link
.b612-site-account-status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    flex-shrink: 0;
}


.b612-site-account-link
.b612-site-account-status-dot.is-connected {

    background: #38b86b;
}


.b612-site-account-link
.b612-site-account-status-dot.is-disconnected {

    background: #9b9b9b;
}


.b612-site-account-menu {

    position: absolute;

    top: 100%;

    right: 0;

    width: 220px;

    padding: 14px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 12px 30px
        rgba(6, 21, 45, 0.15);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-6px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    pointer-events: none;
}

.b612-site-account-menu::before {

    content: "";

    position: absolute;

    top: -8px;

    left: 0;

    right: 0;

    height: 8px;
}


.b612-site-account:hover
.b612-site-account-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

    pointer-events: auto;
}


.b612-site-account-menu a {

    display: block;

    padding: 10px 12px;

    color: #06152d;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.3;

    text-decoration: none;

    border-radius: 8px;
}


.b612-site-account-menu a:hover {

    background: #f5f2e9;
}


.b612-site-account-status {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    padding:
        12px
        12px
        4px;

    border-top:
        1px solid
        #e5e5e5;

    color: #59677a;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 500;
}


.b612-site-account-status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    flex-shrink: 0;
}


.b612-site-account-status-dot.is-connected {

    background: #38b86b;
}


.b612-site-account-status-dot.is-disconnected {

    background: #9b9b9b;
}


/* ==========================================================
   DESKTOP
========================================================== */

@media (min-width: 1200px) {

}


/* ==========================================================
   TABLETTE
========================================================== */

@media (min-width: 768px) and (max-width: 1199px) {

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .b612-site-header {

        height: 90px;
    }


    .b612-site-header__inner {

        width:
            calc(100% - 40px);
    }


    .b612-site-nav {

        display: none;
    }


    .b612-site-logo {

        width: auto;

        height: 70px;
    }


    .b612-site-logo img {

        width: 100px;
    }

}
