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

/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/

/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  line-height: 21px;
  color: #252b3a;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  /* 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;
  outline: none;
  white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
  cursor: pointer;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
  position: relative;
  text-align: center;
  margin-bottom: -5px;
  padding-right: 9px;
}

.selectboxit-container.select_type .selectboxit {
  width: auto;
  padding-left: 10px;
  padding-right: 35px;
}

.selectboxit-container.admin_select .selectboxit {
  width: 232px !important;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 32px; /* Height of the drop down */
  line-height: 32px; /* Vertically positions the drop down text */
  display: block;
}

.selectboxit-container span {
	display: inline-block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
  display: none;
}

/* Button Text */
.selectboxit-text {
  overflow: hidden;
  text-overflow: ellipsis;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.selectboxit .selectboxit-option-icon-container {
  margin-left: 0px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: 31px !important;
}

/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
  padding: 0 15px;
  text-align: center;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  list-style-type: none;
  display: block !important;
}

/* The first Drop Down option */
.selectboxit-option-first {
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: auto;
  padding-left: 8px;
  display: inline-block !important;
  vertical-align: middle;
  position: absolute;
  right: 8px;
}

.admin_selector .selectboxit-arrow-container {
  position: relative;
  right: 10px;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: relative;
  top: 34%;
  right: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: none;
}

.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle !important;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  background-color: #f4f6f9;
  border: 1px solid #d0d6e1;
  box-sizing: border-box;
  border-radius: 2px 2px 0 0;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  color: #252b3a;
  background-color: #f4f6f9;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #252b3a;
  text-decoration: none;
  background-position: 0 -15px;
}

.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 7px solid #515f78;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.selectboxit-list {
  background-color: #525f79;
  border: 1px solid #d0d6e1;
  padding-top: 10px;
  border-radius: 0 0 2px 2px;
}

.selectboxit-list .selectboxit-option-anchor {
  color: #fff;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #252b3a;
  background-color: #e6ae56;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #bcc0c8;
}

.select_parent_item ul {
  right: 0;
  max-width: 100%;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.select_parent_item ul a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left !important;
  box-sizing: border-box;
  height: 25px !important;
  line-height: 25px !important;
}

.select_parent_item ul a .selectboxit-option-icon-container {
  display: none;
}

