/*Color Overwrites*/

:root{
    --primary: #0066cc;
  }

.btn-outline-primary {
    color: #0066cc;
}

.btn-outline-primary,
.btn-outline-primary:hover {
    border-color: #0066cc;
}

.btn-outline-primary:hover,
.bg-primary {
    background-color: #0066cc;
}

a:hover {
    text-decoration:none;
}

/* Nav */
.km-navbar {
    height: 80px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.05), inset 0 -1px 0 rgba(0,0,0,.1);
    background-color: #fff;
}
@media (min-width: 768px) {
    .km-navbar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1071;
    }
}

/* Sidebar */
.toc-toggle {
    display: none;
    margin: 0 15px 0px 15px;
}
@media only screen and (max-width: 768px)
.toc-toggle {
    display: block;
}
.km-sidebar {
    -ms-flex-order: 0;
    order: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
@media (min-width: 768px){
    .km-sidebar {
        border-right: 1px solid rgba(0,0,0,.1);
    }
    .km-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 4rem;
        z-index: 1000;
        height: calc(100vh - 4rem);
    }
}
@media (min-width: 1200px){
    .km-sidebar {
        -ms-flex: 0 1 320px;
        flex: 0 1 320px;
    }
}
.km-search {
    position: relative;
    padding: 1rem 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.km-links {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-right: -15px;
    margin-left: -15px;
}
.km-toc-link {
    display: block;
    padding: .25rem 1rem;
    font-weight: 600;
    color: rgba(0,0,0,.65);
}
.km-toc-item.active>.km-toc-link {
    color: var(--primary);
}
.km-toc-item.active {
    margin-bottom: 1rem;
}
.km-toc-item.active>.km-sidenav {
    display: block;
}
.km-toc-item.active:not(:first-child) {
    margin-top: 1rem;
}
.km-sidebar .nav>.active:hover>a, .km-sidebar .nav>.active>a {
    font-weight: 600;
    color: var(--primary);
    background-color: transparent;
}
.km-sidebar .nav>li .nav>li>a {
    display: block;
    margin-left: 1rem;
    padding: .25rem 1.5rem;
    font-size: 90%;
    color: rgba(0,0,0,.65);
}
@media (min-width: 768px) {
    .km-links {
        max-height: calc(100vh - 9rem);
        overflow-y: auto;
    }
    .km-links {
        display: block!important;
    }
}

/* Main */
.km-content {
    -ms-flex-order: 1;
    order: 1;
}
.km-title {
    margin-top: 1rem;
    margin-bottom: .5rem;
    font-weight: 300;
    font-size: 3rem;
}
.km-lead {
    font-size: 1.5rem;
    font-weight: 300;
}
.km-content-title {
    display: block;
    pointer-events: auto;
}

@media (min-width: 992px){
    .km-lead {
        max-width: 80%;
    }
    .km-content>ol, .km-content>p, .km-content>ul {
        max-width: 80%;
    }
    .km-content>ol, .km-content>p, .km-content>ul {
        max-width: 80%;
    }
}

/* Anchor Menu */
.section-nav {
    padding-left: 0;
    border-left: 1px solid #eee;
}
.km-toc {
    -ms-flex-order: 2;
    order: 2;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: .875rem;
}
.km-toc {
    position: -webkit-sticky;
    position: sticky;
    top: 4rem;
    height: calc(100vh - 4rem);
    overflow-y: auto;
}

nav[data-toggle="toc"] .nav-link.active,
nav[data-toggle="toc"] .nav-link.active:hover,
nav[data-toggle="toc"] .nav-link.active:focus {
    padding-left: 18px;
    font-weight: bold;
    color: #0066cc;
    background-color: transparent;
    border-left: none;
}

/* Images */
.km-img {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.nav {
  display: Block;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.mysidetoc {
        margin-top: 5px;      
        margin-right: 5px;
        background-color: transparent;
}
.kmsvg{
    height: inherit;
}