.common-breadcrumb-wrapper {
    padding: 20px 0;
}

.common-breadcrumb-wrapper .cb-breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

.common-breadcrumb-wrapper .cb-breadcrumb-nav .cb-breadcrumb-list {
    list-style: none;
    padding-left: 5px;
    margin: 0;
    display: flex;
    align-items: center;
}

.common-breadcrumb-wrapper .cb-breadcrumb-nav .cb-breadcrumb-item {
    display: inline;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.common-breadcrumb-wrapper .cb-breadcrumb-nav .cb-breadcrumb-item:last-child {
    font-weight: 500;
}

.common-breadcrumb-wrapper .cb-breadcrumb-nav .cb-breadcrumb-item::after {
    content: '>';
    margin: 0 10px;
    color: #999;
    font-weight: normal;
}

.common-breadcrumb-wrapper .cb-breadcrumb-nav .cb-breadcrumb-item:last-child::after {
    display: none;
}

.common-breadcrumb-wrapper .cb-breadcrumb-nav .cb-breadcrumb-item a {
    color: inherit;
    text-decoration: none;
}

.common-breadcrumb-wrapper .cb-related-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.common-breadcrumb-wrapper .cb-related-links .cb-related-label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.common-breadcrumb-wrapper .cb-related-links .cb-related-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
}

.common-breadcrumb-wrapper .cb-related-links .cb-related-link-item a {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(131deg, #554FF8 0%, #2EB6AE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.common-breadcrumb-wrapper .cb-related-links .cb-related-link-item a:hover {
    background-image: linear-gradient(131deg, #554FF8 0%, #2EB6AE 100%);
    text-decoration:underline;
    -webkit-text-fill-color: transparent;
    text-decoration-color: #554FF8;
}

@media (max-width: 767.98px) {
    .common-breadcrumb-wrapper{
        display: none
    }
 }


