/*****************************
		Mobile Menu
******************************/


.menu-toggle {
    width: 60px;
    height: 60px;
    /*border:1px solid #333;*/
    display: none;


    width: 60px;
    height: 60px;
    /* border: 1px solid #333; */
    position: fixed;
    top: 60px;
    right: 2em;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99999;
}
.user-logged-in .menu-toggle {
	/*top:135px;*/
}
@media screen and (max-width: 1024px) {
	.menu-toggle {
		display: inline-block;
	}
}


.menu-toggle * {
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    transition: all .1s ease;
}

.menu-toggle:hover {
    cursor: pointer;
}

.toggle-inner {
    width: 50%;
    height: 50%;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
    top: 30%;
    left: 30%;
}

.menu-toggle:not(.active) .toggle-inner {
    
}

.menu-toggle:hover:not(.active) .toggle-inner {
   
}

.toggle-inner:before {
    content: '';
    border-top: 1px solid #333;
    width: 100%;
    position: absolute;
    top: 50%;
    left:0;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    transition: all .1s ease;
}

.menu-toggle.active .toggle-inner:after {
    content: '✕';
    /*font-family: 'Exo 2', sans-serif !important;*/
    font-weight:100 !important;
    font-size: 36px;
    vertical-align: text-top;
    line-height:30px;
    color:#666;
}

.menu-toggle.active .toggle-inner:before {
    display: none;
}

.menu-toggle.active .toggle-inner {
    border: 0;
}


/**********************************
            Navigation
**********************************/

.ndq-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 500px;
    max-width: 100%;
    background: #e1e1e1;
    color: #333;
    height: 100%;
    display: none;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    overflow: hidden;
    z-index: 9999;
    padding: 100px 0 40px 0;
}
.user-logged-in .ndq-nav {
    top:79px;
}

@media screen and (min-width: 40em) {
    .ndq-nav {
        padding: 150px 0 40px 0;
    }
}

.ndq-nav.scroll {
    overflow-y: scroll;
 /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
}

.ndq-nav a {
    color: #333;
}

.ndq-nav.on {
    display: block;
}

.ndq-nav.on.visible {
    opacity: 1;
}

.ndq-nav .inner {
    /*width:0;*/
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    /*padding:80px 0 40px 0;*/
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
    min-height: 100%;
    margin: 0 40px !important;
    overflow: hidden;
}

.ndq-nav .inner.in-view {
    /*width:auto;*/
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (min-width: 40em) {
    .ndq-nav .inner {
        /*padding:150px 0 40px 0;*/
    }
}

.ndq-nav ul li {
    list-style-type: none !important;
}
.ndq-nav ul li a {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight:300;
    font-size: 24px;
    line-height: 1.75;
    display:block;
}
.ndq-nav ul li a:hover {
    color:#3C5772;
}

.ndq-nav .menu {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.ndq-nav .menu li ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    min-height: 100%;
    background: #e1e1e1;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    transition: all .1s ease;
    margin-left:0 !important;
}

.ndq-nav .menu li ul.slide-in {
    left: 0;
}

.ndq-nav .menu li.ndq-back a:before,
.ndq-nav .menu li.ndq-has-sub-nav a:after {
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 30px;
    vertical-align: middle;
}

.ndq-nav .menu li.ndq-back {
    border-bottom: 1px dotted rgba(0,0,0, .2);
}

.ndq-nav .menu li.ndq-back a:before {
    content: '\f104';
    color:#3C5772;
    padding-right: 5px;
    display:inline-block;
    vertical-align: top;
    line-height: 1.38;
    padding-right:10px;
}

.ndq-nav .menu li.ndq-has-sub-nav > a:after {
    content: '\f105';
    color:#3C5772;
    padding-left: 5px;
    display:inline-block;
    vertical-align: top;
    line-height: 1.38;
    padding-left:10px;
}

.ndq-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0,0,0,.7);
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 999;
}

.ndq-overlay.on {
    display: block;
}

.ndq-overlay.on.visible {
    opacity: 1;
}