/*
Theme Name: Crac Europe
Author: Yohann HOFLACK
Description: Thème principal conçu pour le site CRAC EUROPE, fonctionne avec le plugin Crac Europe.
Version: 2.5
*/
/* Import Google Fonts Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

@font-face {
    font-family: 'Rubik Dirt';
    src: url('medias/RubikDirt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.coin-round {
    border-radius: 20px;

}

body {
    margin: 0;
    padding: 0;
    background-color: #111;
    font-family: 'Nunito', 'Montserrat', Arial, Helvetica, sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(17,17,17,0.98) 0%, rgba(17,17,17,0.75) 18%, rgba(17,17,17,0.0) 82%, rgba(17,17,17,0.98) 100%),
        url('medias/bg.jpg') center top no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
    background-position: center top;
    filter: blur(3px); /* <--- Valeur pour le flou d'arrière plan */
    z-index: -1;
}
@media (max-width: 1590px) {
    body::before {
        background-size: cover;
    }
}
a {
    color: #d43e43;
    text-decoration: none;
}

.header-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 18px 40px;
    height: 150px;
    box-sizing: border-box;
}

/* Barre de navigation sticky après le header */
.main-navbar {
    background: #696969;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0 40px;
    box-sizing: border-box;
    margin-top: 0;
}

.site-content {
    margin-top: 20px; /* Réduit l'espace entre le header et le main content */
    margin-bottom: 60px;
}

.header-bar-left {
    display: flex;
    align-items: center;
    min-width: 0;
    position: relative;
}
.header-logo {
    height: 160px;
    margin-right: 22px;
}
.header-title-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-family: 'Rubik Dirt', Arial, Helvetica, sans-serif;
    min-width: 0;
    width: 100%;
}
.header-text {
    font-size: clamp(1em, 4vw, 2.35em);
    font-weight: 500;
    white-space: nowrap;
}
.header-text-rouge{
    color: #d43e43;
}
.header-text-since {
    font-size: 25px;
    font-weight: 500;
    font-style: italic;
    white-space: nowrap;
    color: #d43e43;
}

.header-bar-left > *:not(.header-separator-img-container) {
    position: relative;
    z-index: 1;
}

.header-bar-right {
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.header-btn {
    margin-right: 16px;
    background: #d43e43;
    color: #fff;
    border: none;
    padding: 7px 10px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-btn:hover {
    background: #580101;
}
.header-btn-icon {
    height: 32px;
    width: 32px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}
.nl-embed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.nl-popup {
    background: #ff7272;
    max-width: 400px;
    margin: 40px auto;
    padding: 30px 20px 20px 20px;
    border-radius: 8px;
    position: relative;
}

.nl-fermer {
    position: absolute;
    top: -10px;
    right: 10px;
    cursor: pointer;
    font-size: 54px;
}

.nl-logo {
    text-align: center;
}

.nl-champ-group {
    margin-bottom: 20px;
}

.nl-champ-input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}
.nl-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.nl-button {
    padding: 8px 20px;
    background: #d8d3d3;
    color: #580101;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
}

.nl-button:hover {
    color: #fff;
    background: #580101;
}

/* @media (min-height: 1045px) {
  .nl-popup-classes,
  .nl-popup-classes * {
    font-size: 1.25em !important;
    line-height: 1.5 !important;
  }
} */

.header-social {
    margin-left: 16px;
}
.header-social img {
    height: 36px;
    width: 36px;
    vertical-align: middle;
}

.header-search-form {
    display: flex;
    align-items: center;
    margin-left: 18px;
    background: #222;
    border-radius: 20px;
    padding: 2px 8px 2px 12px;
    height: 38px;
    width: auto;
}

.header-search-input {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1em;
    outline: none;
    flex: 1;
    width: auto;
    min-width: 0;
    padding: 4px 0;
}

.header-search-btn {
    background: none;
    border: none;
    color: #d43e43;
    font-size: 1.3em;
    cursor: pointer;
    padding: 0 4px;
    outline: none;
    transition: color 0.2s;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
}

.nav-bar {
    background: #e5e5e5;
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
    padding: 0 40px;
    box-sizing: border-box;
    margin-top: 150px;
}

.main-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: auto;
    position: relative;
    justify-content: center;
}

