.eis-dropdown {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-width: 1px;
  border-style: solid;
  outline: none;
  cursor: pointer;
  transition: all .2s ease;
  display: none;
}

.eis-dropdown:hover {
  filter: brightness(1.05);
}

.eis-dropdown:focus {
  outline: none;
}

.eis-wrapper {
  position: relative;
}

.eis-wrapper::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

[data-eis-group]:not(.eis-active) {
  display: none !important;
}

.eis-button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  z-index: 1;
}

.eis-button>button {
  font-size: 1rem;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.eis-button>button::after {
  content: '';
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  width: 8px;
  height: 8px;
  position: relative;
  top: 4px;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.eis-button>ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 15rem;
  overflow-y: auto;
  border: 1px solid currentColor;
}

.eis-button>ul.hidden {
  display: none;
}

.eis-button>ul::-webkit-scrollbar {
  width: 8px;
}

.eis-button>ul li {
  cursor: pointer;
}

.eis-button>ul li.selected {
  font-weight: bold;
}

body[data-elementor-device-mode="mobile"] .eis-dropdown {
  display: block;
}

body[data-elementor-device-mode="mobile"] .eis-button {
  display: none;
}