.expandable-search .search-form {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  ;
  transition: width 0.4s ease;
  margin-right: 24px;
}

.expandable-search .search-form.expanded {
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  padding-right: 8px;
}

.expandable-search .search-field {
  flex-grow: 1;
  border: none;
  padding: 4px 8px;
  outline: none;
  display: none;
}

.expandable-search .search-form.expanded .search-field {
  display: inline-block;
}

.expandable-search .search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: white;
  font-size: 24px;
}

.expandable-search .search-form.expanded .search-toggle {
  color: rgba(0, 0, 0, 0.56);
  font-size: 18px
}

.expandable-search .clear-button {
  display: none;
  color: white;
  background: rgba(0, 0, 0, 0.56);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0;
  margin-right: 6px;
}

.expandable-search .search-form.expanded .clear-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.75px;
}