.dropdown {
  padding-bottom: 10px;
  background-color: #fff;
  z-index: 1000;
  position: absolute;
  width: 200px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(63,63,68,0.05),0 1px 3px 0 rgba(63,63,68,0.15);
  nav {
    form {
      margin: 0;
    }
    a,
    button {
      display: block;
      width: 100%;
      color: var(--color-grey-dark);
      padding: 10px 20px;
      border: 0;
      background: transparent;
      font: inherit;
      text-align: left;
      cursor: pointer;
      &:hover {
        background-color: var(--color-grey-light);
      }
    }
  }
}
