@charset "UTF-8";

#breadcrumbs ol{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    color: var(--color-white);
    overflow-y: hidden;
    line-height: 1.5;
    font-size: 12px;
    word-break: keep-all;
    white-space: nowrap;
    overflow-x: auto;
}

#breadcrumbs ol li a:first-child {
  padding-left: 10px;
}

#breadcrumbs ol li a{
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

#breadcrumbs ol li:last-child a{
    padding-right: 10px;
}

#breadcrumbs ol li:not(:last-child) a::after{
    position: absolute;
    content: '';
    right: 6px;
    width: 8px;
    height: 100%;
    background: url(/images/bar/arrow_right.webp) center no-repeat;
    background-size: contain;
    z-index: 1;
}

#breadcrumbs ol li:last-child a{
    pointer-events: none;
}

.breadcrumbs_info .inner {
  padding: 20px 0 0px;
}

@media screen and (min-width: 1024px) {
    #breadcrumbs ol li:not(:last-child) a::after{
        width: 10px;
        right: 8px;
    }
    #breadcrumbs ol li a{
        padding-right: 25px;
    }

    #breadcrumbs ol::-webkit-scrollbar {
      height: 6px;
    }

    #breadcrumbs ol::-webkit-scrollbar-thumb {
      background-color: #5D4C48;
      border: solid 1px #362E2C;
      border-radius: 10px;
    }

    #breadcrumbs ol::-webkit-scrollbar-track-piece {
    background: inherit;
    }
}
