@import '../../style/themes/index';
@import '../../style/mixins/index';
@import '../../button/style/mixin';
@import './mixin';

@search-prefix: ~'@{mk-prefix}-input-search';

.@{search-prefix} {
  &-icon {
    color: @text-color-secondary;
    cursor: pointer;
    transition: all 0.3s;
    &:hover {
      color: fade(@black, 80%);
    }
  }

  &-enter-button {
    input {
      border-right: 0;
    }

    & + .@{mk-prefix}-input-group-addon,
    input + .@{mk-prefix}-input-group-addon {
      padding: 0;
      border: 0;

      .@{search-prefix}-button {
        width: 100%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }
  }

  // custom
  &:not(&-sr) {
    input {
      background-color: @search-background-color;
      border-color: @search-background-color;
      border-radius: @border-radius-base;
      &:hover,
      &:focus {
        border-color: @search-background-color !important;
      }
    }
  }
  // custom
  .mk-input {
    border-color: @search-background-color !important;
  }
}
