.container {
    /*overflow: hidden;*/
    /*background-color: #000;*/

    /*  Prevents Flickering  */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

header {
    height: 50px;
    z-index: 50;
    background-color: white;

    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    /* starting point */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

header h1 {
    color: #9aa6af;
    text-align: left;
    font-size: 27px;
    line-height: 60px;
    font-weight: bold;
    padding-left: 5vw;
}

/* {
	height: 60px;
	position: relative;
	background-color: #f3f5f6;

	position:fixed;
	height: 60px;
	display:block;
	width: 100%;
	background: #333;
	z-index:9;
	text-align:center;
	color: #f2f2f2;
	padding: 20px 0 0 0;

}
header h1 {
	color: #9aa6af;
	text-align: left;
	font-size: 27px;
	line-height: 60px;
	font-weight: bold;
	padding-left: 20px;
}*/

.burger {
    position: absolute;
    float: left;
    padding: 0px;
    top: 10px;
    left: 10px;
    z-index: 3000;
    display: none;
}

.burger li {
    width: 30px;
    height: 4px;
    background-color: #343638;
    border-radius: 3px;
    margin: 5px 0;
    list-style-type: none;
}

.burger.open-menu li {
    background-color: #d9dde1;
}

nav {
    /*position: absolute;*/
    position: fixed;
    top: 0;
    right: 5px;
}

nav li {
    float: left;

    display: inline-block;
}

nav li a.active {
    color: black;
}

nav li a {
    font-size: 11px;
    color: #9aa6af;
    padding: 0px 15px;

    display: block;
    font-weight: 700;
}

nav li a:hover {
    color: #343638;
}

/*  Removable CSS  */

.header-section,
.body-section,
.footer-section {
    padding: 20px;
}

.header-section {
    background-color: #ffffff;
}

.body-section {
    background-color: #f4f5f6;
}

.footer-section {
    background-color: #dadee1;
}

.placefiller {
    text-align: center;
    font-size: 20px;
    border: 1px dashed rgba(190, 196, 202, 0.5);
}

.header-section .placefiller {
    line-height: 300px;
}

.body-section .placefiller {
    line-height: 900px;
}

.footer-section .placefiller {
    line-height: 200px;
    border: 1px dashed rgba(190, 196, 202, 0.9);
}

.nav-ul-logo {
    display: none;
}

.nav-ul {
    padding-top: 12px;
}
.nav-ul li a{
    cursor:pointer;
}
.nav-ul li a:hover{
    text-decoration:underline;
}


.classboard-navigation-container-bottom{
    /*display:none;*/
}



    .pageContent.mobile-nav header {
        height: 50px;
        z-index: 2;
        background-color: white;

        position: fixed;
        top: 0;
        right: 0;
        left: 0;

        /* starting point */
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.pageContent.mobile-nav header h1 {
        color: #2680EB;
        text-align: center;
        padding-left: 0;
    }

.pageContent.mobile-nav .burger {
        display: block;
    }
.pageContent.mobile-nav .classboard-navigation-container-bottom{
        /*display:block;*/
    }

.pageContent.mobile-nav .nav-ul {
        width: 80%;
        /*padding-top:120px;*/
        margin-left: 15%;
        padding-left: 0px;

    }

.pageContent.mobile-nav .nav-ul-logo {
        display: block;
        margin-top: 55px;
        margin-left: 25%;
        position: absolute;
        font-weight: 900;
        color: #2680EB;
    }

    /*  Nav Drawer Layout  */
.pageContent.mobile-nav nav {
        position: relative;
    }

.pageContent.mobile-nav nav ul {
        height: 100%;
        overflow-y: auto;
    }

.pageContent.mobile-nav nav li {
        display: block;
        float: none;
    }

.pageContent.mobile-nav nav li a {
        padding: 22px 25px;
        letter-spacing: 3px;
        font-size: 11px;
        font-weight: 700;
    }

.pageContent.mobile-nav nav li a.logo {
        display: none;
    }

.pageContent.mobile-nav nav li a.active {
        color: #343638;
        background-color: white;
    }

.pageContent.mobile-nav nav li a:hover {
        color: #343638;
        background-color: white;
    }

.pageContent.mobile-nav nav li:first-child a.active,
.pageContent.mobile-nav nav li:first-child a:hover { /*border-radius: 10px 0 0 0;*/
    }

.pageContent.mobile-nav .header-section {
        margin-top: 60px;
    }

    /* NAVIGATION ANNIMATION */
.pageContent.mobile-nav nav {
        width: 15em;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        margin: 0;
        background-color: white;
        /*border-radius: 8px;*/

        /* starting point */
        opacity: 0;
        -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        -moz-transform: translate3d(5%, 0, 0) scale(.97);
        transform: translate3d(5%, 0, 0) scale(.97);
    }

    /*Nav Expanding Open Effect*/
.pageContent.mobile-nav nav.open-menu {
        opacity: 1;

        -webkit-transform: translate3d(0, 0, 0) scale(1);
        -webkit-animation: slideIn .35s ease-in-out;

        -moz-transform: translate3d(0, 0, 0) scale(1);
        -moz-animation: slideIn .35s ease-in-out;

        transform: translate3d(0, 0, 0) scale(1);
        animation: slideIn .35s ease-in-out;
    }

    @-webkit-keyframes slideIn {
        0% {
            opacity: .3;
            -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        }
        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0) scale(1);
        }
    }
    @-moz-keyframes slideIn {
        0% {
            opacity: .3;
            -moz-transform: translate3d(5%, 0, 0) scale(.97);
        }
        100% {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0) scale(1);
        }
    }
    @keyframes slideIn {
        0% {
            opacity: .3;
            transform: translate3d(5%, 0, 0) scale(.97);
        }
        100% {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }
    }

    /*Nav Shrinking Closed Effect*/
