/* ==========================================================================
   Breadcrumbs Component
   Extracted from style.css
   ========================================================================== */

.site-content .b-crumbs {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 15px;

    @media (min-width: 768px) {
        padding: 0 0 0 20px;
    }

    & li {
        display: inline-block;
        vertical-align: top;
        font-size: 13px;
        text-transform: uppercase;
        margin: 0 2px 8px 0;
        font-weight: 600;
        padding: 0 10px 0 0;
        position: relative;
        color: var(--text-muted);

        &:after {
            position: absolute;
            content: '/';
            font-size: 13px;
            color: var(--text-muted);
            top: 0;
            right: 0;
            display: block;
            font-weight: 600;
        }

        &:last-child {
            margin-right: 0;
            padding-right: 0;

            &:after {
                display: none;
            }
        }

        & a {
            border-bottom: 1px solid transparent;
            color: var(--base-text-color);
            transition: all 0.2s;

            &:hover {
                border-bottom: 1px solid var(--secondary-text-color);
                color: var(--third-color);
            }
        }

        & span {
            color: var(--text-muted);
        }
    }
}

.single-product .site-content .b-crumbs {
    padding: 7px 0 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
