.navigation-top {
  z-index: 10;
  position: sticky;
  top: 0;
  background-color: white;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navigation-top__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: env(safe-area-inset-top);
}

.navigation-top__drawer {
  display: block;
  border: 0;
}

@media (min-width: 900px) {
  .navigation-top__drawer {
    display: none;
  }
}

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

.navigation-top__logo {
  max-width: 230px;
  width: 100%;
}

@media (max-width: 599px) {
  .navigation-top__logo {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 900px) {
  .navigation-top__logo {
    padding-left: 1rem;
  }
}

.navigation-top__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navigation-top__links {
  display: none;
  align-items: center;
}

@media (min-width: 900px) {
  .navigation-top__links {
    display: flex;
  }
}

.navigation-top__links li {
  margin-right: 1rem;
  text-align: center;
}

@media (min-width: 900px) {
  .navigation-top__links li {
    margin-right: 2rem;
  }
}

.navigation-top__links a {
  color: #707070;
}

.navigation-top__links a:hover {
  color: #363636;
}

.navigation-top__links p:first-of-type {
  font-size: 13px;
  font-family: utopia-std-display, serif;
  font-style: italic;
  text-transform: lowercase;
}

.navigation-top__links p:last-of-type {
  font-size: 14px;
  text-transform: uppercase;
}

.navigation-top__action {
  background-color: #507A58;
  padding: .5rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navigation-top__action:hover {
  background-color: #44674a;
}

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

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

@media (max-width: 599px) {
  .navigation-top__action figcaption {
    display: none;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .navigation-top__action figcaption {
    display: none;
  }
}

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

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