.component-search {
  display: flex;
  position: relative;
}
.component-search input {
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  width: 100%;
  height: 100%;
  outline: none;
  background: #fff;
  font-size: 1em;
  padding: 10px;
  border-bottom-color: var(--primary-color);
  font-family: "Open Sans", sans-serif;
}
.component-search input::placeholder {
  color: #aaa;
}
.component-search .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0.75em;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.component-search .search-button svg {
  fill: var(--primary-color) !important;
  height: 100%;
  display: block !important;
}

.template4 .component-search input {
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}