.searchbar {
  margin-bottom: auto;
  margin-top: 10px;
  height: 44px;
  background-color: #fff;
  border-radius: 22px;
  padding: 3px;
}

.search_input {
  color: #000000;
  border: 0;
  outline: 0;
  background: none;
  width: 0;
  caret-color: transparent;
  line-height: 40px;
  transition: width 0.4s linear;
}

.searchbar:hover > .search_input {
  padding: 0 10px;
  width: 450px;
  caret-color: red;
  transition: width 0.4s linear;
}

.searchbar:hover > .search_icon {
  background: #eee;
  color: #9d0c20;
}

.search_icon {
  height: 40px;
  width: 40px;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #9d0c20;
  text-decoration: none;
}

