@charset "UTF-8";

/*[Google fonts]
--------------------------*/
@import url('https://fonts.googleapis.com/css?family=Noto+Serif:400,400i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
/*[Typogrphy]
--------------------------*/
body {
    color: rgb(113, 120, 126);
    font-family: 'Lato', sans-serif;
}
a {
    color: #ed2939;
    word-wrap: break-word;
}
a:hover {
    text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #253858;
    margin-bottom: .8rem;
    position: relative;
    font-family: 'Raleway', sans-serif;
}
.doc-content h2[id], 
.doc-content h3[id], 
.doc-content h4[id] {
    pointer-events: none;
}
.doc-content h2[id]::before, 
.doc-content h3[id]::before,
.doc-content h4[id]::before {
    display: block;
    height: 6rem;
    margin-top: -6rem;
    visibility: hidden;
    content: "";
}
.doc-content h2[id]:not(:first-child) {
    margin-top: 3rem;
}
.doc-content h3[id] {
    margin-top: 1.5rem;
}
.doc-content h2[id] span,
.doc-content h3[id] span,
.doc-content h4[id] span {
    display: block;
    pointer-events: auto;
}
.myvideo{
    max-height: 100%;
    max-width: 100%;
}
.bg-gray{
    background-color: #F4F5F7;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link{
    color: #ed2939;
    border-bottom-color: #ed2939
}
/*Navbar logo*/
.navbar-brand img {
    height: 35px;
}
/*navbar toggle*/
.navbar-light .navbar-toggler{
    border: 0;
    padding: 0;
}
@media (max-width: 991px){
    .navbar {
        padding: .5rem 1rem;
    }
}
/*[Sidebar layout]
--------------------------*/
#sidebar {
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    z-index: 1;
    background: #f5f5f5;
    padding-top: 60px;
    width: 250px;
    position: fixed;
    display: block;
    transition: all 0.3s;
    box-shadow: 3px 0 5px rgba(0,0,0,0.03);
    border-right: 1px solid #e4e8ec;
}
/*Sidebar menu*/
.metismenu li{
    padding: 5px 0;
}
.metismenu li a {
    display: block;
    color: #222;
    font-size: 15px;
    padding:8px 20px;
    font-weight: 500;
    border-bottom: 1px solid #e9e9e9;
}
.metismenu li.active a {
    color: #ed2939;
}
.metismenu li ul {
    position: relative;
    padding-left: 20px;
    list-style-type: none;
}
.metismenu li ul::before {
    top: 0;
    bottom: 0;
    left: 20px;
    content: '';
    position: absolute;
    border-left: 1px solid #ed2939;
}
.metismenu li ul li a {
    position: relative;
    font-size: 14px;
    color: #777;
    transition: 0.3s ease;
}
.metismenu li ul li a:hover,
.metismenu li ul li.active a{
    color: #ed2939;
}
.metismenu li ul li.active a::before {
    content: "";
    left: -3px;
    height: 8px;
    width: 8px;
    top: 8px;
    z-index: 1;
    position: absolute;
    background-color: #ed2939;
    border-radius: 50%;
}
.metismenu .has-arrow::after {
    right: 20px;
}
/*[Page Content]
--------------------------*/
.page-content {
    transition: all 0.3s;
    margin-left: 250px;
}
.sidebar-layout .page-content {
    margin-top: 0;
}
.page-content.active {
    width: 100%;
    margin-left: 0;
}
.content-wrapper {
    padding: 40px 15px;
}
.sidebarMenu {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 18px;
    font-family: 'Raleway', sans-serif;
}
@media (max-width: 991px) {
    .page-content {
        width: 100%;
        margin-left: 0;
    }
    .overlay {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: transparent;
        z-index: 0;
        display: none;
        top: 0;
    }
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    .page-content.active {
        width: calc(100% - 0px);
    }
}
@media (min-width: 992px){
    .content-wrapper {
        padding: 40px 15px 40px 40px;
    }
}
.alert {
    display: block;
    line-height: 24px;
    margin: 16px 0;
    padding: 16px;
    position: relative;
    clear: both;
}
.alert-primary{
    background-color: #eff9fc;
    border-color: #dbf4fc;
}
.alert.alert-warning {
    background-color: #fffae4;
    border-color: #fef0b6;
}
.alert.alert-success {
    background-color: #edfff6;
    border-color: #c4f9dd;
}
.alert::before {
    float: left;
    word-wrap: normal;
    white-space: nowrap;
    margin-left: -36px;
    content: '';
    height: 70px;
    left: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
}
.alert.alert-primary strong {
    color: #0389ff;
}
.alert.alert-warning strong {
    color: #edc10a;
}
.alert.alert-success strong {
    color: #00e676;
}


.site-footer {
    font-size: 15px;
    position: relative;
    border-top: 1px solid #e4e8ec;
    padding: 15px 40px;
}
.site-footer p{
    margin: 0;
}
.footer-menu {
    padding: 0;
    margin-bottom: 0;
    text-align: right;
}
.footer-menu li {
    display: inline-block;
    padding-right: 8px;
}
.footer-menu a {
    font-weight: 500;
    color: rgba(113, 120, 126, 1);
}
.footer-menu a:hover{
    color: #ed2939;
}
.l-title{
    color: #ed2939;
    margin-bottom: 15px;
    font-size: 30px;
}
h3 span{
    font-size: 22px;
}
b{
    color: #253858;
}
img{
    max-width: 100%;
    overflow: hidden;
}
.bg-gray{
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-top: 3px dotted #ddd;
    border-bottom: 3px dotted #ddd;    
    margin-bottom: 40px;     
}
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
pre xmp{
    margin: 0
}
#file-structure ul{
    margin-left: 50px;
    color: #333;
    line-height: 30px;
}

/*socials */
.wp {
    position: fixed;
    right: 25px;
    bottom: 250px;
    cursor: pointer;
    z-index: 8;
    transition: all .5s ease-in-out;
}
.sk {
    position: fixed;
    right: 25px;
    bottom: 200px;
    cursor: pointer;
    z-index: 8;
    transition: all .5s ease-in-out;
    margin-bottom: -15px;
}
#scroll {
    position: fixed;
    right: 20px;
    bottom: 85px;
    cursor: pointer;
    z-index: 8;
    height: 50px;
    width: 50px;
    line-height: 0;
    padding: 7px 0;
    display: none;
    transition: all .5s ease-in-out;
    background: #1f3044;
    border-radius: 100%;
    color: #fff;
    text-align: center;
}
#scroll i {
    font-size: 30px;
}
#scroll:hover {
    background: #ed2939;
}