@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Asap+Condensed:600");

/*additional reset
---------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

form {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  justify-content: center;
  padding: 2%;
}
.search_entry {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
}
.searchBtn_box {
  background: #f56b90;
  color: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-content: center;
  justify-content: center;
  margin-left: 7px;
}
select {
  width: 33.3%;
  height: 30px;
  padding-left: 5px;
  border-radius: 0;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 5px 0px #ddd;
  font-size: 14px;
  color: #000;
  background: #fff;
}
@media screen and (max-width: 390px) {
  select {
    font-size: 12px;
  }
}
select option {
  position: relative;
}
select option::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid red;
  content: "";
  position: absolute;
  right: 9px;
  top: 21px;
  width: 0;
}
i.fa.fa-search {
  display: block;
  width: 100%;
  font-size: 17px;
  margin-bottom: 2px;
}
.searchBtn_box p {
  margin: 0;
  line-height: 1;
  color: #fff;
  font-size: 14px;
  padding-bottom: 0;
}
