.searchbar {
    width: 100%;
    height: 55px;
    background-color: white;
    position: relative;
    text-align: center;
    border-bottom: 1px solid #CCC;
}
.searchbar__inputWrapper {
    max-width: 500px;
    margin: auto;
    vertical-align: middle;
    position: relative;
    height: 55px;
    line-height: 55px;
}
.searchbar__iconLeft {
    position: absolute;
    top: 17px;
    left: 15px;
    font-size: 19px;
}
.searchbar__iconRight {
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: black;
}
.searchbar__input {
    height: 30px;
    background-color: white;
    margin: 7px;
    border: 1px solid #CCC;
    padding: 4px 70px 4px 30px;
    border-radius: 14px;
    width: calc(100% - 14px);
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    font-size: 1rem;
}
.searchbar__input:focus {
    outline: none;
}

.searchbar__searchCount {
  position: absolute;
  top: 18px;
  right: 37px;
  color: #777;
  font-weight: 200;
  font-size: 1.1rem;
  line-height: 18px;
  height: 26px;
}

@media screen and (max-width: 991px) {
  .searchbar__input {
    font-size: 1.4rem;
  }
  .searchbar__searchCount {
    line-height: 22px;
    font-size: 1.3rem;
  }
  .searchbar__iconLeft {
      top: 19px;
  }
}