.header-banners {
    width: 100vw;
    max-width: 100vw;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    background: #000;
    overflow: hidden;

    box-sizing: border-box;
}

.header-banners__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    height: 51px;
    max-height: 51px;

    overflow: hidden;

    box-sizing: border-box;
}

.header-banners__item {
    flex: 0 0 auto;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header-banners__link {
    display: flex;
    align-items: center;
    height: 51px;
}

.header-banners__img {
    display: block;

    height: 51px;
    max-height: 51px;

    width: auto;
    max-width: none;
}


html,
body {
    overflow-x: hidden;
}

.page-wrapper,
#for-quick-view-header,
.body {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

@media (max-width: 787px) {
    .header-banners__inner {
        height: 0px;
        max-height: 0px;
    }
}