body.overflow-hidden {
  overflow: hidden;
}

.navbar-toggler, .navbar-toggler:focus {
  position: absolute;
  top: 90px;
  right: 20px;
  border: none;
  box-shadow: none;
  outline: none;
}

#side-menu {
  font-family: 'Montserrat';
  display: none;
  position: fixed;
  min-width: 100vw;
  top: 0;
  right: -100vw;
  height: 100%;
  overflow-y: auto;
  z-index: 500;
  background: #fff;
  background-color: var(--color-secondary);
  padding: 20px 30px;
  color: white;
  transition: 0.4s;
}

body.side-menu-visible #side-menu {
  transform: translateX(-100vw);
}

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

@media (min-width: 300px) {
  #side-menu .nav-link {
    color: #fff;
    font-size: 20px;
    /*font-weight: 600;*/
    text-align: center;
    padding: 12px 0;
  }
}

@media (min-width: 768px) {
  #side-menu .nav-link {
    color: #fff;
    font-size: 16px;
    /*font-weight: 600;*/
    text-align: center;
    padding: 12px 0;
  }
}

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

#side-menu .close {
  background-color: rgba(252,252,252,0);
  border: none;
  color: white;
  font-family: 'Montserrat';
}

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

#side-menu > button > span {
  font-family: 'Montserrat';
  font-size: 4rem;
  /*border: none;*/
  /*float: right;*/
}

