body {
    font-family: proxima-nova;
    color: #323232;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    overflow: hidden;

}

.toc {
    list-style-type: none;
    padding-left: 0px;
    color: #323232;
}


.topnav {
    background-color: #323232;
    overflow: hidden;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    text-decoration: underline;
}

.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

* {
    box-sizing: border-box;
}

/* Column container */
.row {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    height: 100%;
}

.content {
    flex: 50%;
    background-color: white;
    padding: 20px;
    height: 100% ;
    overflow:auto;
}


.navigation {
    flex: 30%;

    background-color: #ffffff;
    border-right: #f1f1f1 solid 2px;

    padding: 20px;


}

.right {
    flex: 20%;
    background-color: white;
    padding: 20px;
}

.main {
    height: calc(100vh - 68px);
    margin: 15px;
}

.has-three-text-columns-list-items {
    -webkit-columns: 3;
    -moz-columns: 3;
         columns: 3;

}
.has-three-text-columns-list-items li {
    background-color: #f2f2f2;
    list-style: none;
    border-left: red solid 3px;
    padding:5px 5px;
    border-bottom: #fff solid 6px;

    
}
