/*
 * jquery.selectBoxIt.css 2.0.0
 * Author: @gregfranko
 */

/* Div container holding the dropdown list */
.selectboxit-container {
  display: inline-block;
  width:100%;
  position:relative;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* Dropdown List Box */
.selectboxit-container .selectboxit {
  width: 180px; /* Width of the dropdown list box */
  height: 28px; /* Height of the select box */
  cursor: pointer;
  padding: 0;
  display: block;
  border-radius:0px;
  position:relative;
}

.selectboxit-container .selectboxit.selectboxit-disabled {
  cursor: default;
}

/* Dropdown list Default Icon Positioning */
.selectboxit-default-icon {
  float: left;
}

/* Dropdown List Box Text */
.selectboxit-text {
  text-indent: 5px;
  line-height: 28px;
  overflow: hidden;
  float: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align:left;
  width:70% !important;
  max-width:70% !important;
}

/* Dropdown List Options List*/
.selectboxit-container .selectboxit-options {
  min-width: 180px; /* Minimum Width of the dropdown list box options */
  max-height:200px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow: auto;
  cursor: pointer;
  display: none;
  /*z-index: 9999999999999;*/ /* removed to move the dropdown under bottom fixed bar */
  z-index: 14000;
  outline: none;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  -moz-box-shadow: none; /* Firefox */
  -webkit-box-shadow: none; /* Safari, Chrome */
  box-shadow: none; /* CSS3 */
  border-radius:0px;
}

/* Overrides Bootstrap drop down option style */
.selectboxit-options .selectboxit-option.active .selectboxit-option-anchor {
  color: #fff;
}

.selectboxit-option .selectboxit-option-anchor {
  padding: 0px 3px;
  line-height: 30px;
}

/* Dropdown List Individual Options */
.selectboxit-option, .selectboxit-optgroup-header {
  line-height: 30px; /* Height of Individual Select Box Options */
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  overflow: hidden;
  white-space: nowrap;
  list-style: none;
  margin: 0;
}

/* The first drop down option */
.selectboxit-option-first {
  border-top-right-radius:0px;
  border-top-left-radius:0px;
}

/* The last drop down option */
.selectboxit-option-last {
  border-bottom-right-radius:0px;
  border-bottom-left-radius:0px;
}

/* Dropdown List Optgroup Headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Dropdown List Optgroup Options */
.selectboxit-optgroup-option {
  text-indent: 20px;
}

/* Dropdown List Optgroup Header hover psuedo class */
.selectboxit-optgroup-header[data-disabled='true']:hover {
  cursor: default;
}

/* Dropdown List Down Arrow Container (if an image is not used) */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  /*width: 30px;*/
  width: 24px;
  /*float: right;*/
  position:absolute;
  right:0px;
}

/* Dropdown List Down Arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  display: block;
}

/* Dropdown List Individual Option Icon Positioning */
.selectboxit-option-icon {
  float: left;
}

/* Pull right DropDown */

.pull-right .selectboxit-container .dropdown-menu,
selectboxit-container .dropdown-menu.pull-right {
  right: 0 !important;
  left: auto !important;
}

.pull-right selectboxit-container .dropdown-menu:before,
selectboxit-container .dropdown-menu.pull-right:before {
  right: 12px !important;
  left: auto !important;
}

.pull-right selectboxit-container .dropdown-menu:after,
selectboxit-container .dropdown-menu.pull-right:after {
  right: 13px !important;
  left: auto !important;
}


.newTheme .selectboxit-options.dropdown-menu li > a:hover, 
.newTheme .selectboxit-options.dropdown-menu .active > a, 
.newTheme .selectboxit-options.dropdown-menu .active > a:hover {
    background-color: #dfe2e2 !important;
    color: #404040 !important;
    text-decoration: none;
}
.newTheme .selectboxit-options.dropdown-menu{
    background-color: #f5f5f5 !important;
	}

.selectboxit-arrow.commIcongl.menuArrow{ margin-top:0px !important;; }