/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding-left: 0;
  transition: all 0.5s ease;
}
#wrapper.toggled {
  padding-left: 0px;
}
#wrapper.toggled #sidebar-wrapper {
  width: 100%;
  top: 58px;
  background-color: #fff;
}
#wrapper.toggled #page-content-wrapper {
  margin-right: -220px;
  position: absolute;
}
#sidebar-wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  background: #323232;
  height: 100%;
  left: 220px;
  margin-left: -220px;
  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: 10px 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  max-height: 80%;
  overflow-y: auto;
}
.sidebar-nav .fa {
  font-size: 18px;
  width: 26px;
  text-align: center;
  padding-right: 10px;
}
.sidebar-nav li {
  display: inline-block;
  height: 40px;
  line-height: 20px;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
}
.sidebar-nav li:hover:before {
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
  width: 100%;
}

.sidebar-nav li a {
  color: #252525;
  display: block;
  font-size: 16px;
  padding: 10px 15px 10px 10px;
  text-decoration: none;
  text-transform: capitalize;
}
.sidebar-nav li a.m-padding {
  padding-left: 20px;
}
.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  background-color: transparent;
  color: #ff0000;
  text-decoration: none;
}
/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger {
  background: transparent;
  border: none;
  display: block;
  position: relative;
}
.hamburger:hover {
  outline: none;
}
.hamburger:focus {
  outline: none;
}
.hamburger:active {
  outline: none;
}

/*-------------------------------*/
/*       nav-wrapper         */
/*-------------------------------*/
.m-nav-wrapper {
  position: fixed;
  width: 100%;
  height: 58px;
  background: rgba(255,255,255,0.6);
  z-index: 3000;
}
.m-nav-wrapper a {
  display: block;
  width: 49px;
  text-align: center;
  height: 58px;
  line-height: 58px;
  font-size: 8px;
  cursor: pointer;
  color: #252525;
  text-transform: uppercase;
}
.m-nav-wrapper a.m-account {width: 59px;}
.m-nav-wrapper .m-logo {
  padding-left: 10px;
  width: auto;
  height: auto;
  display: block;
}
.m-search-box {
  display: none;
  position: fixed;
  width: 100%;
  top: 58px;
  left: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.m-search-box form {
  margin: 0;
  padding: 0;
  line-height: 0;
  display: block;
  position: relative;
  border: 0;
}
.m-search-box .search-content {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #444;
  margin: 0;
  padding: 0;
  border: 0;
}
.m-search-box .search-go {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #ee2525;
  margin: 0;
  padding: 0;
  border: 0;
}
.m-search-box .search-go .fa {
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  color: #fff;
}

.m-nav-wrapper.open .m-search-box {
  display: block;
  transition: 0.4s all ease-out;
}
.m-nav-wrapper .fa {
  width: 100%;
  font-size: 32px;
  padding: 13px 0;
}
