.app-root-wrapper{
    display:flex;
    flex-direction:row;  
}

.app-container{
    flex:1;
}

/* common styles*/

#appHeaderBar {
    height: 64px;
    box-shadow: none;
    background-color: #fff;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
    padding: 0 24px;
    position: relative;
}
#appBarLeftContainer {
    margin-left: 29px;
}
#appHeaderTitle {
    padding-right: 5rem;
    font-weight: 300;
    font-size: 34px;
    line-height: 43px;
    display: flex;
    align-items: center;
    color: #333333;
    border-right: solid #e6e6e6 1px;
    height: 64px;
    cursor: pointer;
}
#appHeaderTitle a {
    text-decoration: none;
    color: #333333;
    cursor: pointer;
}
#appBarRightContainer {
    margin-left: auto;
}
#appBarRightContainer a {
    color: inherit;
    cursor: pointer;
}
#appBarRightContainer, #appBarLeftContainer {
    display: flex;
    align-items: center;
    height: 64px
}
#appBarRightContainer .faIcon {
    color: #808080;
}

::placeholder {
    color: #000 !important;
}

#app-navigation.expanded + .app-container {
    max-width: calc(100vw - 220px);
    overflow-x: hidden;
}
#app-navigation.collapsed + .app-container {
    max-width: calc(100vw - 72px);
}
@media only screen and (max-width:900px) {
    .app-container {
        margin-top: 56px;
        height: calc(100vh - 56px);
        overflow-y: auto;
        overflow: auto;
        max-width: none !important;
    }
    #appHeaderBar {
        box-shadow: none;
        background: #F8F8F8;
    }
    #appHeaderTitle {
        border-right: 0px;
        font-weight: 700;
        font-size: 17px;
        line-height: 25px;
    }
    body{
        background-color:#f8f8f8 !important;
    }
    .app-root-wrapper{
        flex-direction:column
    }
   
}
@media only screen and (max-width:1746px) {
    #app-navigation.expanded + .app-container {
        max-width: calc(100vw - 220px);
    }
    #app-navigation.collapsed + .app-container {
        max-width: calc(100vw - 80px);
    }
}
@media only screen and (max-width:1535px) {
    #app-navigation.collapsed + .app-container {
        max-width: calc(100vw - 80px);
    }
}
.imo-trigger {
    position: fixed;
    bottom: 0;
    margin: 10px;
    border-radius: 5px;
    background-color: navajowhite;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: sans-serif;
    z-index: 10500;
    left: 14px;
    top: 50px;
}