.select {
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  color: #46565d;
}

.select--disabled {
  opacity: .5;
}

.select__btn {
  position: relative;
  overflow: hidden;
  width: 200px;
  padding: 10px 24px 9px 9px;
  cursor: pointer;
  transition: all 240ms ease-out;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #4b5468;
  border: 1px solid #99a5be;
  border-top-color: #a5b2cb;
  border-radius: 4px;
  background: #99a5be;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}


.select__btn--opened {
  color: #7a8498;
  border: 1px solid #475062;
  background: #4a5368;
  box-shadow: none;
}


.select__list {
  position: absolute;
  z-index: 50;
  top: 40px;
  left: 0;
  visibility: hidden;
  overflow: auto;
  min-width: 200px;
  max-height: 200px;
  margin: 0;
  list-style: none;
  transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
  opacity: 0;
  border-top: 1px solid #7dd8d2;
  border-radius: 4px;
  background: #62c8bf;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.select__list--opened {
  top: 50px;
  visibility: visible;
  transition: opacity 300ms ease-out, top 300ms ease-out;
  opacity: 1;
}

.select__list--overflow {
  top: auto;
  bottom: 40px;
  transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
}

.select__list-item {
  padding: 8px 12px;
  cursor: pointer;
  transition: all 150ms ease-out;
  white-space: nowrap;
  color: #2b8686;
  &:hover {
    color: #ffffff;
  }
}

.select__list-item--selected {
  color: rgba(255,255,255,.75);
  background: rgba(43,134,134,.3);
}
