* {
    box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    font-family: 'Lato', sans-serif;
    left: 0;
}

body,html{
    overflow-y: hidden;
    margin: 0px;
}

#component-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#app-container{
    flex-grow: 9;
    padding: 30px;
    height: 100vh;
    overflow: auto;
}

#main-menu{
    flex-grow: 1;
    max-width: 300px;
    height: 100vh;
    background: #f9f9f9;
    text-align: center;
    box-shadow: 0px 0px 2px 2px rgba(50,50,50,.1);
    width: 20vw;
    overflow: auto;
}

#tdm-logo{
    height: 10vh;
    max-width: 100%;
    padding-top: 10px;
    display: inline-block;
}

#main-menu>ul{
    min-height: 720px;
    height: 89.5vh;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    align-content: flex-start;
    position: relative;
    padding-top: 20px;
}

.menu-item:first-child{
    border-top: 1px solid rgba(50,50,50,.1);
}

.menu-item{
    width: 100%;
    padding: 0px 10px;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(50,50,50,.1);
}

.menu-item>img{
    margin-left: 15px;
    height: 30px;
    display: inline-block;
}

.menu-bottom-item{
    position: absolute;
    bottom: 0px;
}

.menu-item>a{
    display: flex;
    color: #323232;
    font-size: 1.2em;
    margin-left: 35px;
    text-decoration: none;
    width: 100%;
    text-align: left;
    height: 100%;
    align-items: center;
}

.menu-item.active{
    box-shadow: 0px 0px 2px 2px rgba(55,55,55,.1) inset;
}

.menu-item:hover, .menu-item.active{
    background: #6ad46a;
}

.menu-item:hover>a, .menu-item.active>a{
    color: white;
}

#app-container>h1{
    color: #00ae00;
    border-bottom: 1px dashed #00ae00;
}

.loader {
    border: 7px solid #f3f3f3; /* Light grey */
    border-top: 7px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.clear{
    clear: both;
}

.inactive{
    pointer-events: none;
    background-color: lightgrey !important;
    color: #666666 !important;
}