@import '../../assets/styles/colors';
@import '../../assets/styles/rsfonts';
.storybook-search-wrapper {
  .storybook-search-container {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: $white;
    padding: 2px 3px;
    .storybook-search-icon {
      padding: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .storybook-search-input {
      @extend .fontMontserratSemiboldXs;
      border: none;
      font-size: 10px;
      font-weight: 500;
      color: $black;
      line-height: 12px;
      &:focus {
        outline: none;
        border: none;
      }
      &:hover {
        border: none;
      }
    }
    .storybook-clear-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3px;
      cursor: pointer;
    }
    .storybook-vertical-line {
      height: 14px;
      width: 1px;
      background-color: $grey_11;
      position: relative;
      right: 2px;
    }
  }
  .storybook-expand-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}