/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
  /*  z-index: 2; Testing removal due to conflict with UL of other SelectBoxIt items */
}
.selectboxit-options {
  font-size: 12px;
  text-transform: uppercase;
}
/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font: 12px;
  text-transform: uppercase;
  /* 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 {
  width: 100%;
  /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 2;
}
/* Height and Vertical Alignment of Text */
.selectboxit-container span,
.selectboxit-container .selectboxit-options a {
  height: 26px;
  /* Height of the drop down */
  line-height: 25px;
  /* Vertically positions the drop down text */
  display: block;
}
/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}
/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled,
.selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}
/* Button Text */
.selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}
.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}
/* 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;
  border-radius: 0;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* Individual options */
.selectboxit-option .selectboxit-option-anchor {
  padding: 0 2px;
}
/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}
/* Individual Option Optgroup Header */
.selectboxit-option,
.selectboxit-optgroup-header {
  text-indent: 5px;
  /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}
/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* 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 {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* 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: 30px;
  position: absolute;
  right: 0;
}
/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}
/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}
.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
/* 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;
}
/*
  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: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  color: #333333;
  background-color: #e6e6e6;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
}
.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.selectboxit-list {
  background: #ffffff;
  /* fallback */
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.selectboxit-list .selectboxit-option-anchor {
  color: #333333;
}
.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #000;
  background-color: #ccc;
}
.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}
.selectboxit-container .selectboxit {
  border-radius: 0px;
  border: 1px solid #bdbdbd;
  background-color: #fff;
  border-radius: 3px;
}
.selectboxit-btn {
  background: none;
  border: 0 none;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  background-color: #ececec;
}
.selectboxit.prod-qty {
  width: 70px !important;
}
.selectboxit-text {
  font-size: 11px;
  max-width: 95% !important;
  min-width: 40px !important;
  padding-right: 22px;
}
.prod-qty .selectboxit-text {
  font-size: 11px;
  max-width: 50px !important;
  min-width: 40px !important;
}
.selectboxit-arrow-container {
  border-left: 1px solid #bdbdbd;
  width: 21px;
  background: transparent url("../images/select-arrow.png") no-repeat scroll center center;
  -moz-background-size: 10px 6px;
  -o-background-size: 10px 6px;
  -webkit-background-size: 10px 6px;
  background-size: 10px 6px;
}
.selectboxit-arrow {
  display: none;
}
.selector-bar .selectboxit-container {
  margin-top: 2px;
}
.selector-bar li:first-child .selectboxit-text {
  text-indent: 0;
}
.selector-bar li:first-child .selectboxit .selectboxit-option-icon-container {
  margin-left: 0;
}
.selector-bar li.selector-right .selectboxit-arrow-container {
  width: 10px;
}
/** Removal of arrows for filters **/
.grid-accordion .selectboxit-arrow-container {
  background: none;
}
/** For new static facets with "X" **/
a.static-facet {
  padding: 0 !important;
  display: block;
}
.static-facet .selectboxit-container .selectboxit {
  width: 100% !important;
  cursor: inherit;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-width: 0;
}
.static-facet .selectboxit-container .selectboxit-text {
  margin-right: 25px;
  margin-left: 15px;
}
.static-facet .selectboxit-container .selectboxit-arrow-container {
  width: 20px;
  background: transparent url("/images/select-remove.png") no-repeat scroll center center;
  -moz-background-size: 7px 8px;
  -o-background-size: 7px 8px;
  -webkit-background-size: 7px 8px;
  background-size: 7px 8px;
}
.ie8 .static-facet .selectboxit-container .selectboxit-arrow-container {
  background-image: url("/images/select-remove-lowres.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}
/** Additional styles necessary for mobile product and grid filter display **/
.sel-wide .selectboxit-container,
.sel-wide select,
.sel-wide .selectboxit-container .selectboxit,
.sel-wide .selectboxit-container .selectboxit-options,
.static-facet .selectboxit-container {
  width: 100% !important;
}
