/* CSS FOR THE RESPONSIVE SLIDE IN NAVIGATION PANEL/S */


.lines_two:hover {
  border-bottom-color: #d8d8d8;
  border-top-color: #d8d8d8;
}
.lines_two {
  border-bottom: 17px double #000;
  border-top: 6px solid #000;
  content:"";
  height: 5px;
  width:30px;
  cursor: pointer;
  /*margin-left: 105px;*/
  /*margin-top: 10px;*/
  top: 45px;
  right: 20px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /*display: none;*/
}
.lines_two.float {
  border-bottom: 17px double #000;
  border-top: 6px solid #000;
  float: right;
  margin-right: 2rem;
  margin-top: 31px;
  top: 0;
  right: 0;
  position: relative;
}

#sideNav {
    height: 100%;
    color: #fff;
    background: #000000;
    background-size: cover;
    font-family: sans-serif;
    z-index: 999999999;
    position: fixed;
    top:0;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;

    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -moz-transform: translate(0,0);

    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    width: 350px;
    left: -350px;
}
.slide-in-menu {
  margin-top: 70px;
}
.cross {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 75px;
    background: url('../img/close_cross.png') top right no-repeat;
    cursor: pointer;
}
.closeMenu {
  border-bottom: 17px double white;
  border-top: 6px solid white;
  content:"";
  height: 5px;
  width:30px;
  cursor: pointer;
  /*margin-left: 105px;*/
  margin-top: 10px;
  right: 20px;
  position: absolute;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.closeMenu:hover {
  border-bottom-color: #d8d8d8;
  border-top-color: #d8d8d8;
}
#sideNav.active {
  transform:translate(100%,0);
  -webkit-transform:translate(100%,0);
  -ms-transform:translate(100%,0);

  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
}
#sideNav ul li {
    list-style-type: none;
}
#sideNav ul li:last-of-type a {
  border: none;
  margin-bottom: 4rem;
}
#sideNav ul li a {
    text-decoration: none;
    color: #fff;
    margin: 0 1em;
    border-bottom: 1px solid #999;
    display: block;
    padding: 17px 0 9px 8px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    cursor: pointer;
}
#sideNav ul li a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.slideNavLogo {
  max-width: 150px;
  margin-top: 15px;
  margin-left: 15px;
}




/* Tablet Portrait size upwards (devices and browsers) */
@media only screen and (min-width: 768px) {

  #sideNav {
    width: 350px;
    left: -350px;
  }
  /*.lines_two {
      display: none;
  }*/

}

/* Tablet Portrait size and below (devices and browsers) */
@media only screen and (max-width: 767px) {

  #sideNav {
    width: 250px;
    left: -250px;
  }
  /*.lines_two {
      display: block;
  }*/

}
