/* Generated by less 2.5.1 */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.SelectIT-container {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 2px #ebebeb;
  -moz-box-shadow: 0 1px 2px #ebebeb;
  box-shadow: 0 1px 2px #ebebeb;
  width: 130px;
  height: 25px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  margin: 0px auto;
  padding: 0;
}
.SelectIT-container .SelectIT-selected {
  width: 100%;
  height: 25px;
  line-height: 25px;
  text-align: left;
  position: relative;
  padding: 0 10px;
}
.SelectIT-container .SelectIT-selected > span.placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
  display: inline-block;
}
.SelectIT-container .SelectIT-selected > span.deselect {
  position: absolute;
  top: 7px;
  right: 25px;
  width: 10px;
  height: 10px;
  display: none;
}
.SelectIT-container .SelectIT-selected > span.deselect:before,
.SelectIT-container .SelectIT-selected > span.deselect:after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  height: 3px;
  background: #525D71;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.SelectIT-container .SelectIT-selected > span.deselect:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.SelectIT-container .SelectIT-selected .SelectIT-arrows {
  position: relative;
  float: right;
  line-height: 25px;
  padding: 5px 0;
}
.SelectIT-container .SelectIT-selected .SelectIT-arrows span.arrow {
  width: 15px;
  height: 15px;
  background: url('img/down_arrow.png') no-repeat center / contain;
  display: block;
}
.SelectIT-container ul.SelectIT-options {
  position: absolute;
  top: auto;
  border: 1px solid #ccc;
  text-align: left;
  padding: 0;
  width: 100%;
  max-height: 320px;
  overflow-y: scroll;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 2px 2px 2px #ebebeb;
  -moz-box-shadow: 0px 2px 2px 2px #ebebeb;
  box-shadow: 0px 2px 2px 2px #ebebeb;
  display: none;
  background: #fff;
  text-overflow: ellipsis;
  z-index: 999;
}
.SelectIT-container ul.SelectIT-options > li {
  list-style: none;
  text-align: left;
  padding: 5px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.SelectIT-container ul.SelectIT-options > li > span {
  font-weight: 600;
  padding: 0;
  margin: 0 -5px;
  color: #000;
}
.SelectIT-container ul.SelectIT-options > li > span + ul.option-list-group {
  padding: 0;
  margin: 0 -10px;
  font-weight: 300;
}
.SelectIT-container ul.SelectIT-options > li:not(.disabled):not(.option-group-title):hover {
  background: #006699;
  color: #fff;
  text-overflow: clip;
}
.SelectIT-container ul.SelectIT-options > li.option-group-title > span + ul.option-list-group > li {
  list-style: none;
  text-align: left;
  padding: 5px 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.SelectIT-container ul.SelectIT-options > li:not(.disabled).option-group-title > span + ul.option-list-group > li:hover {
  background: #006699;
  color: #fff;
  text-overflow: clip;
}
.SelectIT-container ul.SelectIT-options > li.disabled {
  opacity: .3;
  cursor: not-allowed !important;
  pointer-events: none;
}
.SelectIT-container ul.SelectIT-options.active {
  display: block;
}
.SelectIT-container.with-dropdown .SelectIT-arrows span.arrow {
  background: url('img/up_arrow.png') no-repeat center / contain;
}
