﻿
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  /*font-size: 16px;*/
  color: #000;
  width: 200px;
  height: 24px;
  vertical-align: bottom;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #000;
  padding: 0px 7px;
  line-height: 21px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  overflow: hidden;
  outline: none;
}
.select-styled:after {
  /*content: ">";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 9px;
  right: 10px;*/
}
.select-styled:hover {
  background-color: #fff;
}
.select-styled:active, .select-styled.active {
  background-color: #fff;
}
.select-styled:active:after, .select-styled.active:after {
  /*top: 4px;
  border-color: transparent transparent #000 transparent;*/
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #000;
  border-top: 0;
  max-height: 250px;
  overflow-y: auto;
}
.select-options li {
  margin: 0;
  padding: 5px 0;
  line-height: 1.2em;
  text-indent: 8px;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover,
.select-options li.active {
  background: #2a8fbd;
}
.select-options li[rel="hide"] {
  display: none;
}

.select .arrow {
  position: absolute;
  top: 1px;
  right: 1px;
  height: 22px;
  width: 20px;
  background: #fff;
}

.select .arrow::after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 9px;
  right: 5px;
}

.select.active .arrow::after {
  top: 4px;
  border-color: transparent transparent #000 transparent;
}
