.breadcrumbs {
    font-size: 14px;
    color: #3C4858;
    padding: 0 0 1rem;
    position: relative;
}

.breadcrumb-toggle {
    background: #ebecf1;
    display: flex;
    padding: 5px;
    border-radius: 4px;
}

@media(min-width:1024px) {
    .breadcrumbs {
        margin: 1rem 0;
        overflow: hidden;
    }

    .breadcrumb-toggle {
        display: none;
    }
}

.breadcrumbs ul {
    display: none;
    position: absolute;
    li:last-child img{
        display: none;
    }
}

.bread-crumbs-open .breadcrumb-toggle {
    border-radius: 4px 4px 0 0;
}

.bread-crumbs-open .breadcrumbs ul {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.5rem;
    z-index: 20;
    font-size: 1rem;
    background: #ebecf1;
    box-shadow: 0px 4px 0px #f3f3f3;
    border-radius: 0 4px 4px 4px;
    top: calc(100% - 1.125rem);
    left: 2px;
}

@media(min-width:768px) {
    .bread-crumbs-open .breadcrumbs ul {
        left: 0;
    }
}

.bread-crumbs-open .breadcrumbs li {
    padding: 0.5rem 0.25rem;
    display: flex;
    color: #7c8ca0;
}

.bread-crumbs-open .breadcrumbs a {
    color: #404e61;
}

.bread-crumbs-open .breadcrumbs a:hover {
    color: #1FB6FF
}

.bread-crumbs-open .breadcrumbs img {
    display: none;
}

.breadcrumb-toggle:focus {
    outline: none;
}

.breadcrumb-toggle span {
    background: #8e949e;
    width: 8px;
    height: 8px;
    display: flex;
    margin: 5px;
    border-radius: 100px;
}

.bread-crumbs-open .breadcrumb-toggle span {
    background: #1FB6FF;
}

@media(min-width:1024px) {
    .breadcrumbs ul,
    .breadcrumbs li {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
}

.breadcrumbs img {
    height: 13px;
    margin: 0 10px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #3C4858;
    white-space: nowrap;
    text-overflow: ellipsis;
}