.dropdownMenu {
  @apply fixed right-0 mt-7 origin-top-right outline-none bg-primary z-40 w-full h-full;

  @screen lg {
    @apply absolute border border-accents-1 shadow-lg w-56 h-auto;
  }

  & .link {
    @apply flex cursor-pointer px-6 py-3 block hover:bg-accents-1 transition ease-in-out duration-150 text-base leading-6 font-medium text-gray-900 items-center;
    text-transform: capitalize;
  }

  &.off {
    @apply hidden;
  }
}