// Import default component's file with styles
@import '../../../../components/select/style';

.st-select {
  &-content {
    height: 42px;
    padding: 0 15px;
    border-color: $st-color-dark-gray;
    border-radius: 2px;

    &:hover {
      border-color: $st-color-taupe-gray;
    }

    &:focus {
      border-color: $st-color-royal-blue;
    }

    &__clear-icon {
      width: 12px;
      height: 12px;
      padding: 0;
    }

    &--inactive &__clear-icon {
      &:hover {
        color: $st-color-royal-blue;
      }
    }

    &--active:hover {
      border-color: $st-color-royal-blue;
    }
  }

  &-dropdown {
    border: none;
    border-radius: 2;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);

    &__option {
      min-height: 48px;
      padding: 12px 18px;
      line-height: 1;
      text-overflow: ellipsis;
      word-break: break-word;
      border-bottom: none;
    }
  }
}