.main-menu li {
    position: relative;
    display: flex;
    align-items: center;
}


.main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 12px 16px;
    transition: color 0.2s;
    font-family: 'Montserrat', Arial;
    display: block;
}

.main-menu a:hover,
.main-menu .current-menu-item > a {
    background: #d43e43;
    color: #fff;
}

/* Sous-menu déroulant */
.main-menu .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #c0c0c0;
    min-width: 260px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 0 0 6px 6px;
    z-index: 1001;
    padding: 0;
    margin: 0;
}

.main-menu li:hover > .sub-menu,
.main-menu li:focus-within > .sub-menu {
    display: block;
}

.main-menu .sub-menu li {
    width: 100%;
}

.main-menu .sub-menu a {
    font-size: 0.98em;
    padding: 10px 18px 10px 32px;
    color: #222;
    background: none;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.main-menu .sub-menu a::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #913636;
    border-radius: 2px;
    margin-right: 12px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s;
}
.main-menu .sub-menu a:hover::before {
    background: #d43e43;
}
.main-menu .sub-menu a:hover {
    background: #444;
    color: #fff;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 12px;
    padding: 0;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}



html.no-scroll,
body.no-scroll {
    overflow: hidden;
}

.footer-block {
    background: #4e4e4e;
    padding: 40px 0 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-block-content {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 600px;
    width: 100%;
}

.footer-block-img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 10%;
    background: #fff;
}

.footer-block-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.footer-block-text {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 16px;
    color: #222;
}

.footer-text-hommage {
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-block-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 18px;
}

.footer-btn {
    background: #d43e43;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 7px 18px;
    font-size: 0.98em;
    cursor: pointer;
    transition: background 0.2s;
}
.footer-btn:hover {
    background: #580101;
}

.main-content-rounded {
    background: #dbd7d0;
    border-radius: 32px;
    margin: 20px auto;
    margin-top: 60px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    min-height: 300px;
    /* VVV Pour gérer la largeur de l'élément */
    width: 60vw;
    max-width: 100%;
    font-size: clamp(1.1em, 0.5vw, 1.5em);
}

#toggle-fullwidth-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 3000;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
}
#toggle-fullwidth-btn:hover {
    background: #d43e43;
    box-shadow: 0 4px 24px rgba(212,62,67,0.18);
}
#toggle-fullwidth-btn img {
    width: 36px;
    height: 36px;
    display: block;
    pointer-events: none;
}

.main-content-rounded.fullwidth {
    width: 90% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-radius: 23px 32px 32px 32px;
    transition: width 0.3s, max-width 0.3s, border-radius 0.3s, margin 0.3s, padding 0.3s;
}

/* Fonction agrandissement Loupe */
.main-content-rounded.fullwidth,
.main-content-rounded.fullwidth * {
    font-size: 25px !important;
}

@media (max-width: 1500px) {
    .main-content-rounded {
        width: 90%;
        max-width: 1028px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 1090px) {
    .main-content-rounded {
        max-width: none;
    }
    #toggle-fullwidth-btn {
        display: none;
    }
    #scroll-to-top-btn {
        bottom: 32px !important;
    }
}


@media (max-width: 600px) {
    .footer-block-content {
        flex-direction: column;
        gap: 18px;
        max-width: 95vw;
    }
    .footer-block-text {
        font-size: 1em;
    }
}

.main-content-rounded,
.entry-content,
.post,
article {
    font-family: 'Nunito', 'Montserrat', Arial, Helvetica, sans-serif !important;
}

.main-content-rounded h1,
.main-content-rounded .post-title {
    text-align: center;
}

