* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-size: 13px;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
}

.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wrapper .main-header {
    width: 100%;
    height: 50px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
}

.main-header .main-logo {
    width: 230px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    background-color: #393D49;
    color: #FFFFFF;
}

.main-header .main-navbar {
    flex: 1;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 1px 4px #f0f0f0;
}

.main-navbar .navbar-lists {
    flex: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 5px 0;
}

.navbar-lists .navbar-item {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
    border-radius: 2px;
}

.navbar-lists .navbar-item.navbar-item-active {
    background-color: #16baaa;
}

.navbar-item a {
    box-sizing: border-box;
    padding: 10px 10px 10px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: inline-block;
}

.navbar-item.navbar-item-active a {
    color: #FFFFFF;
}

.navbar-item .navbar-close {
    height: 16px;
}

.navbar-item.navbar-item-active .navbar-close {
    color: #FFFFFF;
}

.navbar-close.navbar-close-active {
    background-color: #FF5722;
    color: #FFFFFF;
}

.main-navbar .navbar-custom-menu {
    width: 200px;
    display: flex;
    justify-content: flex-end;
    align-content: center;
}

.navbar-custom-menu .navbar-custom-item {
    padding: 0 20px;
    line-height: 50px;
}

.navbar-custom-menu .navbar-custom-item.logout {
    border-bottom: 5px solid #FFFFFF;
}

.navbar-custom-menu .navbar-custom-item.logout:hover {
    border-bottom: 5px solid #1E9FFF;
}

.navbar-custom-item > a {
    display: flex;
    height: 100%;
    align-content: center;
}

.wrapper .main-sidebar {
    width: 230px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 98;
    padding-top: 50px;
    height: 100%;
    background-color: #393D49;
    overflow: auto;
    scrollbar-color: #393D49 #282B33;
    scrollbar-width: thin;
}

.main-sidebar .main-menu {
    width: 100%;
}

.main-menu .menu-item {
    width: 100%;
}

.menu-item .menu-body-title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 5px 20px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
}

.menu-item .menu-body-content {
    width: 100%;
    padding: 5px 0;
    line-height: 35px;
    display: none;
    color: #FFFFFF;
    background-color: #282B33;
}

.menu-item.menu-item-active .menu-body-content {
    display: block;
}

.menu-body-content .menu-body-item {
    width: 100%;
    padding: 0 30px;
    line-height: 40px;
    border-left: 3px solid #282B33;
}

.menu-body-item.menu-body-item-active {
    background-color: #1E9FFF;
    border-left: 3px solid #1E9FFF;
}

.menu-body-item.menu-body-item-hover {
    border-left: 3px solid #1E9FFF;
}

.wrapper .main-content {
    margin-left: 235px;
    padding-top: 50px;
    position: relative;
    height: 100%;
}

.main-content .main-pane {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: none;
}

.main-pane.main-pane-active {
    display: block;
}

.main-pane iframe {
    width: 100%;
    height: 100%;
    border: none;
}
