#searchbar {
  position: absolute;
  top: 320px;
  left: 0;
  right: 0;
  width: 50%;
  margin:0 auto;
  z-index: 1;
  box-shadow: 0 0 1rem rgba(0,0,0,.15);
}

#searchbar .tb {
  display: table;
  width: 100%;
}

#searchbar .td {
  display: table-cell;
  vertical-align: middle;
}

#searchbar input,
#searchbar button {
  border-radius: 0;
  border:0;
}

#searchbar input::placeholder {
  color: #ccc!important;
}

#searchbar form {
  height: 70px;
}

#searchbar input[type="text"] {
  width: 100%;
  height: 70px;
  line-height: 1;
}

#searchbar input[type="text"]::placeholder {
  color: #e16868;
}

#s-cover {
  width: 1px;
}

#searchbar button {
  position: relative;
  display: block;
  width: 84px;
  height: 70px;
  cursor: pointer;
  background-color: #F07C21;
}

#s-circle {
  position: relative;
  top: -8px;
  left: 15px;
  width: 36px;
  height: 35px;
  margin-top: 0;
  /* border-width: 5px; */
  border: 7px solid #fff;
  background-color: transparent;
  border-radius: 50%;
  transition: 0.5s ease all;
}

#searchbar button span {
  position: absolute;
  top: 36px;
  left: 49px;
  display: block;
  width: 22px;
  height: 20px;
  background-color: transparent;
  border-radius: 10px;
  transform: rotateZ(52deg);
  transition: 0.5s ease all;
}

#searchbar button span:before,
#searchbar button span:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 25px;
  height: 10px;
  background-color: #fff;
  border-radius: 10px;
  transform: rotateZ(0);
  transition: 0.5s ease all;
}

#s-cover:hover #s-circle {
  top: 0px;
  width: 40px;
  height: 10px;
  border-width: 0;
  background-color: #fff;
  border-radius: 20px;
}

#s-cover:hover span {
  top: 40%;
  left: 46px;
  width: 25px;
  margin-top: -8px;
  transform: rotateZ(0);
}

#s-cover:hover button span:before {
  bottom: 11px;
  transform: rotateZ(52deg);
}

#s-cover:hover button span:after {
  bottom: -11px;
  transform: rotateZ(-52deg);
}
#s-cover:hover button span:before,
#s-cover:hover button span:after {
  right: 0px;
  width: 35px;
  background-color: #fff;
}
