.select {
  position: relative;
  z-index: 10;
  .select__selected {
    display: flex;
    align-items: center;
    min-width: 0;
  }
  .select__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  &__option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5em 1rem;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    &:hover {
      @include useTheme("background-color", "background-panel-fragment");
    }
    &:last-child {
      border-bottom: none;
    }
  }
}