.pageContent.mobile-nav nav.close-menu {
        opacity: 0;

        -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        -webkit-animation: slideOut .3s ease-in-out;

        -moz-transform: translate3d(5%, 0, 0) scale(.97);
        -moz-animation: slideOut .3s ease-in-out;

        transform: translate3d(5%, 0, 0) scale(.97);
        animation: slideOut .3s ease-in-out;

        pointer-events: none;
    }

    @-webkit-keyframes slideOut {
        0% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0) scale(1);
        }
        100% {
            opacity: .3;
            -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        }
    }
    @-moz-keyframes slideOut {
        0% {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0) scale(1);
        }
        100% {
            opacity: .3;
            -moz-transform: translate3d(5%, 0, 0) scale(.97);
        }
    }
    @keyframes slideOut {
        0% {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }
        100% {
            opacity: .3;
            transform: translate3d(5%, 0, 0) scale(.97);
        }
    }



    /* CONTENT ANNIMATION */
.pageContent.mobile-nav .content {
        /* starting point */
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        z-index: 1;
    }

    /*Content Sliding Open Effect*/
.pageContent.mobile-nav header.open-menu,
.pageContent.mobile-nav .content.open-menu {
        -webkit-transform: translate3d(240px, 0, 0);
        -webkit-animation: open-menu .5s ease-in-out;

        -moz-transform: translate3d(240px, 0, 0);
        -moz-animation: open-menu .5s ease-in-out;

        transform: translate3d(240px, 0, 0);
        animation: open-menu .5s ease-in-out;
    }

    @-webkit-keyframes open-menu {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
        }
        70% {
            -webkit-transform: translate3d(260px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(240px, 0, 0);
        }
    }
    @-moz-keyframes open-menu {
        0% {
            -moz-transform: translate3d(0, 0, 0);
        }
        70% {
            -moz-transform: translate3d(260px, 0, 0);
        }
        100% {
            -moz-transform: translate3d(240px, 0, 0);
        }
    }
    @keyframes open-menu {
        0% {
            transform: translate3d(0, 0, 0);
        }
        70% {
            transform: translate3d(260px, 0, 0);
        }
        100% {
            transform: translate3d(240px, 0, 0);
        }
    }

    /*Content Sliding Closed Effect*/
.pageContent.mobile-nav header.close-menu,
.pageContent.mobile-nav .content.close-menu {
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-animation: close-menu .3s ease-in-out;

        -moz-transform: translate3d(0, 0, 0);
        -moz-animation: close-menu .3s ease-in-out;

        transform: translate3d(0, 0, 0);
        animation: close-menu .3s ease-in-out;
    }

    @-webkit-keyframes close-menu {
        0% {
            -webkit-transform: translate3d(240px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, 0, 0);
        }
    }
    @-moz-keyframes close-menu {
        0% {
            -moz-transform: translate3d(240px, 0, 0);
        }
        100% {
            -moz-transform: translate3d(0, 0, 0);
        }
    }
    @keyframes close-menu {
        0% {
            transform: translate3d(240px, 0, 0);
        }
        100% {
            transform: translate3d(0, 0, 0);
        }
    }

