.YC-BK > ol {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 8px 0;
    list-style: none;
}

.pages-head .YC-BK > ol,
.title_big .YC-BK > ol {
    justify-content: center;
}

.YC-BK > ol > li {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-inline-end: 10px;
    color: var(--secondarytext);
}

.YC-BK > ol > li:last-child {
    margin-inline-end: 0;
}

.YC-BK > ol > li::before {
    content: var(--chevron);
    --chevron: "\f053";
    position: relative;
    margin-inline-end: 8px;
    color: var(--secondarytext);
    font-family: 'Font Awesome 7 Pro';
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    opacity: .75;
}

.YC-BK > ol > li:first-child::before {
    display: none;
}

.YC-BK > ol > li > a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid rgb(0 0 0 / 7%);
    border-radius: 999px;
    background: #ffffff;
    color: var(--secondarytext);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: 0 8px 22px rgb(0 0 0 / 4%);
    transition:
        color .24s ease,
        background-color .24s ease,
        border-color .24s ease,
        transform .24s ease,
        box-shadow .24s ease;
}

.YC-BK > ol > li > a:hover {
    color: #ffffff;
    border-color: var(--uicolor);
    background: var(--uicolor);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgb(0 0 0 / 8%);
}

.YC-BK > ol > li > a > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.YC-BK > ol > li > a > span > i {
    color: inherit;
    font-size: 13px;
    line-height: 1;
}

.pages-head .YC-BK > ol > li::before {
    color: rgb(255 255 255 / 62%);
    opacity: 1;
}

.pages-head .YC-BK > ol > li > a {
    border-color: rgb(255 255 255 / 12%);
    background: rgb(255 255 255 / 9%);
    color: rgb(255 255 255 / 86%);
    font-size: 14px;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.pages-head .YC-BK > ol > li > a:hover {
    border-color: var(--uicolor);
    background: var(--uicolor);
    color: #ffffff;
    transform: translateY(-2px);
}

.pages-head .YC-BK > ol > li:last-child > a,
.YC-BK > ol > li:last-child > a {
    color: var(--uicolor);
    background: rgb(255 111 0 / 8%);
    border-color: rgb(255 111 0 / 12%);
}

.pages-head .YC-BK > ol > li:last-child > a {
    color: #ffffff;
    background: rgb(255 255 255 / 14%);
    border-color: rgb(255 255 255 / 18%);
}

@media only screen and (max-width: 992px) {
    .YC-BK > ol {
        gap: 7px 0;
    }

    .YC-BK > ol > li {
        margin-inline-end: 7px;
    }

    .YC-BK > ol > li::before {
        margin-inline-end: 6px;
        font-size: 10px;
    }

    .YC-BK > ol > li > a {
        min-height: 28px;
        padding: 4px 9px;
        font-size: 12px !important;
    }

    .pages-head .YC-BK > ol > li > a {
        font-size: 12px !important;
    }

    .YC-BK > ol > li > a > span > i {
        font-size: 12px;
    }
}

@media only screen and (max-width: 520px) {
    .YC-BK > ol {
        justify-content: center;
    }

    .YC-BK > ol > li {
        margin-inline-end: 5px;
    }

    .YC-BK > ol > li > a {
        min-height: 27px;
        padding: 4px 8px;
        font-size: 11px !important;
    }

    .YC-BK > ol > li::before {
        margin-inline-end: 5px;
        font-size: 9px;
    }
}