.side-bar-container {
    /* position: sticky;
    bottom: 350px; */
}

.side-bar {
    /* position: -webkit-sticky; */
    position: relative;
    position: sticky;
    top: 120px;
    /* top: 0; */
    /* bottom: 0; */
    width: 150px;
    padding-right: 10px;
    margin: 20px 0;
    float: left;
    /* margin-top: 70px; */
    /* background-color: blue; */
    border-right: solid 1px rgb(54, 54, 54);
}

    .side-bar h1 {
        margin: 10px 0;
        /* margin-top: 20px; */
        font-weight: 700;
        font-size: 15px;
    }

    .side-bar h2 {
        margin: 2px 0;
        font-weight: 500;
        font-size: 12px;
        padding: 5px 0;
        padding-left: 10px;
        border-radius: 10px;
        transition: all 0.2s;
    }

    .side-bar h2:hover {
        background-color: rgba(0,0,0,0.1);
        cursor: pointer;
    }

    .side-bar .selected {
        background-color: rgba(31, 136, 255, 0.25);
    }

    .side-bar .selected:hover {
        background-color: rgba(31, 136, 255, 0.25);
        cursor: default;
    }

.article-content-wrapper {
    margin-left: 200px;
    width: calc(100%-200px);
    margin-top: 50px;
}

    .article-content-wrapper .article-content {
        padding: 25px 0;
    }

        .article-content-wrapper .article-content p {
            font-size: 14px;
            font-weight: 400;
            line-height: 25px;
        }

        .article-content-wrapper .article-content a {
            font-size: 14px;
            font-weight: 400;
            text-decoration: underline;
            line-height: 25px;
        }

        .article-content-wrapper .article-content .breadcrumbs {

        }

            .article-content-wrapper .article-content .breadcrumbs a {
                padding: 0 7px !important;
                font-size: 12px !important;
                font-weight: 400 !important;
                text-decoration: none !important;
            }

        .article-content-wrapper .article-content .title {
            margin: 20px 0;
        }

            .article-content-wrapper .article-content .title h1 {
                font-size: 25px;
                font-weight: 700;
            }