.CurrencySwitcher {
  position: relative;
  margin-left: var(--spaceMd);
}

.CurrencySwitcher-active {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
  cursor: pointer;
  text-transform: uppercase;
}

.CurrencySwitcher-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .5rem .5rem 0 .5rem;
  border-color: var(--colorText) transparent transparent transparent;
}

.CurrencySwitcher-dropdown {
  position: absolute;
  top: calc(100% + 7px);
  right: .5em;
  border-top: 3px solid var(--colorBrand);
  opacity: 0;
  transition: all .25s ease-in-out;
  background: #fff;
  box-shadow: 0 0 20px #00000030;
  text-transform: uppercase;
  font-weight: 500;
}

.CurrencySwitcher:hover .CurrencySwitcher-dropdown {
  opacity: 1;
}

.CurrencySwitcher-dropdown a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: var(--colorText);
}

/*# sourceMappingURL=currency-switcher.min.css.map */
