/* Currency selector */
.currency-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-selector__label {
  font-size: 12px;
  white-space: nowrap;
}

#header .currency-selector__label {
  color: #fff;
}

.currency-selector__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.currency-selector__item {
  display: inline-flex;
}

.currency-selector__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;

  border: 1px solid currentColor;
  background-color: #fff;
  transition: background-color 0.2s, color 0.2s;
}

.currency-selector__item.current .currency-selector__link,
#header .currency-selector__item.current a.currency-selector__link {
  background-color: #16776D;
  color: #fff;
  border-color: #16776D;
}

.currency-selector__link:hover,
#header .currency-selector__link:hover {
  background-color: #16776D;
  color: #fff;
  border-color: #16776D;
}



/* Elementor ajax Search widget */

.elementor-search__group-separator {
  list-style: none;
  padding: 4px 12px 2px;
}

.elementor-search__group-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}