.search-wrapper {
  display: flex;
  position: relative;
}
.search-wrapper > .search-icon {
  position: absolute;
  top: 15px;
  left: 15px;
}
.search-wrapper > .search {
  width: 100%;
  height: 50px;
  padding-left: 40px;
  padding-right: 10px;
  border: 1px solid #707070;
  border-radius: 28px;
  font-size: 18px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .search-wrapper > .search {
    font-size: 14px;
  }
}
.search-wrapper > .btn-search {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 15px;
  background: #c4007e 0% 0% no-repeat padding-box;
  border-radius: 15px;
  opacity: 1;
  border: 0;
  font-size: 21px;
}
.search-wrapper > .btn-search:hover {
  cursor: pointer;
}
