.visibility_visible {
  visibility: visible;
}

.visibility_hidden {
  visibility: hidden;
}

.wrapper-hamburger {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 100vw;
  width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0px 10px 0px #999998;
  z-index: 51;
}

.container-hamburger {
  position: relative;
  width: auto;
  height: 100%;
  margin: 2em;

  font-size: 16px;
}

.container-hamburger > .hamburger-content {
  padding-top: 2em;
}

.container-hamburger > .hamburger-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.container-hamburger > .hamburger-close i {
  font-size: 1.5em;
}

.hamburger-icon {
  cursor: pointer;
  line-height: 0;
}

.hamburger-icon img {
  width: auto;
  height: 20px;
}

.container-hamburger-list {
  display: flex;
  flex-direction: column;
  gap: 15px;

  margin-top: 10px;
}

.container-hamburger-list i {
  margin-right: 8px;
}

@keyframes slide-in {
  from {
    left: 100vw;
  }
  to {
    left: calc(100vw - 400px);
  }
}

@keyframes slide-out {
  0% {
    visibility: visible;
    left: calc(100vw - 400px);
  }
  99% {
    visibility: visible;
    left: 100vw;
  }
  100% {
    visibility: hidden;
  }
}

.animation-in {
  visibility: visible;
  animation-name: slide-in;
  animation-duration: 1s;
  left: calc(100vw - 400px);
}

.animation-out {
  animation-name: slide-out;
  animation-duration: 1s;
  left: 100vw;
}

@media screen and (max-width: 460px) {
  .wrapper-hamburger {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0px 10px 0px #999998;
    z-index: 51;
  }
  @keyframes slide-in {
    from {
      left: 100vw;
    }
    to {
      left: 0;
    }
  }
  @keyframes slide-out {
    0% {
      visibility: visible;
      left: 0;
    }
    99% {
      visibility: visible;
      left: 100vw;
    }
    100% {
      visibility: hidden;
    }
  }
  .animation-in {
    visibility: visible;
    animation-name: slide-in;
    animation-duration: 1s;
    left: 0;
  }
  .animation-out {
    animation-name: slide-out;
    animation-duration: 1s;
    left: 100vw;
  }
}
