/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */


/* Menu Button */
.menu-btn {
  width: 100px;
  padding: 2px 10px 5px 10px;
margin: 0px 0px 0px 10px;
background-image:  linear-gradient(rgba(0, 150, 222, 1), rgba(0, 79, 146, 1) 90%);
background-color: rgba(0, 103, 172, 1);
  color: #FFF;
  text-align: center;
  font-size: 1.1em;
  line-height: 21px;
  cursor: pointer;
  border: 0px;
}



.menu-btn:hover {

}



/* Menu Appearance */
.pushy {
  position: fixed;
  width: 220px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #F9F9F9;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */


}
.pushy a {
  display: block;
  color: #0045D0;
  padding: 10px 12px;
  text-decoration: none;
}
.pushy a:hover {
  color: #007600;
text-decoration: underline;
}
.pushy ul:first-child {
  margin-top: 10px;
}

.pushy ul {

  line-height: 32px;
}

.pushy ul li a{
  padding: 0px 10px 0px 10px;
  line-height: 32px;
}

.pushy ul li a:hover{
  color: #007600;
text-decoration: underline;
}


@keyframes pushopenul {
  from {
  background-color: #000;

  }

  to {
  background-color: #ddd;

  }
}

.pushy.pushy-left {
  left: 0;
  
}
.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;

}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
  
}

.pushy-open-left #content,
.pushy-open-left .push {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
  
}

.pushy-right {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

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

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  
}
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;

}





@keyframes pushopen {
  from {
width: 0px;

  }

  to {
width: 220px;

  }
}

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

.pushy-content {
  transition: visibility 0.1s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.4);
  animation-name: overslide;
  animation-duration:2s;
}

@keyframes overslide {
  from {
  background-color: rgba(0, 0, 0, 0);

  }

  to {
  background-color: rgba(0, 0, 0, 0.4);

  }
}
 

.pushy-open-left .site-overlay #close,
.pushy-open-right .site-overlay #close{
	width: 100%;
	max-width: 110px;
cursor: pointer;
text-align: center;
line-height: 32px;
padding: 3px;
 margin: 20px 0px 0px 220px;
  background-color: rgba(256, 256, 256, 1);
color: #0045D0;
font-size: 1em;

 }
 
 

 .pushy-open-left .site-overlay #close:hover, 
.pushy-open-right .site-overlay #close:hover {
  color: #007600;
	max-width: 122px;
text-align: right;
	  background-color: rgba(256, 256, 256, 1);
 background-image: url("/css/images/dialog-close.png");
background-repeat: no-repeat;
padding: 3px 6px 3px 1px;
background-size: 18px;
background-position: 1% 50%;
  animation-name: slidein, back;
  animation-duration: 0.3s, 0.3s;

		  
		  }
		  

@keyframes back {
  from {
background-size: 0px;

  }

  to {
background-size: 18px;

  }
}

@keyframes slidein {
  from {

    width: 110px; 
  }

  to {

    width: 140px; 
  }
}
 
 

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Buttons */
  /* Submenu Icon */
}
.pushy-submenu ul {
	background: #fff;
  padding-left: 0px;

  transition: max-height 0.1s ease-in-out, visibility 0.1s ease-in-out;
}
.pushy-submenu ul .pushy-link {
	  padding: 0px;

}



.pushy-submenu ul li {
  padding: 0px 1px 0px 0px;
  line-height: 20px;
  
}



.pushy-submenu button {
  width: 100%;
  color: #0045D0;
  text-align: left;
  font-size: 1em;
  background: transparent;
  border: 0;
}
.pushy-submenu button:hover {
  color: #007600;
      text-decoration: underline;
}
.pushy-submenu > a,
.pushy-submenu > button {
  position: relative;
}
.pushy-submenu > a::after,
.pushy-submenu > button::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("/css/images/arrow.svg") no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.2s;
}

/* Submenu Movement */
.pushy-submenu-closed ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul {
  max-height: 1000px;
  visibility: visible;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
  
}
.pushy-submenu-open a::after,
.pushy-submenu-open button::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.menuhr {
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
border-top: 0px solid rgba(0, 0, 0, 0.1);
border-left: 0px solid rgba(0, 0, 0, 0.1);
border-right: 0px solid rgba(0, 0, 0, 0.1);
}


/*  @Tablet @Layout: 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
 .pushy-open-left .site-overlay #close:hover, 
.pushy-open-right .site-overlay #close:hover {
 background-image: none;
 
}
}

/*  @Mobile @Layout: 320px */
@media only screen and (max-width: 767px) {
 .pushy-open-left .site-overlay #close:hover, 
.pushy-open-right .site-overlay #close:hover {
 background-image: none;
 
}
}


/*  @Wide @Mobile @Layout: 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
 .pushy-open-left .site-overlay #close:hover, 
.pushy-open-right .site-overlay #close:hover {
 background-image: none;
 
}
}



/*# sourceMappingURL=pushy.css.map */
