.stc-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.stc-breadcrumbs {
    display: flex;
    align-items: center;
}

.stc-breadcrumbs__items {
    display: flex;
    align-items: center;
    list-style: none;
}

.stc-breadcrumbs__item , 
.stc-breadcrumbs__item a 
{
    text-decoration: none;
    font-size: 15px;
    font-family: var(--text-font);
    display: inline-block;
    margin-bottom: 0;
    color: var(--color-text-grey);
    margin-top: 0;
    text-transform: capitalize;
}



.stc-breadcrumbs__item a:after {
    content: ">";
    display: inline-block;
    margin: 0 10px;
}

.stc-breadcrumbs__item--active a:after {
    display: none;
} 

.stc-breadcrumbs__item--active  {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.stc-top-header .stc-notification-bell button {
    padding: 10px;
    background-color: transparent;
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 0;


}

.stc-top-header .stc-notification-bell button:hover,
.stc-top-header .stc-notification-bell button:active,
.stc-top-header .stc-notification-bell button:focus {
    color: var(--color-accent);
}

.notification-bell{
    position: relative;
}



    @media screen and (max-width: 991px) {
        .stc-notification-bell {
            display: none;
        }
    }


.stc-notification-bell__count {
    background-color: var(--color-red);
    font-family: var(--text-font);
    font-size: 14px;
    color: var(--color-white) !important;
    display: inline-flex;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: var(--heading-shadow);
    
}

@media screen and (max-width:991px) {
    .stc-notification-bell__count {
        top: -5px;
        right: -1px;
    }
}

.breadcrumb.kb {
    display: none;
}

@media screen and (max-width:480px) {

    .stc-top-header {
        justify-content: center;
    }

    .stc-breadcrumbs {
        flex-direction: column;
    }
}