

.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: 38px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #ced4da;
  padding: 8px 15px!important;
  -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: 0.25rem;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  background: url(../../images/new/select-icon@2x.png);
  position: absolute;
  top: 12px;
  right: 15px;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
}
.select-styled:hover {
  background-color: #fff;
  border: 1px solid #60bf78;
}
.select-styled:active, .select-styled.active {
  background-color: #fff;
  border: 1px solid #60bf78;
}
.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: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #ced4da;
  -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;
}
.select-options li:hover {
  color: #60bf78;
  background: #fff;
}
.select-options li[rel="hide"] {
  display: none;
}

.select-options-up {
  display: none;
  position: absolute;
  /* top: 100%; */
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  bottom: 100%;
  height: 350px;
  overflow: auto;
  box-sizing: border-box;

}
.select-options-up li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #ced4da;
  -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-up li:first-child {
  border-top: none;
}
.select-options-up li:hover {
  color: #60bf78;
  background: #fff;
}
.select-options-up li[rel="hide"] {
  display: none;
}