

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

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #495057;
  width: 100%;
  height: 40px;
  text-align: left;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #004A80;
  padding: 8px 15px;
  -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;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.select-styled:after {
  content: "";
  background: url(../images/icon-arrow.png);
  position: absolute;
  top: 12px;
  right: 15px;
  width: 17px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .select-styled:after {
      background: url(../images/icon-arrow@3x.png);
      background-size: 17px 12px;
      background-repeat: no-repeat;
  }
}

.select-styled:hover {
  background-color: #fff;
  border: 1px solid #004A80;
}
.select-styled:active, .select-styled.active {
  background-color: #fff;
  border: 1px solid #004A80;
}
.select-styled:active:after, .select-styled.active:after {
  top: 12px;
  transform:rotate(180deg);
  -moz-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #CDD6DA;
  -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;
  -ms-transition: all 0.15s ease-in;
}
.select-options li:first-child {
  border-top: none;
  display: none;
}
.select-options li:hover {
  color: #004A80;
  background: #fff;
}
.select-options li[rel="hide"] {
  display: none;
}

