:root {
    --background-color: #EEE;
    --theme-color: #FFF;
    /*--text-color: #00a5bb;*/
}

* {
    box-sizing: border-box;
}

body {
    /*color: var(--text-color);*/
    background: var(--background-color);
}

/**/
.top-header {
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    background: #FFF;
    box-shadow: -1px -1px 12px 0 #999;
    z-index: 100;
}

.header-project-title {
    color: #000;
}

.header-project-title {
    line-height: 50px;
    font-size: 21px;
    margin-left: 21px;
}

.header-project-title img {
    height: 40px;
    /* float: left; */
    line-height: 50px;
    margin: 5px 9px 5px 0;
}

.user-info {

}

.user-info > div {
    display: block;
    float: right;
    margin-right: 30px;
    margin-top: 4px;
}

.user-info > div > b {
}

.user-info > div > small {
    position: relative;
    top: -6px;
}

.user-info > img {
    display: block;
    width: 40px;
    border-radius: 50%;
    margin: 5px;
    float: right;
    margin-right: 30px;
}

/**/
.sidebar-left {
    background: #FFF;
    float: left;
    width: 240px;
    position: fixed;
    left: 0;
    top: 50px;
    border-right: 2px solid #e5e5e5;
}

.menu-l1 {
    list-style: none;
    padding: 0;
    margin: 0;
    /* background: #eeeeeead; */
}

.menu-l1 > li {
}

.menu-l1 > li > a {
    text-decoration: none;
    display: block;
    background: #ddd;
    padding: 10px 15px;
    color: #000000;
    font-weight: bold;
}

.menu-l1 > li > a > i {
    display: inline-block;
    margin-right: 15px;
}

.menu-l2 {
    list-style: none;
    padding: 0;
    margin: 0;
    /* margin-left: 37px; */
    /* background: #999; */
}

.menu-l2 > li {
    /* padding-left: 15px; */
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
}

.menu-l2 > li > a {
    text-decoration: none;
    padding-left: 51px;
    background: #eeeeeead;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #000;
    font-weight: unset;
    font-size: 15px;
    border-bottom: 1px solid #ddddddad;
}

.project-selector {
    padding: 7px;
}

.project-selector > div {
    padding: 7px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;

    -moz-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.project-selector > div:hover {
    background: #ccc;
}

.char-icon {
    background: #000000c7;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin-right: 8px;
}

main {
    position: fixed;
    top: 50px;
    left: 240px;
}

.container-data {
    margin: 0 30px;
}

/* Data Processing Window */
.data-processing-window {
    display: none;
    width: 100%;
    height: 100%;
    padding: 1%;
    position: fixed;
    background: #00000080;
    z-index: 100;
}

.data-processing-window .card {
    height: 100%;
}

.toolbar-options {
    margin: 0;
    padding: 0;
    list-style: none;
}

.toolbar-options > li {
    font-size: 20px;
    display: inline-block;
    text-align: center;
    width: 25px;
}

.toolbar-options > li > i {
    color: #666;
    cursor: pointer;
}

.toolbar-options > li > i:hover {
    color: #393;
}