@import "https://daneden.github.io/animate.css/animate.min.css";
/*-------------------------------*/
/*           VARIABLES           */
/*-------------------------------*/
body {
  position: relative;
  overflow-x: hidden;
}
body,
html {
  height: 100%;
}
.nav .open > a {
  background-color: transparent;
}
.nav .open > a:hover {
  background-color: transparent;
}
.nav .open > a:focus {
  background-color: transparent;
}
/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#content_wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding-right: 0;
  transition: all 0.5s ease;
}
#content_wrapper.toggled {
  /*padding-right: 220px;*/
}
#content_wrapper.toggled #sidebar-wrapper {
  width: 350px;
}
#sidebar-wrapper h4{
	width: 350px;
	color: rgba(255,255,255,0.9);
}
#sidebar-wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  background: rgba(0,0,0,0.7);
  height: 100%;
  right: 350px;
  left: auto !important;
  margin-right: -350px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s ease;
  width: 0;
  z-index: 1000;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
}
.sidebar-nav > .sidebar-brand {
  font-size: 20px;
  height: 65px;
  line-height: 44px;
}
/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger {
  background: rgba(0,0,0,0.7);
  border: none;
  display: block;
  height: auto;
  margin-right: 0px;
  position: fixed;
  top: 45px;
  right: 0px;
  width: 64px;
  z-index: 999;
  text-shadow: 3px 3px 5px black;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  color: #fff !important;
  opacity: 0.7 !important;
  height: 125px;
  padding: 0px;
}

@media (min-width: 768px){
  .hamburger {
    top: 165px; 
  }
}

@media (min-width: 992px){
  .hamburger {
    top: 105px; 
  }
}
@media (min-width: 1200px){
  .hamburger {
    top: 120px; 
  }
}


.hamburger:hover, .hamburger.is-open{
	opacity: 1 !important;
}
.hamburger.is-open{
	right: 350px;
}
.hamburger:after{
	content: '<<';
	font-size: 24px !important;
	font-weight: bold;
	line-height: 2px !important;
	display: block;
	margin-top: 10px;
}
.hamburger.is-open:after{
	content: '>>';
}

/*-------------------------------*/
/*          Dark Overlay         */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}