/*! Pushy - v1.0.0 - 2016-3-1
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
	background-color: #143a5b;
    background-image: url(../images/logo_bug_blue.svg);
    background-size: 75% auto;
    background-repeat: no-repeat;
    background-position: 50% 62vh;
    position: fixed;
    width: 350px;
    height: 100%;
    font-size: 14px;
    top: 0;
    z-index: 99999;
    overflow: auto;
  /* enables momentum scrolling in iOS overflow elements */
}

.add-flex2 {
	display: flex; 
	justify-content: center; 
	flex-direction: column; 
}
.loginContainer {
    background-color: #000000;
    padding: 0 25px;
	height: 60px;
	width: 100%;
	margin-bottom: 15px;
}
.loginIcon {
	height: 25px;
	width: 25px;
	margin: -5px 10px 0 0;
}
.loginButton {
	font-size: 110%;
	font-weight: 400;
    color: #ffffff;
    text-decoration: none;
	text-transform: uppercase;
    outline: 0;
}
.loginButton:hover {
    color: #4683a8;
    transition: 0.4s;
    text-decoration: none;
}
.pushy-link {
	font-size: 110%;
	font-weight: 400;
    color: #ffffff;
    padding: 10px 0;
    text-decoration: none;
	text-transform: uppercase;
    outline: 0;
    transition: 0.4s;
	display: inline-block;
}
.pushy-link:hover {
    color: #c6b299;
    transition: 0.4s;
    text-decoration: none;
}
.pushy-link2 {
	font-size: 90%;
	font-weight: 400;
    color: #ffffff;
    padding: 10px 0 0 20px;
    text-decoration: none;
	text-transform: uppercase;
    outline: 0;
    transition: 0.4s;
	display: inline-block;
}
.pushy-link2:hover {
    color: #c6b299;
    transition: 0.4s;
    text-decoration: none;
}
.pushy.pushy-right {
    right: 0;
}

/* Menu Movement */

.pushy-right {
	text-align: left;
	padding-left: 0;
    -webkit-transform: translate3d(350px, 0, 0);
    -ms-transform: translate3d(350px, 0, 0);
    transform: translate3d(350px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
    -webkit-transform: translate3d(-350px, 0, 0);
    -ms-transform: translate3d(-350px, 0, 0);
    transform: translate3d(-350px, 0, 0);
}

.pushy-open-right .pushy {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.pushy ul:first-child {
    margin-top: 0;
}
.pushy ul {
    list-style-type: none;
	padding: 0;
}

/* Menu Transitions */
#container,
.pushy,
.push {
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
    display: none;
    -webkit-animation: fade 500ms;
    animation: fade 500ms;
}

.pushy-open-right .site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-image: url("../images/tan_flooring.jpg");
    background-size: cover;
    background-position: center;
    -webkit-animation: fade 500ms;
    animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px) {

.pushy-link {
	font-size: 30px;
}
.pushy-link2 {
	font-size: 40px;
}
.pushy {
    width: 560px;
}
.pushy-right {
    -webkit-transform: translate3d(560px, 0, 0);
    -ms-transform: translate3d(560px, 0, 0);
    transform: translate3d(560px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
    -webkit-transform: translate3d(-560px, 0, 0);
    -ms-transform: translate3d(-560px, 0, 0);
    transform: translate3d(-560px, 0, 0);
}
}