﻿.CustomSelect .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.CustomSelect .select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #adb5c2;
  height: 35px;
}

.CustomSelect .select-styled {
  position: relative;
  background-color: rgba(249, 249, 249, 0);
  padding: 8px 8px;
  -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;
}
.CustomSelect .select-styled:after {
    content: '\ea01' !important;
    border: none;
    font-family: 'liberty-site' !important;
    speak: none;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: 8px;
}

.CustomSelect .select-styled:hover {
  background-color: rgba(249, 249, 249, 0);
  color:#485568;
}
.CustomSelect .select-styled:active, .select-styled.active {
  background-color: rgba(249, 249, 249, 0);
  color:#485568;
}
.CustomSelect .select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
  color: #485568;
}

.CustomSelect .select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #adb5c2;
}
.CustomSelect .select-options li {
  margin: 0;
  padding: 8px 12px;
  background-color: #f8f8f8;
  -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;
}
..CustomSelect select-options li:hover {
  background: #e0e0e0;
  color: #485568;  
}
.CustomSelect .select-options li[rel="hide"] {
  display: none;
}