/*! Pushy - v0.9.1 - 2013-9-16
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */


/* RESPONSIVE MENU TITLE
----------------------------------------------------------------*/
.menu-title {
    display: block;
    width: 100%;
	height: 84px;
    box-sizing:border-box;
    background-color: #ffffff;
    }

/* RESPONSIVE BUTTON
-------------------------------------------------------*/  
.menu-btn{
    position: absolute;
	text-align: center;
	cursor: pointer;
	z-index: 10;
    }

.menu-btn:before{
    position: absolute;
    font-family: 'df-icomoon';
    content: "\e704";
    color: #3926CD;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    }

/* RESPONSIVE MENU
----------------------------------------------------------------*/

.scroll-disable {
  height: 100vh !important;
  overflow-y: hidden !important;

}

.pushy{
    position: fixed;
	width: 55%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 19999;
    background: #fff;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
    }

.pushy ul {
    margin: 0;
    padding: 0;
    }

.pushy ul a{
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    }

.pushy li a{
    background-color: #3926CD;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: .03em;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    font-weight: 600;
    padding: 14px 10px 14px 20px;
    letter-spacing: .05em;
    }

.pushy li li a{
    background-color: #ffffff;
    color:  #211551;
    border-bottom: 1px solid rgba(33,21,81,.1);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 10px 10px 20px;
    text-transform: none;
    }

li.highlightmobile a {
    color: #211551;
    background-color: #F1B434;
    font-weight: 600;
    font-size: 16px;
}


/* MENU ANIMATION
----------------------------------------------------------------*/
.pushy-right{
    -webkit-transform: translate3d(1000px,0,0);
    -moz-transform: translate3d(1000px,0,0);
    -ms-transform: translate3d(1000px,0,0);
    -o-transform: translate3d(1000px,0,0);
    transform: translate3d(1000px,0,0);
    }

.pushy-open{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    }

.container-push, .push-push{
    -webkit-transform: translate3d(-1000px,0,0);
    -moz-transform: translate3d(-1000px,0,0);
    -ms-transform: translate3d(-1000px,0,0);
    -o-transform: translate3d(-1000px,0,0);
    transform: translate3d(-1000px,0,0);
    }

/* MENU TRANSITIONS
----------------------------------------------------------------*/
.pushy, #basecontainer, .push{
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    -o-transition: -o-transform .4s ease;
    transition: transform .4s ease;
    /* improves performance issues on mobile*/
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 0;
    }

/* MENU OVERLAY WHEN ACTIVE
----------------------------------------------------------------*/
.site-overlay{
    display: none;
    }

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #211551;
    opacity: .8;
    cursor: pointer;
    width: 100%;
    height: 100%
    }


/* LOAD FONTS 
----------------------------------------------------*/
@font-face {
	font-family: 'df-icomoon';
	src:url('/Themes/Default/Content/Fonts/df-icomoon.eot?a9yoq0');
	src:url('/Themes/Default/Content/Fonts/df-icomoon.eot?#iefixa9yoq0') format('embedded-opentype'),
		url('/Themes/Default/Content/Fonts/df-icomoon.woff?a9yoq0') format('woff'),
		url('/Themes/Default/Content/Fonts/df-icomoon.ttf?a9yoq0') format('truetype'),
		url('/Themes/Default/Content/Fonts/df-icomoon.svg?a9yoq0#df-icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}