@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i&display=swap&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese");
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");

.bb-header {
    position: relative;
    z-index: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e2;
    font-family: Arial, Helvetica, sans-serif;
    color: #0f0f02;
    pointer-events: none;
    user-select: none;
}

.bb-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 59px;
    padding: 0 15px;
}

.bb-header__mobile-left,
.bb-header__mobile-right,
.bb-header__desktop-left,
.bb-header__desktop-right,
.bb-header__actions,
.bb-header__utility-links {
    display: flex;
    align-items: center;
}

.bb-header__desktop-left,
.bb-header__desktop-right {
    display: none;
}

.bb-header__mobile-left,
.bb-header__mobile-right {
    gap: 11px;
    min-width: 76px;
}

.bb-header__mobile-right {
    justify-content: flex-end;
}

.bb-header__brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-header__brand img {
    display: block;
    width: 138px;
    max-width: none;
    height: auto;
}

.bb-header__icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #0f0f02;
    flex: 0 0 auto;
}

.bb-header__icon {
    display: block;
    width: 18px;
    height: 18px;
}

.bb-header__icon--user {
    width: 14px;
    height: 16px;
}

.bb-header__icon--heart {
    width: 20px;
    height: 20px;
}

.bb-header__icon--cart {
    width: 18px;
    height: 16px;
}

.bb-header__icon--search {
    width: 18px;
    height: 18px;
}

.bb-header__icon-button--menu {
    width: 24px;
    height: 24px;
    flex-direction: column;
    gap: 4px;
}

.bb-header__menu-bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #0f0f02;
}

@media (min-width: 768px) {
    .bb-header__inner {
        min-height: 58px;
        padding: 0 28px 0 24px;
    }

    .bb-header__mobile-left,
    .bb-header__mobile-right {
        display: none;
    }

    .bb-header__desktop-left,
    .bb-header__desktop-right {
        display: flex;
    }

    .bb-header__desktop-left {
        width: 150px;
        justify-content: flex-start;
    }

    .bb-header__desktop-right {
        gap: 22px;
        margin-left: auto;
    }

    .bb-header__utility-links {
        gap: 24px;
        font-size: 11px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .bb-header__actions {
        gap: 14px;
    }

    .bb-header__brand img {
        width: 145px;
    }
}
