.short-contact-box {
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  min-height:35px;
}
.searcher-box {
  position:relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color: #fff;
  align-items: center;
  margin-left: 15px;
}
.searcher-box form {
  display: flex;
  align-items: flex-end;
}
.searcher-box .submit {
  position: relative;
}
.searcher-box .submit:before {
  content: "\f002";
  font-family: "FontAwesomeSolid";
  width: 20px;
  height: 20px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  left: 10%;
  top: 25%;
}
.searcher-box input {
  padding: 5px 10px;
  border: solid 1px #ddd;
  margin: 5px 5px;
  font-weight: normal;
}
.searcher-box input[type="text"] {
  width: 350px;
  background-color:#fff;
  color:#000;
}
.searcher-box .separate {
  padding: 0px 10px;
}
.searcher-box input[type="submit"] {
  cursor: pointer;
  opacity: 0;
  width: 30px;
}
.searcher-box .cart {
  font-size: 0px;
}
.searcher-box .cart:before {
  content: "\f002";
  font-family: "FontAwesomeSolid";
  font-size: 22px;
  color: #fff;
  display: block;
  background-color: #009fe3;
  padding: 8px;
  border-radius: 30px;
}
.searcher-box .cart:hover:before {
  background-color: #000;
}
@media screen and (max-width: 740px) {
  /* .searcher-box form,
  .searcher-box .separate {
    display: none;
  } */
  .short-contact-box{
    justify-content: center;
  }
  .short-contact-box #searcher-first-element{
    order:1;
  }
  .short-contact-box #searcher-second-element{
    order:2;
  }
  .short-contact-box #searcher-third-element{
    order:4;
  }
  .short-contact-box #searcher-fourth-element{
    order:3;
  }
}
