html, body {
    width: 100%;
    height: 100%;
}
aside {
    width: 250px;
    height: 100%;
    background-color: #fff;
    display: block;
    position: fixed;
    padding: 60px 0;
    margin: 0;
    font-size: .9rem;
    z-index: 9998;
}
nav {
    display: block;
    text-align: center;
    padding: 10px 0;
    margin: 0;
    background-color: #f5f5f5;
    width: 250px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    height: 60px;
}
nav img {
    width: 40px;
    height: 40px;
    display: inline;
    margin: 0 10px;
}
nav b {
    display: inline;

}
aside ul {
    display: block;
    margin: 0;
    padding: 0;
    direction: rtl;
}
aside li {
    display: block;

}
aside li img {
    width: 25px;
    height: auto;
    display: inline;
    padding: 0 0 0 5px;
    position: absolute;
    right: 10px;
    top: 5px;
}
aside li a {
    display: block;
    padding: 5px 20px;
    position: relative;
}
aside li a b {
    padding-right: 15px;
}
aside ul li a:hover {
    background-color: #FAFAFA;
}
aside ul li ul li a:hover {
    background-color: transparent;
}
aside ul li ul {
    padding-right: 30px;
    font-size: 95%;
}
main {
    padding: 0 250px 0 0;
    background-color: #666;
    min-height: 100%;
}
.full {
    padding: 0;
    height: 100%;
    background-color: #CACACA;
}
.box {
    background-color: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    border: solid 1px #eaeaea;
}
.box p {
    text-align: justify;
}
.full .box {
    margin: 250px auto 0 auto;
    max-width: 100%;
    width: 500px;
}
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #90a1aa;
}
::-webkit-scrollbar-thumb {
    background:  #455A68;
}
::-webkit-scrollbar-thumb:hover {
    background: #1b1e21;
}
.login-logo {
    margin: -90px 0 30px 0;
    text-align: center;
}
.login-logo img {
    max-width: 100px;
}
.w-200 {
    width: 200px;
}
.logout {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline;
}
.logout img {
    max-width: 40px;
}
img.online {
    width: 25px;
    padding: 0;
    margin: 0 -25px 0 5px;
    float: right;
}
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group>.input-group-append:last-child>.input-group-text:not(:last-child), .input-group>.input-group-append:not(:last-child)>.btn, .input-group>.input-group-append:not(:last-child)>.input-group-text, .input-group>.input-group-prepend>.btn, .input-group>.input-group-prepend>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group>.input-group-append>.btn, .input-group>.input-group-append>.input-group-text, .input-group>.input-group-prepend:first-child>.btn:not(:first-child), .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), .input-group>.input-group-prepend:not(:first-child)>.btn, .input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.widget {
    background-color: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    border: solid 1px #eaeaea;
    text-align: center;
}
.widget .header {
    font-size: 2rem;
}
.widget .footer {
    font-size: 4rem;
}
@media only screen and (max-width: 768px) {
    aside {
        width: 100%;
        display: none;
        font-size: 1.1rem;
    }
    main {
        padding: 60px 0 0 0;
    }
    nav {
        width: 100%;
    }
    .w-200 {
        width: auto;
    }
}