.no-page-title .main-content-rounded h1,
.no-page-title .main-content-rounded .post-title {
    display: none !important;
}

[id] {
    scroll-margin-top: 70px;
}

#scroll-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 36px;
    z-index: 3100;
    background: #2176ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    box-shadow: 0 2px 12px rgba(33,118,255,0.18);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    opacity: 0.85;
}
#scroll-to-top-btn:hover {
    background: #d43e43;
    color: #fff;
    opacity: 1;
}

.bnrinfo {
    width: auto;
    max-width: none;
    margin: 10px 0 20px;
    padding: 0;
}
.bnrinfo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}
.bnrinfo-item {
    display: flex;
    gap: 12px;
    background: #bde2fd;
    color: #054172;
    border-radius: 12px;
    padding: 12px 14px;
    border: 3px solid #2271b1;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    position: relative;
    width: fit-content;
    max-width: 100%;
    align-items: flex-start;
}
.bnrinfo-close {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    margin-top: -2px;
    line-height: 30px;
    text-align: center;
    background: transparent;
    border: none;
    color: rgba(0,0,0,0.55);
    font-size: 40px;
    cursor: pointer;
    border-radius: 4px;
}
.bnrinfo-close:hover,
.bnrinfo-close:focus {
    color: rgba(0,0,0,0.85);
    background: rgba(0,0,0,0.06);
    outline: none;
}
.bnrinfo-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f1;
    border: 1px solid #e2e4e7;
}
.bnrinfo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bnrinfo-body {
    flex: 1;
    min-width: 0;
}
.bnrinfo-title {
    margin: 0 0 6px;
    font-size: 1.05em;
    line-height: 1.3;
}
.bnrinfo-content {
    font-size: 0.98em;
    line-height: 1.5;
}
.bnrinfo-content p { margin: 0 0 6px; }

/* Variantes des bannières info par type */
.bnrinfo-type-info {
    border-color: #2271b1;
    background: #bde2fd;
    color: #054172;
}
.bnrinfo-type-warning {
    border-color: #dba617;
    background: #fff6d1;
    color: #7a5a00;
}
.bnrinfo-type-alert {
    border-color: #b32d2e;
    background: #ffd6d7;
    color: #7a1a1b;
}
.bnrinfo-type-success {
    border-color: #198754;
    background: #d0f5e8;
    color: #0b3f2e;
}

