.root {
  @apply relative;
}

.mainContainer {
}

.list {
  @apply flex flex-row items-center justify-items-end h-full;
}

.item {
  @apply mr-6 cursor-pointer relative transition ease-in-out duration-150 text-base flex items-center;
  &:hover {
    @apply text-accents-8 transition scale-110 duration-150;
  }

  &:last-child {
    @apply mr-0;
  }

  &:focus {
    outline: none;
  }
}