body.overflow-hidden {
  overflow: hidden;
}

#side-menu {
  display: none;
  position: fixed;
  min-width: 300px;
  top: 0;
  right: -300px;
  height: 100%;
  overflow-y: auto;
  z-index: 500;
  background: rgba(0,39,85,0.91);
  padding: 20px 30px;
  color: #f2f5f8;
  transition: 0.4s;
}

body.side-menu-visible #side-menu {
  transform: translateX(-200px);
}

#side-menu .contents {
  margin-top: 53px;
}

#side-menu .nav-link {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
}

#side-menu .nav-link:hover {
  opacity: .1;
}

#side-menu .close {
  font-size: 25px;
  font-weight: 400;
  margin-right: 95px;
  border: 1px solid #dfe8ee;
  border-radius: 15px;
  opacity: 0.7;
  text-shadow: none;
  color: #b30202;
}

.side-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.57);
  z-index: 100;
  display: none;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
}

.icon {
  margin-right: 5px;
}

.fa {
  margin-right: 5px;
}

