html, body{
    width: 100%;
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    background: #dfe2e3;
    line-height: 18px;
}

body{
    position: relative;
}

* {
    margin: 0;
    padding: 0;
}

a:link {
    text-decoration: none;
}

/* NAVIGATION BAR */
nav{
    border-right: #009688 solid;
    background-color: #FFFFFF;
    width: 250px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.nav_header{
    background: #009688;
    border-right: #009688 solid;
    padding: 10px;
    color:#ffffff;
    font-size: 24px;
    line-height: 30px;
    height: 90px;
    font-weight: normal;
}
.nav_header .private_cabin{
    display: block;

    padding: 3px 3px 3px 45px;
    margin: 10px 5px 5px 30px;

    background: #FFFFFF;
    opacity: 0.9;
    border-radius: 70px;

    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #12877C;
}
.nav_header .avatar_container{
    border-radius: 50%;
    background-color: #1d7d74;
    border: #1d7d74 solid 3px;
    height: 50px;
    width: 50px;

    position: absolute;
    z-index: 10002;
    opacity: 1;
    top: 10px;
    left: 15px;
}
.nav_header .avatar_container .avatar{
    height: 50px;
    width: 50px;
    margin-top: 0.5px;
}
.nav_header .username{
    display: inline-block;

    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    margin-top: 10px;
}
.nav_header .private_cabin img{
    width: 10px;
    height: 14px;

    padding-right: 8px;
}

.nav_header .app_name a{
    color: white;
    font-size: 24px;
    line-height: 24px;
    display: block;
}
.nav_header .logout {
    display: block;
    float: right;
    background: url('/images/logout.svg') no-repeat;
    background-size: cover;
    height: 27px;
    width: 27px;
    margin-top: 10px;
}
.nav_body{
    margin-top: 30px;

}
.nav_body ul{
    display: block;
    list-style-type: none;
}
.nav_body ul li{
    display: block;
    height: 30px;
    line-height: 30px;
    margin: 10px 0px;
}
.nav_body ul li img{
    display: inline-block;
    padding-left: 15px;

    vertical-align: baseline;
}
.nav_body ul li a{
    display: inline-block;

    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    font-size: 16px;
    color: #4D4D4D;

    letter-spacing: 0;
    opacity: .87;
    text-decoration: none;
    padding-left: 12px;
}
.nav_body ul li:hover{
    background: #F2994A;
    color: white;
}



main{
    display: block;
    position: relative;
    background: #ffffff;
    min-height: 98%;
    min-width: 420px;

    margin: 8px 315px 20px 265px;
    padding-bottom: 20px;
    box-shadow: 0 9px 19px rgba(0,0,0,0.30), 0 7px 6px rgba(0,0,0,0.22);
}

.adds{
    background-color: #FFFFFF;
    width: 300px;
    height: 600px;
    margin-right: 5px;
    margin-top: 0px;
    display: inline-block;
    position: absolute;

    right:0px;
    top:0px;
}

#modal_background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    z-index: 100;

}

.d-b{
    display: block !important;
}
.d-n {
    display: none !important;
}

.f-l {
    float: left;
}

.f-r {
    float: right;
}
.f-n{
    float: none !important;
}

.c-b {
    clear: both;
}
.c-l {
    clear: left;
}
.c-r {
    clear: right;
}

@media screen and (max-width:1200px){
    nav{
        display: none;
        top:0px;
    }
    main{
        display: block;
        margin-left: 15px;
        margin-top: 8px;
    }
}

@media screen and (max-width:920px){
    main{
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 0px;
        min-height: 100%;
    }

    .adds{
        display: none;
        top:0px;
    }
}

.contextMenuButton {
    display: block;
    float: right;
    background: url('/images/ic_menu.png') no-repeat;
    background-size: cover;
    height: 17px;
    width: 17px;
    margin-left: 25px;
}
