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

/* Div container holding the dropdown list */
.selectboxit-container {
  display: inline-block;
  /* 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;
  
  color: #fff;
  
  background-image:-moz-linear-gradient(59% 4% -90deg,rgb(0,165,215) 0%,rgb(0,123,162) 100%); 
background-image:-webkit-gradient(linear,59% 4%,59% 107%,color-stop(0, rgb(0,165,215)),color-stop(1, rgb(0,123,162)));
background-image:-webkit-linear-gradient(-90deg,rgb(0,165,215) 0%,rgb(0,123,162) 100%);
background-image:-o-linear-gradient(-90deg,rgb(0,165,215) 0%,rgb(0,123,162) 100%);
background-image:-ms-linear-gradient(-90deg,rgb(0,165,215) 0%,rgb(0,123,162) 100%);
background-image:linear-gradient(-90deg,rgb(0,165,215) 0%,rgb(0,123,162) 100%);
-moz-box-shadow:inset 2px 1px 0px rgb(1,211,255);
-webkit-box-shadow:inset 2px 1px 0px rgb(1,211,255);
box-shadow:inset 2px 1px 0px rgb(1,211,255);
border-style:solid;
border-width:1px;
border-color:rgb(0,73,98);
-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff00a5d7,endColorstr=#ff007ba2,GradientType=0)";
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff00a5d7,endColorstr=#ff007ba2,GradientType=0);

  
}

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

body#home .selectboxit-container .selectboxit {
	width: 110px;
}


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

/* Dropdown list Default Icon Positioning */
.selectboxit-default-icon {
  position: absolute; right: 10px; top: 5px;
  background: url(../../gfx/dropdown-arrow.png) no-repeat 0 0;
  display: block; width: 9px; height: 9px;
}

/* Dropdown List Box Text */
.selectboxit-text {
  font: 14px Helvetica, Arial;
  text-indent: 10px;
  line-height: 30px;
  overflow: hidden;
  float: left;
  white-space: nowrap;
}

/* Dropdown List Options List*/
.selectboxit-container .selectboxit-options {
  min-width: 110px; /* Minimum Width of the dropdown list box options */
  font: 14px Helvetica, Arial;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  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: 6px;
  background: #fff;
  border: 1px solid #888;
  
}

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

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


.selectboxit-option:hover .selectboxit-option-anchor, .selectboxit-option .selectboxit-option-anchor:hover {color: #000;}

/* 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: 6px;
  border-top-left-radius: 6px;
}

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

/* 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; color: #000;
}

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

/* 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;
}