.currency-switcher {
  position: relative;
}

.currency-switcher__trigger {
  background: #FFF;
  box-shadow: 2px 2px 20px 0px rgba(14, 24, 32, 0.16);
  border-radius: 32px;
  font-weight: 600;
  color: #6F3AD5;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 12px 6px 18px;
}

.currency-switcher__dropdown {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  z-index: 999;
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px rgba(14, 24, 32, 0.1);
  width: fit-content;
  margin-top: 4px;
}

.currency-switcher__option {
  padding: 10px;
  cursor: pointer;
  min-width: 79px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  font-weight: 600;
}

.currency-switcher__option:hover {
  color: var(--e-global-color-dcf185d);
  background-color: var(--e-global-color-671de5d);
}

#currency-switcher__select {
  display: none;
}

.currency-switcher__trigger:after {
  display: inline-table;
  content: "";
  min-width: 40px !important;
  height: 24px;
  background-image: var(--wpr-bg-841d11e0-d527-4da9-863e-b0bdfe898553);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}