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

.select {
  position: relative;
  cursor: pointer;
  color: #B4B4B4;
}

.select-styled {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid #707070;
  padding: 16px 45px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.15s ease-in;
}

.select-styled:after{
  content: url(++resource++hero2019.site.images/landing/icon__select-down.svg);
  position: absolute;
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
  right: 17px;
}

.select-styled.active:after{
  transform: rotate(180deg);
}

.select-styled:active, .select-styled.active {
  border-color: #F5A623;
  outline: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.4);
}

.select-options {
  display: none;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  list-style: none;
  background-color: #fff;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14);
  margin-top: 3px;
  padding: 10px 0;
  position: absolute;
}

.select-options li {
  padding: 5px 0;
  border-top: 1px solid #f2f2f2;
  transition: all 0.15s ease-in;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  border-top: 0;
  margin: 5px 0;
  text-indent: 15px;
}

.select-options li:hover {
  background-color: #f7f7f7;
  color: #F5A623;
}

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