.lcb-header {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
}

.lcb-header a {
    color: #282828;
    text-decoration: none
}

.lcb-header a:hover {
    text-decoration: none
}

.lcb-header__container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap
}

@media (max-width:900px) {
    .lcb-header__container {
        justify-content: flex-start;
        align-items: stretch
    }
}

.lcb-header__user {
    margin: 1.75rem .5rem 0 .5rem;
    position: relative;
    padding: .5rem 0
}

@media (max-width:1200px) {
    .lcb-header__user {
        margin-top: auto;
        margin-bottom: auto
    }
}

@media (max-width:900px) {
    .lcb-header__user {
        order: 4;
        border-right: 1px solid #b6bbc2;
        padding: .5rem;
        margin: 0;
        display: flex;
        flex-grow: 1
    }
}

@media (max-width:500px) {
    .lcb-header__user {
        font-size: 35px;
        padding: .75rem 1rem;
        margin: 0;
        min-height: 74px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

@media (max-width:400px) {
    .lcb-header__user {
        font-size: 25px;
        padding: .5rem
    }
}

.lcb-header__user>i {
    display: none
}

@media (max-width:500px) {
    .lcb-header__user>i {
        display: block
    }
}

.lcb-header__user>span {
    font-weight: 700;
    cursor: pointer
}

@media (max-width:900px) {
    .lcb-header__user>span {
        margin: auto
    }
}

@media (max-width:500px) {
    .lcb-header__user>span {
        display: none
    }
}

.lcb-header__user>span::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #282828 transparent transparent transparent;
    display: inline-block;
    position: relative;
    top: -3px;
    margin-left: .25rem
}

.lcb-header__user__sub {
    display: none;
    position: absolute;
    border: 1.5px solid #b6bbc2;
    border-radius: 0 0 3px 3px;
    right: 0;
    top: 100%;
    z-index: 2
}

.lcb-header__user__sub>a {
    display: block;
    color: #495567;
    padding: .75rem;
    background-color: #fff;
    transition: background-color .5s cubic-bezier(.075, .82, .165, 1), color .5s cubic-bezier(.075, .82, .165, 1)
}

.lcb-header__user__sub>a:active,
.lcb-header__user__sub>a:focus,
.lcb-header__user__sub>a:hover {
    background-color: #041a71;
    color: #fff
}

.lcb-header__user:hover .lcb-header__user__sub {
    display: block
}

.lcb-header__logo {
    font-weight: 700;
    font-size: 11px;
    color: #495567;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: -31px;
    position: relative;
    margin-bottom: 0
}

@media (max-width:1025px) {
    .lcb-header__logo {
        margin-top: 0
    }
}

@media (max-width:900px) {
    .lcb-header__logo {
        order: 2;
        border-right: 1px solid #b6bbc2
    }
}

.lcb-header__logo>a {
    display: block;
    background-color: #fff;
    border-radius: 50%;
    width: 130px;
    padding: .65rem;
    box-sizing: content-box
}

@media (max-width:900px) {
    .lcb-header__logo>a {
        padding: 5px 1rem;
        height: 100px;
        box-sizing: border-box;
        width: auto
    }
}

@media (max-width:500px) {
    .lcb-header__logo>a {
        height: 75px
    }
}

.lcb-header__logo>a>img {
    transition: transform 1s cubic-bezier(.075, .82, .165, 1);
    width: 100%;
    display: block
}

@media (max-width:900px) {
    .lcb-header__logo>a>img {
        height: 100%;
        width: auto
    }
}

.lcb-header__logo>a:hover img {
    transform: rotateZ(-5deg)
}

.lcb-header__logo>span {
    text-align: left;
    margin-left: 1rem
}

@media (max-width:1200px) {
    .lcb-header__logo>span {
        margin-top: 2rem
    }
}

@media (max-width:900px) {
    .lcb-header__logo>span {
        display: none;
        margin-left: 0
    }
}

.lcb-header__logo>span strong {
    display: block;
    color: #041a71;
    font-size: 14px
}

.lcb-header__top-menu {
    background-color: #495567;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    list-style: none;
    margin-bottom: 0
}

@media (max-width:900px) {
    .lcb-header__top-menu {
        display: none
    }
}

.lcb-header__top-menu::before {
    content: "";
    position: absolute;
    background-color: #495567;
    height: 100%;
    width: 100vw;
    left: calc((-100vw + 80rem) / 2);
    top: 0;
    z-index: -1
}

@media (max-width:1280px) {
    .lcb-header__top-menu::before {
        content: none
    }
}

.lcb-header__top-menu>li {
    padding-right: 1rem;
    border-left: 1.5px solid rgba(255, 255, 255, .3);
    z-index: 10;
}

.lcb-header__top-menu>li.has-children {
    position: relative
}

.lcb-header__top-menu>li.has-children::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    display: inline-block;
    position: relative;
    top: -3px;
    margin-left: .25rem
}

