/* START COMMON */
body{
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    color: #343a40;
    background-color: #eee;
}
a,
a:hover
a:focus,
a:active{
    text-decoration: none;
}
p{
    line-height: 26px;
}
h1,h2,h3,h4,h5,h6{
    color: #343a40;
}
.pb-200px{
    padding-bottom: 200px;
}
.w-40{
    width: 40%;
}
iframe.video_tut{
    border: 1px solid #ccc;
    outline: 0;
    width: 75%;
    height: 450px;
    margin-bottom: 30px;
}
/* END COMMON */

/* START WRAPPER */
#warp{
    display: flex;
    width: 100%;
    align-items: stretch;
    overflow: hidden;
}
/* END WRAPPER */

/* START SIDE BAR */
.side-bar{
    position: fixed;
    min-width: 250px;
    max-width: 250px;
    min-height: 100%;
    padding-top: 45px;
    padding-bottom: 20px;
    background-color: #343a40;
    text-align: right;
    overflow-y: scroll;
    height: 100%;
}
.side-bar::-webkit-scrollbar{
    background-color: #ccc;
    width: 6px;
}
.side-bar::-webkit-scrollbar-thumb{
    background-color: #007bff;
}
.docs-menu{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.docs-menu li{
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: 2px;
}
.docs-menu li:last-child{
    margin-bottom: 0px;
}
.docs-menu li a{
    color: #fff;
    display: inline-block;
    width: 100%;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none;
    transition:all 0.4s;
    -webkit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
}
.docs-menu li a.active,
.docs-menu li a.active:hover,
.docs-menu li a:hover{
    background: #6c757d;
}
.docs-menu-bottom{
    padding: 20px;
}
.dropdown-divider{
    border-color: #6c757d;
}
.docs-menu-bottom p{
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}
.docs-menu-bottom a{
    color: #28a745;
    text-decoration: underline;
}
.docs-menu-bottom a:hover{
    color: #fff;
}
/* END SIDE BAR */

/* START MAIN CONTENT */
#main-content{
    width: 100%;
    padding: 50px 50px 50px 280px;
    min-height: 100vh;
    transition: all 0.3s;
    overflow: hidden;
}
/* END MAIN CONTENT */