<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
    margin-bottom: 32px;
    padding: 0;
    list-style: none;
}

    .breadcrumb.fade-in {
        opacity: 0;
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

.breadcrumb__item {
    display: flex;
    align-items: center;
    line-height: 16px;
    font-size: 13px;
    z-index: 2;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

    .breadcrumb__item.active {
        position: relative;
        top: 1px;
        z-index: 1;
        padding: 0 8px;
        font-weight: 400;
    }

.breadcrumb__link {
    position: relative;
    display: flex;
    padding: 0 8px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .breadcrumb__link:hover {
        color: #244C5A;
    }

.breadcrumb__text {
    font-weight: 600;
}

.breadcrumb .breadcrumb__item:first-child .breadcrumb__link {
    padding-left: 0;
    margin-left: -3px;
}

@media (max-width: 980px) {
    .breadcrumb {
        /*margin-top: 60px;*/
        margin-top: 0;
    }
}

@media (max-width: 680px) {
    .breadcrumb {
        display: none;
    }
}
</pre></body></html>