#header-menu-mobile {
  background-color: white;
  display: none;
  height: 100%;
  overflow: hidden;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: all 0.2s ease;
  width: 0px;
  z-index: 1;
  @media (max-width: 900px) {
    display: block;
  }
  > div {
    align-items: flex-end;
    background-color: var(--colorGreen);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    > div {
      display: flex;
      flex-direction: column;
      margin: 80px 0px 0px 0px;
      z-index: 1;
      > a {
        cursor: pointer;
        font-size: 2.4rem;
        font-weight: bold;
        padding: 10px 50px 10px 20px;
        text-decoration: none;
        &.active {
          color: white;
        }
        &:hover {
          color: white;
        }
      }
    }
  }
}
#header-menu-mobile-hamburger {
  cursor: pointer;
  display: none;
  height: 34px;
  margin: 0px;
  right: 20px;
  top: 22px;
  position: fixed;
  width: 34px;
  opacity: 0;
  z-index: 3;
  @media (max-width: 900px) {
    display: block;
  }
  &:checked {
    ~ div#first {
      transform: translate(0px, 15px) rotate(45deg);
      transform-origin: 17px 2px;
    }
    ~ div#second {
      opacity: 0;
      visibility: hidden;
    }
    ~ div#third {
      transform: translate(0px, -15px) rotate(-45deg);
      transform-origin: 17px 2px;
    }
    ~ #header-menu-mobile {
      width: 100%;
    }
  }
}
.header-menu-mobile-hamburger-bar {
  background-color: black;
  border-radius: 3px;
  display: none;
  height: 4px;
  position: fixed;
  right: 20px;
  transition: all 0.2s ease;
  width: 34px;
  z-index: 2;
  @media (max-width: 900px) {
    display: block;
  }
  &#first {
    top: 22px;
  }
  &#second {
    top: 37px;
  }
  &#third {
    top: 52px;
  }
}
