$block = ".drop-down-option";

{$block} {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 32px;
  height: $height;
  color: $c-gray-dark;
  list-style: none;
  white-space: nowrap;
  cursor: default;

  > svg {
    position: absolute;
    top: 9px;
    left: 9px;
    fill: $c-focus-color-fill;
  }

  &:active {
    background-color: $c-gray-lighter;
  }

  &:last-child {
    margin-bottom: 0;
  }

  &--highlighted {
    background-color: $c-gray-lighter;
  }
}