/*@media only screen and (max-width: 1023px) {

    header {
        height: 40px;
        z-index: 2;
        background-color: white;

        position: fixed;
        top: 0;
        right: 0;
        left: 0;

        !* starting point *!
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    header h1 {
        color: #2680EB;
        text-align: center;
        padding-left: 0;
    }

    .burger {
        display: block;
    }
    .classboard-navigation-container-bottom{
        !*display:block;*!
    }

    .nav-ul {
        width: 80%;
        !*padding-top:120px;*!
        margin-left: 15%;
        padding-left: 0px;

    }

    .nav-ul-logo {
        display: block;
        margin-top: 55px;
        margin-left: 25%;
        position: absolute;
        font-weight: 900;
        color: #2680EB;
    }

    !*  Nav Drawer Layout  *!
    nav {
        position: relative;
    }

    nav ul {
        height: 100%;
        overflow-y: auto;
    }

    nav li {
        display: block;
        float: none;
    }

    nav li a {
        padding: 22px 25px;
        letter-spacing: 3px;
        font-size: 11px;
        font-weight: 700;
    }

    nav li a.logo {
        display: none;
    }

    nav li a.active {
        color: #343638;
        background-color: white;
    }

    nav li a:hover {
        color: #343638;
        background-color: white;
    }

    nav li:first-child a.active,
    nav li:first-child a:hover { !*border-radius: 10px 0 0 0;*!
    }

    .header-section {
        margin-top: 60px;
    }

    !* NAVIGATION ANNIMATION *!
    nav {
        width: 15em;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        margin: 0;
        background-color: white;
        !*border-radius: 8px;*!

        !* starting point *!
        opacity: 0;
        -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        -moz-transform: translate3d(5%, 0, 0) scale(.97);
        transform: translate3d(5%, 0, 0) scale(.97);
    }

    !*Nav Expanding Open Effect*!
    nav.open-menu {
        opacity: 1;

        -webkit-transform: translate3d(0, 0, 0) scale(1);
        -webkit-animation: slideIn .35s ease-in-out;

        -moz-transform: translate3d(0, 0, 0) scale(1);
        -moz-animation: slideIn .35s ease-in-out;

        transform: translate3d(0, 0, 0) scale(1);
        animation: slideIn .35s ease-in-out;
    }

    @-webkit-keyframes slideIn {
        0% {
            opacity: .3;
            -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        }
        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0) scale(1);
        }
    }
    @-moz-keyframes slideIn {
        0% {
            opacity: .3;
            -moz-transform: translate3d(5%, 0, 0) scale(.97);
        }
        100% {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0) scale(1);
        }
    }
    @keyframes slideIn {
        0% {
            opacity: .3;
            transform: translate3d(5%, 0, 0) scale(.97);
        }
        100% {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }
    }

    !*Nav Shrinking Closed Effect*!
    nav.close-menu {
        opacity: 0;

        -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        -webkit-animation: slideOut .3s ease-in-out;

        -moz-transform: translate3d(5%, 0, 0) scale(.97);
        -moz-animation: slideOut .3s ease-in-out;

        transform: translate3d(5%, 0, 0) scale(.97);
        animation: slideOut .3s ease-in-out;

        pointer-events: none;
    }

    @-webkit-keyframes slideOut {
        0% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0) scale(1);
        }
        100% {
            opacity: .3;
            -webkit-transform: translate3d(5%, 0, 0) scale(.97);
        }
    }
    @-moz-keyframes slideOut {
        0% {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0) scale(1);
        }
        100% {
            opacity: .3;
            -moz-transform: translate3d(5%, 0, 0) scale(.97);
        }
    }
    @keyframes slideOut {
        0% {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }
        100% {
            opacity: .3;
            transform: translate3d(5%, 0, 0) scale(.97);
        }
    }



    !* CONTENT ANNIMATION *!
    .content {
        !* starting point *!
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        z-index: 1;
    }

    !*Content Sliding Open Effect*!
    header.open-menu,
    .content.open-menu {
        -webkit-transform: translate3d(240px, 0, 0);
        -webkit-animation: open-menu .5s ease-in-out;

        -moz-transform: translate3d(240px, 0, 0);
        -moz-animation: open-menu .5s ease-in-out;

        transform: translate3d(240px, 0, 0);
        animation: open-menu .5s ease-in-out;
    }

    @-webkit-keyframes open-menu {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
        }
        70% {
            -webkit-transform: translate3d(260px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(240px, 0, 0);
        }
    }
    @-moz-keyframes open-menu {
        0% {
            -moz-transform: translate3d(0, 0, 0);
        }
        70% {
            -moz-transform: translate3d(260px, 0, 0);
        }
        100% {
            -moz-transform: translate3d(240px, 0, 0);
        }
    }
    @keyframes open-menu {
        0% {
            transform: translate3d(0, 0, 0);
        }
        70% {
            transform: translate3d(260px, 0, 0);
        }
        100% {
            transform: translate3d(240px, 0, 0);
        }
    }

    !*Content Sliding Closed Effect*!
    header.close-menu,
    .content.close-menu {
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-animation: close-menu .3s ease-in-out;

        -moz-transform: translate3d(0, 0, 0);
        -moz-animation: close-menu .3s ease-in-out;

        transform: translate3d(0, 0, 0);
        animation: close-menu .3s ease-in-out;
    }

    @-webkit-keyframes close-menu {
        0% {
            -webkit-transform: translate3d(240px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, 0, 0);
        }
    }
    @-moz-keyframes close-menu {
        0% {
            -moz-transform: translate3d(240px, 0, 0);
        }
        100% {
            -moz-transform: translate3d(0, 0, 0);
        }
    }
    @keyframes close-menu {
        0% {
            transform: translate3d(240px, 0, 0);
        }
        100% {
            transform: translate3d(0, 0, 0);
        }
    }

}*/

header.nav-slide {
    /*-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);*/
}