/** ------------------------------------------------------------------------- */
/** ----------------------- INICIO MENU RESPONSIVO -------------------------- */
/** ------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 0; /* Height of navbar */
    bottom: 0;
    right: 100%;
    width: 60%;
    height: 100vh;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    z-index: 1000;
    background-color: #950d0c;
    transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out,
      -webkit-transform 0.2s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(-100%);
    transform: translateX(100%);
  }
}

/*overlay*/
div.overlay {
  height: 120%;
  position: fixed;
  bottom: 0;
  top: 0;
  left: -100%;
  right: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: all ease 0.2s;
}
div.overlay.open {
  left: 60%;
  right: 0;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
