/* HEADER START */
header {
    width: 100%;
    float: left;
    height: 45px;
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.16);
    top: 0px;
    z-index: 999;
    left: 0px;
    position: fixed;
    padding-left: 250px;
}

.header-logo {
    float: left;
    width: 250px;
    border-right: 1px solid #ddd;
    height: 100%;
    padding: 0px 10px;
    display: flex;
    position: absolute;
    left: 0px;
}

.header-logo>img {
    max-height: 45px;
    max-width: 100%;
    float: none;
    margin: auto;
}

.header-navigation {
    width: 100%;
    float: left;
}

.header-navigation >ul >li {
    display: inline-block;
    float: left;
    padding: 13px;
    cursor: pointer;
}

.header-navigation >ul >li>a {
    display: inline-block;
    float: left;
    padding: 15px 15px;
    color: #545454;
    font-size: 12px;
}

.header-toggle {
    display: inline-block;
    position: absolute;
    left: 250px;
    top: 0px;
}

.header-toggle>button {
    background: transparent;
    margin-top: 0px;
    font-size: 25px;
    margin-left: 0px;
    height: 45px;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: 1px solid #ddd;
    width: 45px;
    text-align: center;
    font-weight: bold;
    color: #2196f3;
    outline: none;
}

.header-toggle>button > i {
    transition: 0.5s all ease;
}

/* HEADER ENDS */
/* SIDEBAR LEFT */
.header-navigation>ul {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0px;
}

.header-navigation >ul >li>img {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}

.panel-container {
    width: 100%;
    float: left;
    padding-left: 250px;
    transition: 0.5s all;
}

.panel-sidebar-left {
    position: fixed;
    left: 0px;
    top: 45px;
    background: #fff;
    color: #545454;
    width: 250px;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    overflow: hidden;
    height: 100%;
    padding-bottom: 45px;
}

.panel-sidebar-left>ul {
    width: 100%;
    padding: 0px;
    margin: 0px;
    overflow-y: auto;
    white-space: nowrap;
    height: 100%;
}

.panel-sidebar-left>ul>li {
    white-space: nowrap;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.panel-sidebar-left ul li a {
    display: block;
    width: 100%;
    float: left;
    padding: 10px 10px;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.panel-sidebar-left ul li a > i:first-child {
    margin-right: 10px;
}

.panel-sidebar-left>ul>li>a:hover {
    background: #ddd;
}

.panel-sidebar-left li>ul>li>a {
    padding-left: 20px;
}

.panel-sidebar-left li>ul {
    padding: 0px;
    display: none;
}

.panel-sidebar-left li>ul>li>a:hover {
    background: #dddddd59;
}

.panel-sidebar-left li>ul>li.active {
    background: #f1f3f6;
}

.panel-sidebar-left li>ul>li {
    float: left;
    width: 100%;
    display: block;
    position: relative;
}

.panel-sidebar-left li>ul>li.active:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

/* SIDEBAR RIGHT */
