.content-head .page-title {
    display: block;
    margin: 0;
    padding: 0;
    color: #222;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25;
}

.content-head .content-title-wrap {
    margin: 40px 0 0;
}

.content-head .content-title {
    margin: 0;
    color: #4a5677;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
}

.content-head .content-path-actions {
    --content-path-inline-offset: 6rem;
    --content-path-home-icon: none;
    --content-path-toggle-icon: none;
}

.content-head .content-path-actions .content-path,
.content-head .content-path-actions .content-actions {
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-head .content-path-actions a {
    color: inherit;
    text-decoration: none;
}

.content-head .content-path-actions .content-path-actions-wrap {
    position: relative;
    display: flex;
    height: 70px;
    justify-content: space-between;
    margin: 40px 0 0;
    color: #fff;
    border-radius: 8px;
    background-color: #4a5677;
}

.content-head .content-path-actions .content-path > li {
    position: relative;
    float: left;
    padding: 0;
}

.content-head .content-path-actions .content-path > li::after {
    position: absolute;
    top: 15px;
    right: 0;
    bottom: 20px;
    width: 2px;
    height: auto;
    content: "";
    opacity: 0.2;
    background-color: #fff;
}

.content-head .content-path-actions .content-path > li > a {
    position: relative;
    display: inline-block;
    min-width: 222px;
    height: 70px;
    padding: 23px 60px 23px 20px;
    color: #fff;
    font-size: 18px;
    text-align: left;
    background-color: #4a5677;
}

.content-head .content-path-actions .content-path > li > a:hover,
.content-head .content-path-actions .content-path > li > a:focus {
    background-color: #474e63;
}

.content-head .content-path-actions .content-path > li > ul {
    display: none;
}

.content-head .content-path-actions .content-path > li .btn-view {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 40px;
    border: 0;
    background-color: transparent;
}

.content-head .content-path-actions .content-path > li .btn-view::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: transparent var(--content-path-toggle-icon) no-repeat 50% 50%;
    transition: transform 0.2s ease;
}

.content-head .content-path-actions .content-path > li .btn-view.is-active::before {
    transform: rotate(180deg);
}

.content-head .content-path-actions .content-path > li .btn-view > span,
.content-head .content-path-actions .content-path > li.home > a > span,
.content-head .content-path-actions .content-actions > li > a > span {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
}

.content-head .content-path-actions .content-path > li.is-active {
    overflow: visible;
}

.content-head .content-path-actions .content-path > li.is-active > a {
    background-color: #374058;
}

.content-head .content-path-actions .content-path > li.is-active > ul {
    position: absolute;
    z-index: 100;
    top: 70px;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
}

.content-head .content-path-actions .content-path > li.is-active > ul > li > a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    background-color: #232939;
}

.content-head .content-path-actions .content-path > li.home > a {
    display: block;
    width: 80px;
    min-width: 0;
    border-radius: 8px 0 0 8px;
    background-color: #4a5677;
    background-image: var(--content-path-home-icon);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.content-head .content-path-actions .content-actions {
    height: 70px;
    border-radius: 35px 8px 8px 35px;
    background-color: #d22a49;
}

.content-head .content-path-actions .content-actions > li {
    position: relative;
    float: left;
    padding: 15px 0;
}

.content-head .content-path-actions .content-actions > li > a {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
    background-color: transparent;
    background-image: var(--content-path-action-icon);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

@media (max-width: 1279px) {
    .content-head {
        display: flex;
        flex-direction: column;
    }

    .content-head > .content-path-actions {
        order: -1;
        width: calc(100% + (var(--content-path-inline-offset) * 2));
        margin-left: calc(var(--content-path-inline-offset) * -1);
    }

    .content-head .content-path-actions .content-path-actions-wrap {
        height: 40px;
        justify-content: flex-start;
        margin: 0 0 40px;
        overflow: hidden;
        padding: 0 var(--content-path-inline-offset);
        border-radius: 0;
    }

    .content-head .content-path-actions .content-path {
        display: flex;
        min-width: 0;
    }

    .content-head .content-path-actions .content-path > li {
        display: flex;
        align-items: center;
        float: none;
        min-width: 0;
        padding-right: 18px;
    }

    .content-head .content-path-actions .content-path > li::after {
        top: 0;
        right: 0;
        bottom: auto;
        width: 18px;
        height: 40px;
        color: #fff;
        content: "\203A";
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        opacity: 0.65;
        background: transparent;
    }

    .content-head .content-path-actions .content-path > li:last-child::after {
        display: none;
    }

    .content-head .content-path-actions .content-path > li > a {
        min-width: 0;
        height: 40px;
        padding: 11px 0;
        overflow: hidden;
        font-size: 16px;
        line-height: 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
        background-color: transparent;
    }

    .content-head .content-path-actions .content-path > li > a:hover,
    .content-head .content-path-actions .content-path > li > a:focus {
        background-color: transparent;
    }

    .content-head .content-path-actions .content-path > li .btn-view,
    .content-head .content-path-actions .content-actions {
        display: none;
    }

    .content-head .content-path-actions .content-path > li.home {
        flex: 0 0 50px;
        padding-right: 18px;
    }

    .content-head .content-path-actions .content-path > li.home > a {
        width: 62px;
        height: 40px;
        border-radius: 0;
        background-color: transparent;
        background-size: 22px auto;
    }

    .content-head .page-title {
        font-size: 32px;
    }
}

@media (max-width: 1023px) {
    .content-head .content-path-actions {
        --content-path-inline-offset: 3rem;
    }
}

@media (max-width: 767px) {
    .content-head .content-path-actions {
        --content-path-inline-offset: 2rem;
    }

    .content-head .content-title {
        font-size: 30px;
    }
}

@media (max-width: 460px) {
    .content-head .content-path-actions {
        --content-path-inline-offset: 1rem;
    }
}