.lcb-header__top-menu>li.has-children>.sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #fff;
    left: -1.5px;
    top: 100%;
    min-width: calc(100% + 3px);
    white-space: nowrap;
    z-index: 3;
    border: 1.5px solid #b6bbc2;
    border-top: none;
    border-radius: 0 0 3px 3px;
    transform: scaleY(0);
    transform-origin: top;
    padding-left: 0;
    transition: all .25s cubic-bezier(.075, .82, .165, 1)
}

.lcb-header__top-menu>li.has-children>.sub-menu>li>a {
    display: block;
    color: #495567;
    padding: .75rem;
    transition: background-color .5s cubic-bezier(.075, .82, .165, 1), color .5s cubic-bezier(.075, .82, .165, 1)
}

.lcb-header__top-menu>li.has-children>.sub-menu>li>a:active,
.lcb-header__top-menu>li.has-children>.sub-menu>li>a:focus,
.lcb-header__top-menu>li.has-children>.sub-menu>li>a:hover {
    background-color: #041a71;
    color: #fff
}

.lcb-header__top-menu>li.has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1)
}

.lcb-header__top-menu>li>a {
    color: #fff;
    padding: .5rem 0 .5rem 1rem;
    display: inline-block
}

.lcb-header__top-menu>li:hover {
    background-color: #677994
}

.lcb-header .visite>a {
    color: #ffda00;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
}

.lcb-header .visite>a::before {
    content: "";
    background: url(../img/visite-lcb.png);
    width: 15px;
    height: 15px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: .5rem
}

.lcb-header .lcb-header__top-menu .icon>a i {
    margin-right: .25rem
}

.lcb-header__search {
    display: flex;
    flex-direction: row;
    margin: 1.5rem .5rem 0 .5rem
}

@media (max-width:1200px) {
    .lcb-header__search {
        margin-top: auto;
        margin-bottom: auto
    }
}

@media (max-width:900px) {
    .lcb-header__search {
        order: 7;
        width: 100%;
        margin: 0;
        padding: .75rem;
        background-color: #fff;
        border-top: 1px solid #b6bbc2
    }
}

.lcb-header__search [type=search] {
    font-size: 13px;
    border: 1px solid #b6bbc2;
    padding: .65rem .75rem;
    min-width: 275px;
    color: #041a71;
    font-family: "Open Sans", sans-serif;
    background-color: #fff;
    font-weight: 700;
    border-radius: 0;
    transition: border-color .5s cubic-bezier(.075, .82, .165, 1)
}

@media (max-width:900px) {
    .lcb-header__search [type=search] {
        width: 100%
    }
}

@media (max-width:640px) {
    .lcb-header__search [type=search] {
        min-width: auto
    }
}

.lcb-header__search [type=search]::placeholder {
    font-weight: 700;
    font-style: italic;
    color: #b6bbc2;
    opacity: 1
}

.lcb-header__search [type=search]:focus {
    outline: 0;
    border-color: #041a71
}

