.st-breadcrumb {
display: none;
}
@media screen and (min-width: 578px) {
    .st-breadcrumb {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-grey-color, #EAEEF3);   
    }
    .st-breadcrumb ul {
    list-style: none;
    display: block;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    background: #FFF;
    }
    .st-breadcrumb ul li {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 0;
    }
    .st-breadcrumb ul li:not(:last-child):after {
    position: absolute;
    content: "";
    top: 50%;
    right: -2px;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: var(--light-grey-color, #EAEEF3);
    z-index: 1;
    }
    .st-breadcrumb ul li:first-child {
    padding-left: 0;
    }
    .st-breadcrumb ul li:last-child {
    padding-right: 0;
    }
    .st-breadcrumb ul li a {
    display: block;
    font-weight: 500;
    color: var(--main-color, #1A2B48);
    text-decoration: none;
    line-height: 21px;
    }
    .st-breadcrumb ul li.active {
    color: var(--grey-color, #5E6D77);
    }
}