.currency-box {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.currency-box .active-currency {
  cursor: pointer;
  position: relative;
  border: 1px solid var(--theme-color);
  padding: 3px 20px 3px 8px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
}

.currency-box .active-currency::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 18px;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.currency-box .currency-list {
  display: none;
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  width: 100%;
  max-width: 200px;
  min-width: 150px;
  border: 1px solid var(--theme-color);
  z-index: 1000;
  overflow: hidden;
  border-radius: 5px;
}

.currency-box .currency-list > li {
  border-bottom: 1px dashed var(--theme-color);
  padding: 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.currency-box .currency-list > li:last-child {
  border: 0;
}

.currency-box .active-currency:hover,
.currency-box .currency-list > li.active,
.currency-box .currency-list > li:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.currency-box .currency-list.vsble {
  display: block;
}