.adv-select {
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: #494949;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: .96em;
  color: #fdfdfd;
}

.adv-select.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.adv-select.disabled * {
  cursor: not-allowed;
}

.is-selected {
  background-color: #646464;
}

.adv-select__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  background: #494949;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  display: none;
}

.adv-select.is-open .adv-select__dropdown {
  display: block;

}

.adv-select__dropdown {
  max-height: 250px;
  overflow-y: auto;
}

.adv-option {
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 30px;
  text-align: center;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.adv-option:hover {
  background-color: #838383;
}

.adv-select>div {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  width: stretch;
  cursor: pointer;
}

.adv-select>div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 40px;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.adv-select>div:first-child i {
  margin-top: 13px;
  font-size: 1em;
}

.adv-select>div:first-child {
  padding: 2 8 2 8;
  width: 100%;
}

.arrow-icon {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(0deg);
  transition: transform 0.35s ease;
}

.adv-select.is-open .arrow-icon {
  transform: rotate(180deg);
}