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

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  color: #fff;
  height: 25px;
}

@media ( min-width : 487px) {
  .select {
    width: 185px;
  }
}

@media ( max-width : 486px) {
  .select {
    width: 172px;
  }
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #404040;
  border: 1px solid #666;
}

@media ( min-width : 487px) {
  .select-styled {
    padding: 4px 10px;
  }
}

@media ( max-width : 486px) {
  .select-styled {
    padding: 4px 5px;
  }
}

.select-styled:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
}

@media ( min-width : 487px) {
  .select-styled:after {
    right: 10px;
  }
}

@media ( max-width : 486px) {
  .select-styled:after {
    right: 7px;
  }
}

.select-styled:hover {
  background-color: #333;
}

.select-styled:active, .select-styled.active {
  background-color: #404040;
}

.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  transform: rotate(225deg);
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #404040;
  border: solid 1px #666;
  margin-top: -1px;
}

.select-options li {
  margin: 0;
  padding: 5px 0;
  text-indent: 10px;
}

.select-options li:hover {
  background: #333;
}

.select-options li[rel="hide"] {
  display: none;
}