.handbookBreadCrumbsNav {
    display: grid;
    grid-auto-flow: column;
    width: fit-content;
    padding: 1rem;
    margin-top: 150px;
    background-color: #ffffff;
    font-size: 1rem;
}

.handbookBreadCrumbs:not(:last-child) {
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 2px solid #000000;
}

.handbookBreadCrumbs {
    display: grid;
    grid-auto-flow: column;
    grid-gap: .5rem;
}

.handbookBreadCrumbs .currentBreadCrumb {
    /* color: #9d2235; */
    font-weight: 700;
}

.handbookBreadCrumbs * {
    align-self: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.handbookChildDropDownArrow {
    cursor: pointer;
    display: inline-block;
    user-select: none;
}

.handbookChildDropDownGrid {
    column-count: 3;
    padding: 1rem;
    background-color: #ffffff;
}

.handbookChildDropDownGrid div {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    align-self: start;
    width: calc(100%-.5rem);
    margin-bottom: .75rem;
    overflow: hidden;
    word-break: break-word;
    break-inside: avoid-column;
}

.handbook a {
    cursor: pointer;
    transition: color ease 300ms, text-decoration-color ease 300ms;
    color: #363636;
    text-decoration: underline;
    text-decoration-color: #363636;
}

.handbook_title_and_heading {
    margin-bottom: 2rem;
}

.handbook_book_header{
    margin-bottom: .5rem;
}

.handbookChildrenRightColumn {
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    background-color: #ffffff;
}

.handbookChildrenRightColumn .handbookChildLinks * {
    width: calc(100%-1rem);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    padding-left: 1rem;
    text-indent: -0.4rem;
}

.handbookChildrenRightColumn .handbookChildLinks:not(:last-child) {
    margin-bottom: 1.5rem;
}

.right.column .handbookChildrenRightColumn a {
    text-decoration: underline;
}

.right.column .handbookChildrenRightColumn a:before {
    display:         inline-block;
    content:         "●";
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    .handbookBreadCrumbsNav {
        grid-auto-flow: row;
        padding: .5rem;
    }

    .handbookBreadCrumbs {
        width: fit-content;
        padding: .5rem;
    }

    .handbookBreadCrumbs:first-child {
        padding-left: 2.5rem;
    }

    .handbookBreadCrumbs:not(:last-child) {
        border-right: none;
    }

    .handbookChildDropDownGrid {
        column-count: 1;
    }
}

@media print {
    .policy-navigation-content, .policy-navigation-content * {
        display: none;
    }

    #standard.content.handbook .left.main-content {
        width: 100% !important;
    }
}