.banner-bottom-bar {
    position: relative;
    background: #E4EDF5;
}

.banner-bottom-side {
    display: block;
}

.banner-bottom-main {
    display: none;
}

.banner-bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    gap: 0;
}

.banner-bottom-bar-inner.is-plain {
    justify-content: flex-end;
}

.banner-bottom-nav {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.banner-bottom-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-height: 54px;
    font-size: var(--f18);
    color: #666;
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
    border-left: 1px solid rgba(18, 55, 71, 0.14);
    border-bottom: 2px solid transparent;
}

.banner-bottom-nav-item:first-child {
    border-left: 0;
}

.banner-bottom-nav-item:hover {
    color: var(--gm-theme);
}

.banner-bottom-nav-item.is-active {
    color: var(--gm-theme);
    border-bottom-color: var(--gm-theme);
    background-color: #fff;
}

.banner-bottom-breadcrumb-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-bottom-breadcrumb-wrap.is-desktop {
    display: none;
}

.banner-bottom-home {
    position: relative;
    width: 56px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gm-theme);
    color: #fff;
    flex-shrink: 0;
}

.banner-bottom-breadcrumb-wrap .banner-bottom-home::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 100vw;
    height: 100%;
    background: #F5F5F5;
}

.banner-bottom-bar.is-product-banner .banner-bottom-breadcrumb-wrap .banner-bottom-home::before {
    background: #ffffff;
}

.banner-bottom-breadcrumb-wrap.is-mobile .banner-bottom-home::before {
    display: none;
}

.banner-bottom-home i {
    font-size: 20px;
    line-height: 1;
}

.is-split .banner-bottom-nav {
    width: 100%;
    overflow-x: auto;
    background: #F5F5F5;
    border-bottom: 1px solid rgba(18, 55, 71, 0.08);
}

.is-split .banner-bottom-nav-item {
    padding: 0 3vw;
  
}

.banner-bottom-bar-inner.is-stack {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.is-split .banner-bottom-breadcrumb-wrap {
    order: 1;
}

.is-split .banner-bottom-nav {
    order: 2;
}

.banner-bottom-breadcrumb {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    color: #888;
    font-size: 16px;
    border-left: 1px solid rgba(18, 55, 71, 0.08);
}

@media (min-width: 900px) {
    .banner-bottom-side {
        display: none;
    }

    .banner-bottom-main {
        display: block;
    }

    .banner-bottom-bar-inner.is-stack {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .banner-bottom-breadcrumb-wrap.is-mobile {
        display: none;
    }

    .is-split .banner-bottom-breadcrumb-wrap {
        order: 2;
    }

    .is-split .banner-bottom-breadcrumb-wrap.is-desktop {
        display: flex;
    }

    .is-split .banner-bottom-nav {
        order: 1;
        width: auto;
        overflow-x: visible;
        background: transparent;
        border-bottom: 0;
    }
}
