.selectize-control {
  border: none;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
  color: #6b6b6b; 
  height: auto;
  padding: 0;
  text-align: left;
  width: 100%;  
  position: relative;
  border: solid 2px rgba(154, 162, 147, 0.48);
  font-family: 'Source Sans Pro', sans-serif;
}
.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: 18px 70px 18px 20px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}
.selectize-control .selectize-input .item {
  font-size: 18px;
  line-height: 18px;
  display: inline;
  font-weight: 700;
}
.selectize-control .selectize-input input {
  display: inline;
  font-size: 18px;
  line-height: 18px;
  border: none;
  color: #6b6b6b;
  background: #ffffff;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  outline: none!important;
}
.selectize-control .selectize-input input::-webkit-input-placeholder {
  color: #6b6b6b;
}
.selectize-control .selectize-input input:-moz-placeholder {
  color: #6b6b6b;
  opacity: 1;
}
.selectize-control .selectize-input input::-moz-placeholder {
  color: #6b6b6b;
  opacity: 1;
}
.selectize-control .selectize-input input:-ms-input-placeholder {
  color: #6b6b6b;
}
.selectize-control .selectize-dropdown {
  position: absolute;
  top: 100%!important;
  left: -1px!important;
  right: -1px!important;
  width: auto!important;
  background: #ffffff;
  z-index: 3000;
  max-height: 240px;
  overflow: auto;
  font-style: normal;
  color: #3e3e3e;
  border-top: none;
  padding: 15px;
  font-size: 14px;
  line-height: 16px;
  border: solid 2px rgba(154, 162, 147, 0.48);
}
.selectize-control .selectize-dropdown .option {
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  padding: 5px 10px;
  margin-bottom: 2px;
}
.selectize-control .selectize-dropdown .option:last-of-type {
  margin-bottom: 0;
}
.selectize-control .selectize-dropdown .option.selected {
  color: #e95050;
}
.selectize-control .selectize-dropdown .option.active {
  color: #ffffff;
  background: #e95050;
}