/*  MOBILE     */
.nav-mobile {
    display: none;
}
.mobile-wrapper {
    display: none;
}
div.header-mobile {
    display: none;
    height: auto;
    position: relative;
    z-index: 100;
}

div.header-desktop {
    margin-top: 0;
    position: relative;
    width: 100%;
    background: #FFF;
    padding: 10px 0 15px;
    z-index: 100;
}

    header .container {
        position: relative;
        display: flex; display: -webkit-flex; 
        flex-flow: row wrap; -webkit-flex-flow: row wrap;
        justify-content: flex-start; -webkit-justify-content: flex-start;
    }
        header .logo-wrapper {
            margin: auto 0;
            margin-left: 5px;
        }
            header .logo-wrapper img {
                width: 180px;
            }
        header .nav-main {
            margin: auto;
            list-style: none;
            position: relative;
        }
            .menubar-navigation {
                display: flex; display: -webkit-flex; 
                flex-flow: row wrap; -webkit-flex-flow: row wrap;
                justify-content: center; -webkit-justify-content: center;
                position: relative;
                list-style: none;
                margin: 0;
                padding: 0px;
            }        
            header .nav-main li {
                position: relative;
            }
            header .nav-main .link-a {
                padding: 0 5px;
                margin: 0 5px;
                height: 27px;
                line-height: 27px;
                font-size: 15px;
                color: #333333;
                text-align: center;
                font-weight: 500;
                display: block;
                position: relative;
            }
                header .nav-main .link-a:before {
                  content: "";
                  position: absolute;
                  width: 0;
                  height: 2px;
                  bottom: 0;
                  left: 0;
                  background-color: #333;
                  visibility: hidden;
                  transition: all 0.3s ease-in-out;
                }
                header .nav-main .link-a:hover:before {
                  visibility: visible;
                  width: 100%;
                }
                header .nav-main .link-a.is-active:before {
                  visibility: visible;
                  width: 100%;
                  background-color: #FECC00;
                }


        header .nav-shortcuts {
            margin: auto 0;
            margin-left: auto;
            display: flex; display: -webkit-flex; 
            flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
            justify-content: flex-end; -webkit-justify-content: flex-end;
            list-style: none;
        }
            header .nav-shortcuts a.shop {
                padding: 0 20px;
                height: 27px;
                line-height: 27px;
                font-size: 15px;
                color: #333333;
                text-align: center;
                font-weight: 500;
                background: #fccc06;
                border-radius: 13px;
                display: block;
                margin: 0;
                margin-right: 15px;
            }

            header .nav-shortcuts a.lang {
                display: block;
                opacity: 0.9;
                color: #333333;
                height: 27px;
                line-height: 27px;
                font-size: 15px;
            }
                header .nav-shortcuts a.lang.is-active {
                    opacity: 1.0;
                    font-weight: bold;
                }
            .nav-shortcuts span {
                display: block;
                color: #333333;
                height: 27px;
                line-height: 27px;
                font-size: 15px;
                padding: 0 3px;
            }


    .link-wsub:hover > .sublink-wrapper, .link-a:focus > .sublink-wrapper {
        display: block;
    }
    li.link-wsub:has(> .link-a:focus) > .sublink-wrapper {
        display: block;
    }


    /* LE SOUS MENU    */
    header .sublink-wrapper {
        display: none;
        position:absolute; 
        top: 27px;
        left: -20px;
        width: 180px;
        z-index: 3000;
        padding: 12px;
        background: #F0EFEF;
        border-radius: 8px;
        list-style: none;
        margin: 0;
    }

            /*  SUB LEVEL 1 */
            header .sub-link1 {
                width: 100%;
                display: block;
                color: #333;
                padding: 7px 4px;
                font-size: 14px;
                line-height: 1.1;
                position: relative;
            }
                header .sub-link1:before {
                  content: "";
                  position: absolute;
                  width: 0;
                  height: 2px;
                  bottom: 0;
                  left: 0;
                  background-color: #bfbfbf;
                  visibility: hidden;
                  transition: all 0.3s ease-in-out;
                }
                header .sub-link1:hover:before {
                  visibility: visible;
                  width: 100%;
                }

.sitemap-wrap {
    background: #f0efef;
    border-radius: 10px;
    padding: 35px;
    margin: 15px 0;
}
.sitemap {
    list-style: none;
    width: 80%;
}
    .sitemap li.level1 {
        width: 100%;
        margin: 10px 0 10px;
    }
    .sitemap li .link-a {
        display: block;
        font-weight: 600;
        font-size: 18px;
        text-transform: none;
        color: #000;
        line-height: 1.0;
    }
    .sitemap li .sub-link1 {
        display: block;
        color: #333;
        margin: 5px;
        font-size: 14px;
        text-transform: none;
        font-weight: 500;
    }    

.submenu {
    list-style: none;
    width: 80%;
}

.navbar {
    width: 100%;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 7px;
}
ul.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
}
ul.navbar-nav li {
    padding: 0;
    margin: 0;
}
ul.navbar-nav li a {
    padding: 0 5px;
    margin: 0 5px;
    height: 20px;
    line-height: 20px;
    font-size: 13px;
    color: #333333;
    text-align: center;
    font-weight: 500;
    display: block;
    position: relative;
}
a:focus {
    outline: 3px solid #000;
}