.lcb-header__search [type=submit] {
    border: none;
    background-color: #ffda00;
    width: 50px;
    padding: 0;
    position: relative;
    border-radius: 0 !important;
    border-bottom: 1px solid #b6bbc2;
    -webkit-border-radius: 0;
    border-radius: 0
}

@media (max-width:900px) {
    .lcb-header__search [type=submit] {
        border-bottom: 0;
        background-color: #ffda00;
        border: 1px solid #b6bbc2;
        border-left: 0
    }
}

.lcb-header__search__submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-top: 1px solid #b6bbc2;
    background-color: #fff;
    position: relative
}

@media (max-width:900px) {
    .lcb-header__search__submit {
        border: none
    }
}

.lcb-header__search__submit>button:hover {
    background-color: #f0cd00;
    color: #b39900
}

.lcb-header__search__submit:hover::after {
    background-color: #f0cd00;
    color: #b39900
}

.lcb-header__search__submit::before {
    /*content: "\f002";*/
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    z-index: 2;
    font-size: 20px;
    top: 8px;
    left: 14px
}

.lcb-header__search__submit::after {
    content: "";
    background-color: #ffda00;
    height: 98%;
    width: 9.4px;
    display: inline-block;
    transform: skewX(-15deg) translateX(-5.2px);
    border-right: 1px solid #b6bbc2
}

@media (max-width:900px) {
    .lcb-header__search__submit::after {
        content: none
    }
}

.lcb-header__find {
    background-color: #ffda00;
    color: #282828;
    font-weight: 700;
    padding: .65rem;
    display: block;
    width: fit-content;
    border-radius: 4px;
    border: 2px solid #ffda00;
    margin: 1.5rem .5rem 0 .5rem;
    transition: background-color .5s cubic-bezier(.075, .82, .165, 1)
}

.lcb-header__find:active,
.lcb-header__find:focus,
.lcb-header__find:hover {
    background-color: #f0cd00
}

@media (max-width:1200px) {
    .lcb-header__find {
        margin-top: auto;
        margin-bottom: auto
    }
}

@media (max-width:900px) {
    .lcb-header__find {
        order: 3;
        background-color: transparent;
        border: none;
        font-size: 35px;
        padding: .75rem 1rem;
        margin: 0;
        min-height: 74px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #b6bbc2;
        border-radius: 0;
        flex-grow: 1
    }

    .lcb-header__find:active,
    .lcb-header__find:focus,
    .lcb-header__find:hover {
        background-color: transparent;
        color: #282828
    }
}

@media (max-width:400px) {
    .lcb-header__find {
        font-size: 25px;
        padding: .5rem;
        min-height: auto
    }
}

.lcb-header__find i {
    margin-right: 5px
}

@media (max-width:900px) {
    .lcb-header__find i {
        margin-right: 0
    }
}

@media (max-width:900px) {
    .lcb-header__find span {
        display: none
    }
}

.lcb-header__connect {
    background-color: transparent;
    border: 2px solid #041a71;
    color: #282828;
    padding: .65rem;
    font-weight: 700;
    display: block;
    width: fit-content;
    border-radius: 4px;
    margin: 1.5rem .5rem 0 .5rem;
    transition: background-color .5s cubic-bezier(.075, .82, .165, 1), color .5s cubic-bezier(.075, .82, .165, 1)
}

.lcb-header__connect:active,
.lcb-header__connect:focus,
.lcb-header__connect:hover {
    color: #fff;
    border-color: #041a71;
    background-color: #041a71
}

@media (max-width:1200px) {
    .lcb-header__connect {
        margin-top: auto;
        margin-bottom: auto
    }
}

@media (max-width:900px) {
    .lcb-header__connect {
        display: block;
        order: 4;
        background-color: transparent;
        border: none;
        font-size: 35px;
        padding: .75rem 1rem;
        margin: 0;
        min-height: 74px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #b6bbc2;
        border-radius: 0;
        flex-grow: 1
    }

    .lcb-header__connect:active,
    .lcb-header__connect:focus,
    .lcb-header__connect:hover {
        background-color: transparent;
        color: #282828;
        border-color: #b6bbc2
    }
}

