/* --------------------------------------------------------
Style Sheet for jquery.pushmenu()

version: 0.0.1
author: Thomas Schwarz
email: info@thomasschwarz-websolutions.de
website: https://www.thomasschwarz-websolutions.de
License: MIT
----------------------------------------------------------*/


/* -- Push Menu -- */
#pushmenu {
  background: #333;
  position: fixed;
  top: 0;
  left: -320px;
  bottom: 0;
  max-width: 100%;
  width: 320px;
  overflow: scroll;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
#pushmenu.pushmenu-open {
  left: 0;
}

#pushmenu.pushmenu-right {
  left: inherit;
  right: -320px;
}
#pushmenu.pushmenu-right.pushmenu-open {
  left: inherit;
  right: 0;
}

#pushmenu #pushmenu-title {
  border-bottom: 1px solid rgba(0,0,0,0.2);
  color: #fff;
  position: relative;
  padding: 30px;
  text-align: center;
  text-transform: uppercase;
}

#pushmenu .pushmenu-list, #pushmenu .pushmenu-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}
#pushmenu .pushmenu-list ul {
  padding-left: 30px;
}

#pushmenu .pushmenu-list li {
  cursor: pointer;
}
#pushmenu .pushmenu-list li a {
  color: #fff;
  text-decoration: none;
  padding: 20px 30px;
  display: block;
  transition: all 0.3s; /* toDo: Cross-Browser! */
}
#pushmenu .pushmenu-list li a:hover {
  background: rgba(0,0,0,0.2);
}

/* -- Push Menu Toggle Button -- */
#pushmenu-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  height: auto;
  width: 40px;
  display: block;
  cursor: pointer;
  z-index: 9;
  outline: 0;
}

#pushmenu-toggle .pushmenu-toggle-bar {
  background: #000;
  height: 5px;
  width: 100%;
  display: block;
}

#pushmenu-toggle .pushmenu-toggle-bar + .pushmenu-toggle-bar {
  margin-top: 5px;
}
