.navigation-drawer {
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
}

.navigation-drawer__background {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.navigation-drawer__links {
  margin-top: 2rem;
  padding-top: env(safe-area-inset-top);
}

.navigation-drawer__links li:not(:last-of-type) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted white;
}

.navigation-drawer__links a {
  display: flex;
  color: white;
  align-items: center;
}

.navigation-drawer__links p {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 1rem;
}

.navigation-drawer__links figure {
  width: 20px;
  height: 100%;
}

.navigation-drawer__links svg {
  width: 100%;
  height: 100%;
}

.navigation-drawer__action {
  color: white;
  border: 1px solid white;
  padding: .5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.navigation-drawer__action figure {
  display: flex;
  align-items: center;
}

.navigation-drawer__action figcaption {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: .5rem;
}

.navigation-drawer__action svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 599px) {
  .navigation-drawer__action svg {
    width: 20px;
    height: 20px;
  }
}
