/* div.search {
	align-items: center;
	display: flex;
	justify-content: center;
	position: relative;
} */

.search-form {
  margin: 0;
  padding: 0;
  width: 100%;
}

.search-title {
  margin-bottom: 16px;
}

.search .form.container .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  align-items: center;
}

.search-input {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  border: 2px solid var(--dark-grey-color);
  box-shadow: var(--input-field-shadow);
  display: flex;
  flex-direction: row;
  font-size: 16px;
  height: 48px;
  line-height: 32px;
  position: relative;
  flex: 1;
}

.search-input .icon {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex: none;
  height: 100%;
  justify-content: center;
  width: 40px;
}

.search-input input[type="text"] {
  background-color: transparent;
  border-radius: 0;
  border: none;
  flex: 1;
  font-size: inherit;
  height: 100%;
  line-height: inherit;
  outline: none;
}

.search-input input[type="text"],
.search-input input[type="text"]:active,
.search-input input[type="text"]:focus,
.search-input input[type="text"]:hover {
  border: none;
  outline: none;
}

.search-clear {
  background-color: transparent;
  border-width: 0;
  color: var(--dark-grey-color);
  display: block;
  font-weight: normal;
  height: 100%;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.search-clear:focus,
.search-clear:hover {
  color: var(--black-color);
  outline: none;
}

.search-button {
  height: 48px;
  line-height: 48px;
  margin-left: 8px;
}

.search-input .search-button {
  height: 36px;
  line-height: 36px;
  margin-right: 4px;
}
