.ws-block-Breadcrumb .rank-math-breadcrumb {
    max-width: 100%;
}

.ws-block-Breadcrumb ol{
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.10), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: var(--qerys-secondary-color);
    font-size: 16px;
    font-family: var(--e-global-typography-paragraph-font-family), sans-serif;
    text-transform: uppercase;
    flex-wrap: wrap;
    line-height: 1.25;
}

.ws-block-Breadcrumb ol li{
    display: flex;
    align-items: center;
    gap: 5px;
}

.ws-block-Breadcrumb ol li .mobile_separator{
    display: none;
}

.ws-block-Breadcrumb a {
    text-decoration: none;
    font-family: var(--e-global-typography-paragraph-font-family), sans-serif;
}

@media screen and (max-width: 768px) {
    .ws-block-Breadcrumb ol{
        align-items: flex-start;
    }   

    .ws-block-Breadcrumb ol .separator {
        display: none;
    }

    .ws-block-Breadcrumb ol li:not(:first-child) .mobile_separator{
        display: block;
    }
}