.sidebar {
  width: 400px;
  max-width: 100%;
  padding: 30px 40px;
  height: 100%;
  position: fixed;
  z-index: 100;
  transition: all 0.2s linear;
  background-color: white;
  right: 0px;
  top: 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  -webkit-box-shadow: -8px 0 0 #c2c2c2;
  box-shadow: -8px 0 0 #c2c2c2;
}
.sidebar.ng-hide {
  transform: translateX(400px);
  -webkit-transform: translateX(400px);
}
.sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar a {
  width: 100%;
  height: 44px;
  cursor: pointer;
  display: inline-block;
}

.sidebar .nav-logo-link {
  height: auto;
  width: initial;
}

.sidebar a .wrapper {
  height: 44px;
  width: 30px;
  text-align: center;
  float: left;
}
.sidebar a .wrapper .sprite {
  margin: auto;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sidebar a .title {
  transition: all linear 0.2s;
}
.sidebar a .title:hover {
  color: #777777;
}
.sidebar a.no-icon {
  margin-left: 35px;
}

.nav-closed {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}

img.nav-logo {
  width: 100px;
  /* margin-left: 22px; */
  margin-left: 0.33em;
}

.menu-link,
.sidebar a {
  height: 44px;
  color: #333333;
}
.menu-link .sprite,
.sidebar a .sprite {
  float: left;
}
.menu-link .title,
.sidebar a .title {
  float: left;
  margin-left: 12px;
  height: 44px;
  line-height: 42px;
}
.menu-link:active,
.sidebar a:active,
.menu-link:focus,
.sidebar a:focus,
.menu-link:visited,
.sidebar a:visited {
  text-decoration: none;
}
.menu-link.active-link,
.sidebar a.active-link {
  color: #e74642;
}

.vertical-center,
.menu-link .sprite,
.sidebar a .sprite {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.weak-title,
.menu-link,
.sidebar a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}
