.page-header .reparto-topbar {
    background: var(--reparto-topbar-background, #050505);
    border-bottom: 1px solid var(--reparto-topbar-border, #292929);
    box-sizing: border-box;
    color: var(--reparto-topbar-text, #a8a8a8);
    font-size: 12px;
    letter-spacing: 0.2px;
    position: relative;
    width: 100%;
    z-index: 101;
}

.reparto-topbar__inner {
    align-items: stretch;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1460px;
    min-height: 36px;
    padding-left: 44px;
    padding-right: 44px;
    width: 100%;
}

/*
 * Left side fills all remaining space.
 */
.reparto-topbar__left {
    align-items: stretch;
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    min-width: 0;
}

/*
 * Every configured item gets equal width.
 */
.reparto-topbar__item {
    align-items: center;
    display: flex;
    flex: 1 1 0;
    justify-content: center;
    min-height: 36px;
    padding: 0 20px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

/*
 * First item aligned left.
 */
.reparto-topbar__item:first-child {
    justify-content: flex-start;
    padding-left: 0;
    text-align: left;
}

/*
 * Last item aligned right toward store selector.
 */
.reparto-topbar__item:last-child {
    justify-content: flex-end;
    padding-right: 0;
    text-align: right;
}

/*
 * Vertical separator between left-side items.
 */
.reparto-topbar__item + .reparto-topbar__item::before {
    background: var(--reparto-topbar-border, #292929);
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.reparto-topbar__item,
.reparto-topbar__item span {
    color: var(--reparto-topbar-text, #a8a8a8);
}

.reparto-topbar__item a {
    color: var(--reparto-topbar-link, #ffffff);
    text-decoration: none;
    transition: color 0.2s ease;
}

.reparto-topbar__item a:hover,
.reparto-topbar__item a:focus {
    color: #e30613;
    text-decoration: none;
}

/*
 * Small right-side store selector.
 */
.reparto-topbar__right {
    align-items: stretch;
    display: flex;
    flex: 0 0 auto;
    margin-left: 30px;
}

.reparto-store-switcher {
    align-items: stretch;
    display: flex;
    min-height: 36px;
}

.reparto-store-switcher__item {
    align-items: center;
    border-left: 1px solid var(--reparto-topbar-border, #292929);
    color: var(--reparto-topbar-text, #a8a8a8);
    display: inline-flex;
    gap: 7px;
    min-height: 36px;
    padding: 0 14px;
    text-decoration: none;
    transition:
            background-color 0.2s ease,
            color 0.2s ease;
    white-space: nowrap;
}

.reparto-store-switcher__item:last-child {
    border-right: 1px solid var(--reparto-topbar-border, #292929);
}

.reparto-store-switcher__item:hover,
.reparto-store-switcher__item:focus {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
}

.reparto-store-switcher__item.is-current {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    pointer-events: none;
}

.reparto-store-switcher__flag {
    font-size: 15px;
    line-height: 1;
}

.reparto-store-switcher__currency {
    color: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 900px) {
    .reparto-topbar__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .reparto-topbar__item {
        padding-left: 12px;
        padding-right: 12px;
    }

    .reparto-topbar__right {
        margin-left: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .reparto-topbar__inner {
        align-items: stretch;
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .reparto-topbar__left {
        justify-content: flex-start;
        min-height: 35px;
        overflow-x: auto;
        padding: 0 20px;
    }

    .reparto-topbar__item {
        flex: 0 0 auto;
        justify-content: flex-start;
        padding: 0 18px;
        text-align: left;
    }

    .reparto-topbar__item:first-child {
        padding-left: 0;
    }

    .reparto-topbar__item:last-child {
        justify-content: flex-start;
        padding-right: 18px;
        text-align: left;
    }

    .reparto-topbar__right {
        border-top: 1px solid var(--reparto-topbar-border, #292929);
        margin-left: 0;
        overflow-x: auto;
    }

    .reparto-store-switcher {
        justify-content: flex-end;
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .reparto-topbar__item {
        font-size: 11px;
    }

    .reparto-store-switcher__item {
        padding-left: 11px;
        padding-right: 11px;
    }
}