@media (max-width:400px) {
    .lcb-header__connect {
        font-size: 25px;
        padding: .5rem
    }
}

.lcb-header__connect i {
    display: none
}

@media (max-width:900px) {
    .lcb-header__connect i {
        display: block
    }
}

@media (max-width:900px) {
    .lcb-header__connect span {
        display: none
    }
}

.lcb-header__wishlist {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    padding-top: 5px;
    font-weight: 600;
    margin: 1.5rem .75rem 0 .5rem
}

@media (max-width:1200px) {
    .lcb-header__wishlist {
        margin-top: auto;
        margin-bottom: auto
    }
}

@media (max-width:900px) {
    .lcb-header__wishlist {
        display: flex;
        order: 6;
        min-height: 74px;
        box-sizing: border-box;
        margin: 0;
        padding: .75rem 1rem;
        flex-grow: 1
    }
}

@media (max-width:400px) {
    .lcb-header__wishlist {
        padding: .5rem
    }
}

.lcb-header__wishlist i {
    font-size: 22px
}

@media (max-width:900px) {
    .lcb-header__wishlist i {
        font-size: 35px
    }
}

@media (max-width:400px) {
    .lcb-header__wishlist i {
        font-size: 25px
    }
}

.lcb-header__wishlist__nb {
    background-color: #ffda00;
    font-size: 10px;
    line-height: 1;
    padding: 3px 5px;
    aspect-ratio: 1/1;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 5px
}

@media (max-width:900px) {
    .lcb-header__wishlist__nb {
        bottom: 10%;
        top: auto;
        right: 5%
    }
}

@media (max-width:400px) {
    .lcb-header__wishlist__nb {
        padding: 2px
    }
}

.lcb-header__cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    padding-top: 5px;
    font-weight: 600;
    margin: 1.5rem .75rem 0 .5rem
}

@media (max-width:1200px) {
    .lcb-header__cart {
        margin-top: auto;
        margin-bottom: auto
    }
}

@media (max-width:900px) {
    .lcb-header__cart {
        display: flex;
        order: 5;
        min-height: 74px;
        box-sizing: border-box;
        margin: 0;
        padding: .75rem 1rem;
        flex-grow: 1;
        border-right: 1px solid #b6bbc2
    }
}

@media (max-width:400px) {
    .lcb-header__cart {
        padding: .5rem
    }
}

.lcb-header__cart i {
    font-size: 22px
}

@media (max-width:900px) {
    .lcb-header__cart i {
        font-size: 35px
    }
}

@media (max-width:400px) {
    .lcb-header__cart i {
        font-size: 25px
    }
}

.lcb-header__cart__lb {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    margin-top: 5px
}

@media (max-width:900px) {
    .lcb-header__cart__lb {
        display: none
    }
}

.lcb-header__cart__nb {
    position: absolute;
    background-color: #ffda00;
    font-size: 10px;
    right: 0;
    top: 0;
    line-height: 1;
    padding: 3px 5px;
    aspect-ratio: 1/1;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media (max-width:900px) {
    .lcb-header__cart__nb {
        bottom: 10%;
        top: auto;
        right: 5%
    }
}

@media (max-width:400px) {
    .lcb-header__cart__nb {
        padding: 2px
    }
}

.lcb-header__mega-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0 0;
    width: 100%;
    margin-right: .75rem;
    max-width: calc(100% - 135px);
    margin-left: auto;
    margin-top: -42px;
    position: relative;
    list-style: none;
    margin-bottom: 0
}

@media (max-width:1200px) {
    .lcb-header__mega-menu {
        margin-top: 0;
        max-width: 100%;
        padding-top: 0;
        overflow-x: scroll
    }
}

@media (max-width:900px) {
    .lcb-header__mega-menu {
        display: none
    }
}

.lcb-header__mega-menu>li {
    margin-left: 1rem
}

