
.search_bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-family: 'Oxygen';
}

.search_bar form {
  width: 100%;
  max-width: 790px;
  margin-bottom: 0;
}

.search_bar form .inner-form {
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  box-shadow: 20px 8px 20px 8px rgba(0, 0, 0, 0.15);
}

.search_bar form .inner-form .input-field {
  height: 60px;
}

.search_bar form .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 10px;
  font-size: 16px;
  color: #555;
}

.search_bar form .inner-form .input-field select {
  color: #555;
  height: 100%;
  width: 100%;
  border: 0;
  padding: 10px 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.search_bar form .inner-form .input-field option {
  color: #555;
  background: transparent;
  font-size: 16px;
}

.search_bar form .inner-form .input-field input.placeholder {
  color: #888;
  font-size: 16px;
}

.search_bar form .inner-form .input-field input:-moz-placeholder {
  color: #888;
  font-size: 16px;
}

.search_bar form .inner-form .input-field input::-webkit-input-placeholder {
  color: #888;
  font-size: 16px;
}

.search_bar form .inner-form .input-field input:hover, .search_bar form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
  border-color: #fff;
}

.search_bar form .inner-form .input-field.first-wrap {
  width: 140px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}


.search_bar form .inner-form .input-field.second-wrap {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.search_bar form .inner-form .input-field.third-wrap {
  width: 74px;
}

.search_bar form .inner-form .input-field.third-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: #0e3e7c;
  transition: all .2s ease-out, color .2s ease-out;
}

.search_bar form .inner-form .input-field.third-wrap .btn-search svg {
  width: 16px;
}

.search_bar form .inner-form .input-field.third-wrap .btn-search:hover {
  background: #1358a8;
}

.search_bar form .inner-form .input-field.third-wrap .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
