.dropdown-shell {
  position: relative;

  &:not(.open) > :global .dropdown {
    display: none;
  }

  :global .dropdown-chevron {
    margin-bottom: -0.125em;
    transition: transform 150ms;
  }

  &.open :global .dropdown-chevron {
    transform: scaleY(-1);
  }
}
