
/* Breadcrumb */

.breadcrumb-wrap {

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;

    ul.breadcrumb {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px 30px;

        & > li {
            position: relative;

            & > a {
                display: inline-flex;
            }

            &:last-child > a {
                font-weight: 500;
            }

            &:not(:last-child)::after {
                content: ' ';
                position: absolute;
                top: 0;
                right: -30px;
                width: 30px;
                height: 24px;
                background-image: url('/images/svg/caret.svg');
                background-repeat: no-repeat;
                background-position: center;
                background-size: 12px;
            }

        }

    }



    /*&.pull-up {*/
    /*    margin-bottom: calc(-0.5 * var(--theme-breadcrumb-height));*/
    /*}*/

    /*@media all and (max-width: 767px) {*/

    /*    &.pull-up {*/
    /*        margin-bottom: calc(-0.25 * var(--theme-breadcrumb-height));*/
    /*    }*/
    /*    */
    /*    .buttons {*/
    /*        display: none;*/
    /*    }*/

    /*}*/


}








