:host {
  width: 100%;
  display: flex;
}

.search-bar {
  box-sizing: border-box;
  height: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  font-family: var(--ifx-font-family);
}
.search-bar.closed {
  display: flex;
  width: auto;
  justify-content: flex-start;
}
.search-bar .search-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.search-bar .search-bar-wrapper a {
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  color: #0a8276;
  cursor: pointer;
}
.search-bar .search-bar-wrapper a:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0a8276;
}
.search-bar .search-bar-wrapper ifx-search-field {
  width: 100%;
}
.search-bar .search-bar__icon-wrapper {
  display: none;
  flex-direction: row;
  align-items: center;
}
.search-bar .search-bar__icon-wrapper ifx-icon:hover {
  cursor: pointer;
}
.search-bar.closed .search-bar__icon-wrapper {
  display: flex;
}
.search-bar.closed .search-bar-wrapper {
  display: none;
}