.selectize-control {
  border: none;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
  color: #4a4f55; 
  height: auto;
  padding: 0;
  text-align: left;
  width: 100%;  
  position: relative;  
}
.selectize-control .selectize-input:after {
  content: '';
  display: block;
  background: url('../../images/select-arrow.png') no-repeat center;
  width: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.selectize-control .selectize-input.dropdown-active:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.selectize-control .selectize-input {
  width: 100%;
  position: relative;
  height: auto;
  cursor: pointer;
  background: #ffffff;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
  padding: 15px 50px 15px 10px;
  font-size: 11px;
  line-height: 12px;
  min-height: 42px;
  border: solid 1px #e7e7e7;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.selectize-control .selectize-input.dropdown-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.selectize-control .selectize-input .item {
  font-size: 11px;
  line-height: 12px;
  display: inline;
  font-weight: 500;
}
.selectize-control .selectize-input input {
  display: none!important;
}
.selectize-control .selectize-dropdown {
  position: absolute;
  top: 100%!important;
  left: 0px!important;
  right: 0px!important;
  width: auto!important;
  background: #ffffff;
  z-index: 3000;
  max-height: 240px;
  overflow: auto;
  font-style: normal;
  color: #4a4f55;
  border-top: none;
  padding: 15px 0;
  font-size: 14px;
  line-height: 16px;
  border: solid 1px #e7e7e7;
  border-top: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.selectize-control .selectize-dropdown .option {
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  padding: 7px 20px;
  margin-bottom: 2px;
}
.selectize-control .selectize-dropdown .option:last-of-type {
  margin-bottom: 0;
}
.selectize-control .selectize-dropdown .option.selected {
  color: #000000;
}
.selectize-control .selectize-dropdown .option.active {
  background: #f0f0f1;
}