.jquery-select-trigger {
  position: relative;
  top: 0;
  left: 0;
  background-color: #FFF;
  border: 1px solid #CCC;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
}
.jquery-select-trigger-label {
  padding: 6px 42px 6px 12px;
  width: 100%;
  color: #555;
  display: block;
}
.jquery-select-trigger-label.placeholder {
  color: #999;
}
.jquery-select-trigger-arrow {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 30px;
  background-color: #FFF;
  display: block;
}
.jquery-select-trigger-arrow-inner {
  margin: -4px 0 0 -8px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border: 8px solid transparent;
  border-top-color: #AAA;
}
.jquery-select-trigger.active {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
.jquery-select-trigger.active .jquery-select-trigger-arrow {
  background-color: #FFF;
}
.jquery-select-trigger.active .jquery-select-trigger-arrow-inner {
  border-top-color: #66afe9;
}
.jquery-select-container {
  margin-top: 10px;
  padding: 5px;
  min-height: 30px;
  position: absolute;
  background-color: #FFF;
  border: 1px solid #CCC;
  display: none;
  z-index: 1100;
  box-sizing: border-box;
}
.jquery-select-container:before {
  position: absolute;
  top: -16px;
  left: 10px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  content: ' ';
  z-index: 2;
}
.jquery-select-container:after {
  position: absolute;
  top: -17px;
  left: 10px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #CCC;
  content: ' ';
  z-index: 1;
}
.jquery-select-container-group {
  padding: 5px;
  font-weight: bold;
  display: block;
}
.jquery-select-container-item {
  margin: 1px 0 0 0;
  padding: 5px 5px 5px 10px;
  position: relative;
  top: 0;
  left: 0;
  font-weight: normal;
  color: #333;
  border-left: 5px solid transparent;
  cursor: pointer;
  display: block;
}
.jquery-select-container-item-description {
  font-size: 90%;
  color: #999;
  display: block;
}
.jquery-select-container-item:hover,
.jquery-select-container-item:focus {
  background-color: rgba(204, 204, 204, 0.15);
  border-left-color: #CCC;
}
.jquery-select-container-item.disabled {
  color: #999;
  cursor: not-allowed;
  background-color: transparent;
  border-left-color: transparent;
}
.jquery-select-container-item.selected {
  background-color: rgba(102, 175, 233, 0.1);
  border-left-color: #66afe9;
}
