/*! 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
----------------------------------------------------------------*/
.product-title {
    position: relative;
    display: block;
    width: 100%;
    box-sizing:border-box;
    background-color: #ffffff;
    height: 250px;
    }

.product-title .productimage {
    position: absolute;
    bottom: -65px;
    right: 10px;
    display: block;
    border: 1px solid #ffffff;
    box-shadow: 1px 1px 2px #333333;
}

.product-title .title {
    position: absolute;
    bottom: 12px;
    left: 20px;
    display: block;
    color: #004D41;
    font-weight: 400;
    font-size: 20px;
    }

.product-title .fflogo {
    position: absolute;
    top: 25px;
    left: 20px;
    display: block;
}

.product-title .fflogo img {
    width: 60%;
}


/* RESPONSIVE MENU
----------------------------------------------------------------*/
.pushy{
    position: fixed;
    width: 450px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 19999;
    background: #ffffff;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
    }

.pushy .productdetails {
    clear: both;
    padding: 85px 20px 20px 20px;
    font-size: 16px;
}

.productdetails .productlocation {
    clear: both;
    font-weight: 700;
    color: #004D41;
    font-size: 16px;
    line-height: 26px;
}

.productdetails .productdescription {
    clear: both;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    padding-top: 6px;
}


/* MENU ANIMATION
----------------------------------------------------------------*/
.pushy-left{
    -webkit-transform: translate3d(-450px,0,0);
    -moz-transform: translate3d(-450px,0,0);
    -ms-transform: translate3d(-450px,0,0);
    -o-transform: translate3d(-450px,0,0);
    transform: translate3d(-450px,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(-450px,0,0);
    -moz-transform: translate3d(-450px,0,0);
    -ms-transform: translate3d(-450px,0,0);
    -o-transform: translate3d(-450px,0,0);
    transform: translate3d(-450px,0,0);
    }

/* MENU TRANSITIONS
----------------------------------------------------------------*/
.pushy, #basecontainer, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    /* 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: #004D41;
    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;
}