/* Réadaptation des dimension des écrans */
@media (max-width: 2030px) {
    .header-bar {
        height: 130px;
        padding: 18px 10px;
    }
    .header-logo {
        height: 150px;
    }
    .header-title-group {
        font-size: 13px;
    }
    .header-text-since {
        font-size: 20px;
    }
    .header-btn {
        font-size: 1em;
        padding: 6px 8px;
    }
    .header-social img {
        height: 28px;
        width: 28px;
    }
    .header-search-form {
        height: 32px;
    }
    .header-search-input {
        font-size: 15px;
        width: 100px;
    }
    .main-navbar {
        min-height: 32px;
        padding: 0 20px;
    }
    .main-menu a {
        padding: 8px 14px;
        font-size: 16px;
    }

}
/* =============================================== */
@media (max-width: 1604px) {
    .header-bar {
        height: 90px;
        padding: 18px 10px;
    }
    .header-logo {
        height: 100px;
    }
    .header-title-group {
        font-size: 10px;
    }
    .header-text-since {
        font-size: 18px;
    }
    .header-btn {
        font-size: 1em;
        padding: 6px 8px;
    }
    .header-social img {
        height: 28px;
        width: 28px;
    }
    .header-search-form {
        height: 32px;
    }
    .main-navbar {
        min-height: 32px;
        padding: 0 20px;
    }
    .main-menu a {
        padding: 8px 14px;
        font-size: 16px;
    }

}
/* =============================================== */
@media (max-width: 1440px) {
    .header-bar {
        height: 70px;
        padding: 18px 10px;
    }
    .header-logo {
        height: 70px;
        margin-right: 10px;
    }
    .header-title-group {
        font-size: 7px;
    }
    .header-text-since {
        font-size: 15px;
    }
    .header-btn {
        font-size: 10px;
        padding: 4px 7px;
        margin-right: 0px;
    }
    .header-btn-icon {
        height: 24px;
        width: 24px;
        margin-right: 4px;
    }
    .header-social {
        margin-left: 5px;
    }
    .header-social img {
        height: 25px;
        width: 25px;
    }
    .header-search-form {
        height: 28px;
    }
    .header-search-input {
        font-size: 10px;
        width: 80px;
    }
    .main-navbar {
        min-height: 32px;
        padding: 0 20px;
    }
    .main-menu a {
        padding: 8px 14px;
        font-size: 16px;
    }

}
/* =============================================== */
@media (max-width: 1070px) {
    .header-bar {
        height: 70px;
        padding: 18px 10px;
    }
    .header-logo {
        height: 70px;
        margin-right: 10px;
    }
    .header-title-group {
        font-size: 7px;
    }
    .header-text-since {
        font-size: 13px;
    }
    .header-btn {
        font-size: 10px;
        padding: 4px 7px;
        margin-right: 0px;
    }
    .header-btn-icon {
        height: 24px;
        width: 24px;
        margin-right: 4px;
    }
    .header-social {
        margin-left: 5px;
    }
    .header-social img {
        height: 25px;
        width: 25px;
    }
    .header-search-form {
        height: 28px;
    }
    .header-search-input {
        font-size: 10px;
        width: 100px;
    }
    .main-navbar {
        min-height: 30px;
        padding: 0 15px;
    }
    .main-menu a {
        padding: 8px 5px;
        font-size: 13px;
    }

}
/* =============================================== */
@media (max-width: 1024px) {
    .header-bar {
        height: 70px;
        padding: 18px 10px;
    }
    .header-logo {
        height: 70px;
        margin-right: 10px;
    }
    .header-title-group {
        font-size: 6px;
    }
    .header-text-since {
        font-size: 10px;
    }
    .header-btn {
        font-size: 8px;
        padding: 4px 7px;
        margin-right: 0px;
    }
    .header-btn-icon {
        height: 20px;
        width: 20px;
        margin-right: 4px;
    }
    .header-social {
        margin-left: 3px;
    }
    .header-social img {
        height: 20px;
        width: 20px;
    }
    .header-search-form {
        height: 28px;
    }
    .header-search-input {
        font-size: 10px;
        width: 100px;
    }
    .main-navbar {
        min-height: 30px;
        padding: 0 15px;
    }
    .main-menu a {
        padding: 8px 5px;
        font-size: 13px;
    }

}
/* =============================================== */
@media (max-width: 900px) {
    .bnrinfo {
        width: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .bnrinfo-list {
        max-width: 1028px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .main-navbar {
        display: none;
    }
    
    .main-navbar.open {
        display: block;
        z-index: 3000;
    }

    .main-navbar.open {
      background: transparent !important;
      position: static !important;
      min-height: 0 !important;
      height: 0 !important;
      padding: 0 !important;
      box-shadow: none !important;
    }

    html.no-scroll .nav-bar {
      display: none !important;
    }
    .header-logo {
        height: 70px;
    }
    .header-bar {
        height: 100px;
        padding: 8px 10px;
    }
    .header-btn {
        font-size: 0px;
        padding: 4px 7px;
        margin-right: 0px;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .site-content {
        margin-top: 114px;
    }
    .nav-bar {
        padding: 0 8px;
        margin-top: 70px;
    }
    .main-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #696969;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        min-width: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        z-index: 2000;
    }
    .main-navbar.open .main-menu,
    .main-navbar .main-menu.open {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    
    .main-menu li {
        width: 100%;
        display: block;
    }
    .main-menu a {
        display: block;
        text-align: left;
        padding: 12px 16px;
    }

    .main-menu .sub-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        background: #5a5a5a;
        margin: 0;
        padding: 0;
        display: none;
    }
    .main-menu li:hover > .sub-menu,
    .main-menu li:focus-within > .sub-menu {
        display: block;
    }
    .main-menu .sub-menu a {
        padding: 10px 16px 10px 42px;
        color: #fff;
    }
    .main-navbar.open .main-menu .sub-menu {
      display: block !important;
    }
    
    .header-bar-right .header-social { display: none !important; }
  .main-navbar.open .mobile-menu-header {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 64px;
    background: #696969;
    z-index: 3100;
    padding: 0 12px;
    box-shadow: 2px 0 12px rgba(0,0,0,0.25);
    border-radius: 0 0 12px 0;
  }
  .main-navbar.open .main-menu {
    margin-top: 0;
    position: fixed;
    top: 64px;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: calc(100vh - 64px);
    overflow-y: auto;
    background: #696969;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    box-shadow: 2px 0 12px rgba(0,0,0,0.25);
    z-index: 3001;
  }
    #primary-menu > li.mobile-socials {
        list-style: none;
        margin: 8px 0 12px 0;
        padding: 10px 12px;
        border-top: 1px solid #808080;
        background: #696969;
    }
    #primary-menu > li.mobile-socials .mobile-socials-row {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        row-gap: 12px;
    }
    #primary-menu > li.mobile-socials .header-social {
        display: inline-flex !important;
        margin: 0;
        flex: 0 0 auto;
    }
    #primary-menu > li.mobile-socials .header-social img { width: 38px; height: 38px; }
  .mobile-menu-close {
    background: red;
    border: none;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
    transition: color 0.2s;
    border-radius: 15px;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    color: #ffa2a2;
    outline: none;
  }

  #primary-menu > li.mobile-actions {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 10px 12px 0 12px;
    border-top: 1px solid #808080;
    background: #696969;
  }
  #primary-menu > li.mobile-actions .mobile-actions-row {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 12px;
  }
  #primary-menu > li.mobile-actions > a,
  #primary-menu > li.mobile-actions > a:hover,
  #primary-menu > li.mobile-actions > a:focus {
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    background: transparent !important;
    color: inherit;
    border: 0;
    text-decoration: none;
  }
  #primary-menu > li.mobile-actions .header-btn {
    margin: 0;
  }

  #primary-menu > li.mobile-search {
    list-style: none;
    margin: 0 0 8px 0;
    padding: 10px 12px;
    background: #696969;
    border-bottom: 1px solid #808080;
  }
  #primary-menu > li.mobile-search .mobile-search-row {
    display: block;
    width: 100%;
  }
  #primary-menu > li.mobile-search .header-search-form {
    width: 85%;
    margin: 0;
  }
  #primary-menu > li.mobile-search .header-search-input {
    width: 100%;
  }
  #primary-menu > li.mobile-search .header-search-btn {
    font-size: 1.4em;
  }
}
/* =============================================== */
@media (max-width: 720px) {
    .mobile-actions-row {
        justify-content: center;
    }
    .header-btn {
        font-size: 18px;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 80%;
    }
    .header-btn-a {
        width: 500px;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
/* =============================================== */
@media (max-width: 680px) {
    .header-title-group {
        display: none;
    }
    .header-bar-left {
        justify-content: center;
        width: 100%;
    }
    .header-logo {
        /* mettre le logo au centre du header */
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 100px;
    }
}
@media (max-width: 700px) {
    .bnrinfo {
        width: auto;
        margin: 12px 0;
        padding-left: 0;
        padding-right: 0;
    }
    .bnrinfo-item { padding: 10px 12px; }
    .bnrinfo-thumb { flex-basis: 56px; width: 56px; height: 56px; }
}

/* Header mobile du menu hamburger */
@media (max-width: 768px) {

}