.sl-selector {
  display: inline-block;
  position: relative;
  width: 180px;
}

.sl-selector-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 6px;

  height: 36px;
  padding: 0 12px;
  cursor: pointer;
  background-color: #fff;
}

.sl-selector-entry-icon {
  margin-left: 7px;
}

.sl-selector-options {
  position: absolute;
  z-index: 1000;
  opacity: 0;
  top: 41px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.sl-selector.open > .sl-selector-entry {
  color: rgba(0, 0, 0, 0.5);
}

.sl-selector.open > .sl-selector-options {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}


.sl-selector-options::before {
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  height: 5px;
  width: 100%;
  content: "";
}

.sl-selector-options-item {
  min-height: 32px;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.sl-selector-options-item.active {
  background-color: #e6f4ff;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
}

.sl-selector-options-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.sl-selector-options-item.active {
  background-color: #e6f4ff;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
}

@media screen and (max-width: 959px) {
  .sl-selector {
    width: 130px;
  }
  .sl-selector-entry {
    height: 32px;
  }
}