.selectize-control {
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #808080;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
  height: 58px;
  padding: 0 80px 0 20px;
  text-align: left;
  width: 100%;
  background: #ffffff;
  position: relative;
}
.selectize-control .selectize-input:after {
  content: '';
  display: block;
  background: url('../../images/select-arrow.png') no-repeat center;
  width: 60px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 60px;
}
.selectize-control .selectize-input.dropdown-active:after {
  content: '';
  display: block;
  background: url('../../images/select-arrow-active.png') no-repeat center;
  width: 60px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 60px;
}
.selectize-control .selectize-input {
  display: table;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.selectize-control .selectize-input .item {
  display: table-cell;
  vertical-align: middle;
}
.selectize-control .selectize-input input {
  padding: 0;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  color: #808080;
  font-size: 15px;
  letter-spacing: 2px;
  font-family: "ff-meta-web-pro",sans-serif;
  padding: 0;
  height: 58px;
  border: none;
  margin: 0;
  /*text-transform: uppercase;*/
}
.selectize-control .selectize-dropdown {
  position: absolute;
  top: 100%!important;
  left: 0px!important;
  right: 0px!important;
  width: auto!important;
  background: #989898;
  z-index: 3000;
  max-height: 210px;
  overflow: auto;
  font-style: normal;
  color: #ffffff;
}
.selectize-control .selectize-dropdown .option {
  font-size: 13px;
  line-height: 15px;
  padding: 10px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.selectize-control .selectize-dropdown .option:hover,
.selectize-control .selectize-dropdown .option.selected {
  background: #5c5c5c;
  color: #ffffff;
}