/*
 * jQuery.selectBoxIt.css 0.9.0
 * Author: @gregfranko
 */

/* Div container holding the dropdown list */
#booking_bar_selectSelectBoxItContainer {
*display:inline;
display: inline-block;
zoom: 1;
box-shadow: inset 1px 1px 0 #c4c4c4;
background: #fff;
vertical-align: top;
margin: 0 6px;
position: relative;
}
/* Dropdown List Box */
#booking_bar_selectSelectBoxIt {
  height:25px;/* Height of the select box */
  cursor:pointer;
  white-space:nowrap;/* Provide a background image here if you want to use an image for the down arrow */
}
/* Dropdown List Box and Dropdown Options List  */
#booking_bar_selectSelectBoxIt,
#booking_bar_selectSelectBoxItOptions {
  width: 189px; /* Width of the dropdown list box and dropdown list options*/
  color: #323232;
}
/* Dropdown list Default Icon Positioning */
#booking_bar_selectSelectBoxItDefaultIcon {
  float: left;
}
/* Dropdown List Box Text */
#booking_bar_selectSelectBoxItText {
  padding-left:5px;

  font-size: 12px;
  text-indent: 5px;
  line-height: 30px;
  overflow:hidden;
  float:left;
  white-space:nowrap;
  /* 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;
  line-height: 27px!important;
  height: 25px;
}
/* Dropdown List Options List*/
#booking_bar_selectSelectBoxItOptions {
  max-height: 390px; /* A vertical scrollbar appears if your select box options are taller than this */
  font-size: 12px;
  margin:0;
  padding:0;
  list-style:none;
  position:absolute;
  overflow:auto;
  cursor:pointer;
  display:none;
  z-index:99999;
  outline:none;
  text-align:left;
  background: #f9f9f9;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.5);
  bottom:24px;
  top:auto!important;
}
#booking_bar_selectSelectBoxItOptions li:hover {
	background:#e5e2da;
}
/* Dropdown List Individual Options */
#booking_bar_selectSelectBoxItOptions li,
#booking_bar_selectSelectBoxItOptions .optgroupHeader {
  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;
  padding-left:5px;
}
/* Dropdown List Optgroup Headers */
#booking_bar_selectSelectBoxItOptions .optgroupHeader {
  font-weight: bold;
}
/* Dropdown List Optgroup Options */
#booking_bar_selectSelectBoxItOptions .optgroupOption {
  text-indent: 20px;
}
/* Dropdown List Optgroup Header hover psuedo class */
#booking_bar_selectSelectBoxItOptions .optgroupHeader[data-disabled='true']:hover {
  cursor: default;
}
/* Dropdown List Down Arrow Container (if an image is not used) */
#booking_bar_selectSelectBoxItArrowContainer {
  /* Positions the down arrow */
  width: 30px;
  float:right;
}
/* Dropdown List Down Arrow */
#booking_bar_selectSelectBoxItArrow {
  background:url(../images/booking_bar/select_arr.png);
  /* Horizontally centers the down arrow */
  margin-right:auto;
  margin-left:auto;
  width:14px;
  height:9px;
  display:block;
}
/* Dropdown List Individual Option Icon Positioning */
#booking_bar_selectSelectBoxItOptions li span {
  float:left;
}
