/* =========================================
   BANDEAU SUPERIEUR HEADER
   ========================================= */

.mc-topbar {
    display: flex;
    width: 100%;
    min-height: 40px;

    margin: 0;
    padding: 0;

    background: #1390E6;
}

.mc-topbar-item {
    display: flex;
    flex: 1 1 33.333%;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-width: 0;

    padding: 3px 10px 4px;

    color: #fff !important;
    text-decoration: none !important;
    text-align: center;

    background: #1390E6;
}

.mc-topbar-title {
    display: block;

    margin: 0;
    padding: 0;

    color: #fff;

    font-size: 16px;
    line-height: 17px;
    font-weight: 700;
}

.mc-topbar-subtitle {
    display: block;

    margin: 0;
    padding: 0;

    color: #fff;

    font-size: 10px;
    line-height: 11px;
    font-weight: 400;
    font-style: italic;
}

.mc-topbar-item:hover,
.mc-topbar-item:focus {
    color: #fff !important;
    text-decoration: none !important;
    background: #1390E6;
}


/* Enlève les espaces éventuels autour du hook displayBanner */
.header-banner {
    margin: 0 !important;
    padding: 0 !important;
}

.header-banner .container {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* MOBILE */
@media (max-width: 767px) {

    .mc-topbar {
        min-height: 36px;
    }

    .mc-topbar-item {
        padding: 4px 2px;
    }

    .mc-topbar-title {
        font-size: 10px;
        line-height: 11px;
    }

    .mc-topbar-subtitle {
        display: none;
    }
}
/* ==================================================
   H1 ENTRE LE HEADER ET LE MEGAMENU
   ================================================== */

.mc-header-title {
    width: 100%;
    margin: 0;
    padding: 4px 20px 8px;

    background: #fff;

    text-align: center;
}

.mc-header-title h1 {
    margin: 0;
    padding: 0;

    color: #777;

    font-size: 20px;
    line-height: 28px;
    font-weight: 400;

    text-align: center;
}

@media (max-width: 991px) {
    .mc-header-title {
        padding: 8px 15px;
    }

    .mc-header-title h1 {
        font-size: 16px;
        line-height: 22px;
    }
}

/* ==========================================================
   TELEPHONE SOUS LE BANDEAU - MOBILE UNIQUEMENT
   ========================================================== */

.mc-mobile-phone {
    display: none;
}

@media (max-width: 991px) {

    .mc-mobile-phone {
        display: block !important;
        width: 100%;
        background: #fff;
        text-align: center;
        border-bottom: 1px solid #1390E6;
		margin-bottom: 6px;
    }

    .mc-mobile-phone a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        width: 100%;
        padding: 6px 10px;

        color: #1390E6 !important;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none !important;

        transition: color 0.2s ease;
    }

    /* Icône téléphone bleue */
    .mc-mobile-phone .material-icons {
        font-size: 19px;
        line-height: 1;
        color: #1390E6 !important;

        transition: color 0.2s ease;
    }

    /* Numéro + téléphone rouges au survol */
    .mc-mobile-phone a:hover,
    .mc-mobile-phone a:focus {
        color: #ff1616 !important;
        text-decoration: none !important;
    }

    .mc-mobile-phone a:hover .material-icons,
    .mc-mobile-phone a:focus .material-icons {
        color: #ff1616 !important;
    }
}