@import url('base.css');

.bread-crumbs-wrapper {

    background: #FFF;
    display: flex;
    /*padding: 24px 36px;*/
/*    padding-top: 24px;
    padding-bottom: 24px;*/
    align-items: center;
    align-content: center;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.directory-wrapper {
    border-top: 1px solid rgba(51, 51, 51, 0.10);
    border-bottom: 1px solid rgba(51, 51, 51, 0.10);
}

.bread-crumbs-wrapper .bread-item {
    display: flex;
    color: var(--Primary, #BE1E2D);
    /* Desktop/Body */
    font-family: "AnekLatin-Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    text-decoration: none;
}

        .bread-crumbs-wrapper .bread-item:hover {
            color: #72161D;
        }

    .bread-crumbs-wrapper .bread-item-no-hover {
        color: var(--Dark, #333);
        /* Desktop/Body 2 */
        font-family: "AnekLatin-Regular";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
        margin-bottom: unset !important;
    }

    .bread-crumbs-wrapper .right-arrow-bread {
        width: 10px;
        height: 10px;
    }


.bread-crumbs-wrapper .bread-crumbs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, auto));
    width:100%;
    justify-content:flex-start;
    justify-items:flex-start;
    align-content:center;
    align-items:center;
    gap:8px;
    padding:20px 0;
}

    .bread-crumbs-wrapper .bread-crumbs-container * {
        font-family: AnekLatin-Regular;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
    }


@media only screen and (max-width: 991px) {
    .bread-crumbs-wrapper .bread-crumbs-container * {
        font-family: AnekLatin-Regular;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
    }
}