@media (max-width:1200px) {
    .lcb-header__mega-menu>li {
        flex-shrink: 0
    }
}

@media (max-width:900px) {
    .lcb-header__mega-menu>li {
        margin-left: 0
    }
}

.lcb-header__mega-menu>li.has-children::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #282828 transparent transparent transparent;
    display: inline-block;
    position: relative;
    top: -3px;
    margin-left: .25rem
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: calc(100% + 110px);
    background-color: #041a71;
    min-height: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 0 5px 10px 0 rgba(40, 40, 40, .1);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all .25s ease
}

@media (max-width:1200px) {
    .lcb-header__mega-menu>li.has-children .mega-menu-sub-menu {
        left: 0;
        right: auto;
        width: calc(100% + .75rem)
    }
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper__title {
    font-family: Unna, serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 2rem
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper__title a {
    color: #fff
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper a {
    transition: color .5s cubic-bezier(.075, .82, .165, 1)
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper a:active,
.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper a:focus,
.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper a:hover {
    color: #ffda00
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper__menu {
    font-size: 16px;
    padding-left: 0;
    list-style: none
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper__menu>li {
    line-height: 1.2
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper__menu>li:not(:last-child) {
    margin-bottom: 1rem
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__wrapper__menu>li>a {
    color: rgba(255, 255, 255, .8);
    font-weight: 600
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__photo {
    background-color: #b6bbc2;
    margin: 0
}

.lcb-header__mega-menu>li.has-children .mega-menu-sub-menu__photo img {
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%
}

.lcb-header__mega-menu>li.has-children:hover .mega-menu-sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all .5s ease
}

.lcb-header__mega-menu>li>a {
    display: inline-block;
    padding: .5rem 0 1rem .5rem;
    text-transform: uppercase;
    font-weight: 700
}

.lcb-header__bg-icon {
    display: none;
    text-align: center;
    padding: .75rem 1rem;
    border-right: 1px solid #b6bbc2;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media (max-width:900px) {
    .lcb-header__bg-icon {
        display: flex;
        order: 1
    }
}

.lcb-header__bg-icon i {
    display: block;
    font-size: 35px
}

@media (max-width:400px) {
    .lcb-header__bg-icon i {
        font-size: 25px
    }
}

.lcb-header__bg-icon .fa-times {
    display: none
}

.lcb-header__bg-icon span {
    margin-top: 2px;
    font-weight: 700;
    display: block;
    font-size: 12px;
    text-transform: uppercase
}

@media (max-width:400px) {
    .lcb-header__bg-icon span {
        font-size: 10px
    }
}

.lcb-header__bg-icon.active .fa-times {
    display: block
}

.lcb-header__bg-icon.active .fa-bars {
    display: none
}

.lcb-header__bg-menu {
    order: 7;
    display: none;
    height: calc(100vh - 165px);
    border-top: 1px solid #b6bbc2;
    background-color: #041a71;
    padding: 2rem;
    color: #fff;
    box-sizing: border-box;
    overflow-y: scroll;
    width: 100%
}

.lcb-header__bg-menu a {
    color: #fff
}

.lcb-header__bg-menu.active {
    display: block
}

.lcb-header__bg-menu__menu {
    font-size: 16px
}

.lcb-header__bg-menu__menu>li:not(:last-child) {
    margin-bottom: 1.5rem
}

.lcb-header__bg-menu__menu>li>a {
    font-size: 22px;
    font-family: Unna, serif;
    line-height: 1.2
}

.lcb-header__bg-menu__menu>li.has-children>.sub-menu {
    padding-left: 1rem;
    border-left: 1px solid #b6bbc2;
    margin-top: .75rem
}

.lcb-header__bg-menu__menu>li.has-children>.sub-menu>li {
    line-height: 1.2
}

.lcb-header__bg-menu__menu>li.has-children>.sub-menu>li:not(:last-child) {
    margin-bottom: .75rem
}

.lcb-header__bg-menu__menu>li .mega-menu-sub-menu {
    display: none
}
