/*----------------------------------
 search
----------------------------------*/
.search {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search form {
  width: 100%;
}

.search fieldset {
  border: none;
  width: 100%;
  height: 40px;
  display: flex;
}

.search input.text {
  width: 70%;
  display: flex;
  padding: 0 10px;
  background-color: #ebeff3;
  border-radius: 0 3px 3px 0;
  border: 1px solid white;
  outline: none;
}

.search input.button {
  width: 30%;
  background-color: #222f3e;
  border: 1px solid #7a8591;
  color: #b4bcc5;
  padding: 8px 15px;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
}