/home/smartbloks/.trash/eazydocs/assets/scss/blocks.scss
// Search Blocks
.search_form_wrap {
  .form-group .input-wrapper {
    position: relative;
  }
  input[type='search' i] {
    width: 100%;
    padding: 13px 48px 13px 18px;
    border: 1px solid #a9a9a9;
    border-radius: 0;
    transition: 0.4s;
    &::-webkit-search-cancel-button {
      margin-right: 55px;
    }
    &::placeholder {
      color: #999;
    }
  }
  .search_submit_btn {
    position: absolute;
    right: 10px;
    border: none;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
    > svg {
      width: auto;
      max-width: 25px;
      height: auto;
      max-height: 100%;
      min-width: 18px;
      object-fit: cover;
    }
    > i {
      font-size: 1.3em;
      font-weight: bold;
      color: #999;
    }
  }
}

.header_search_keyword {
  &.eazydocs-block-keywords {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    margin-top: 10px;
    span {
      font-size: 14px;
      color: #767474;
      margin-right: 10px;
    }
    ul {
      margin-bottom: 0;
      li {
        display: inline-block;
        margin-right: 7px;
        a {
          display: block;
          font-size: 13px;
          padding: 0 19px;
          border-radius: 45px;
          background: var(--ezd_brand_color);
          color: #fff;
          &.has-bg:hover {
            background: brand_color_rgba(0.8);
          }
        }
      }
    }
  }
}

.ezd_search_block_info {
  #ezd_searchInput {
    background: #fff;
    color: #000;
    border: 1px solid #e1e1e1;
    &::placeholder {
      color: rgb(0 0 0 / 58%);
    }
  }

  .icon_search{
    color: rgb(0 0 0 / 58%) !important;
  }
}