/*
 * jquery.selectBoxIt.css 3.7.0
 * 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;
  width: 100%;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  /*font: 14px Helvetica, Arial;*/
  /* 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: 4px;
  overflow: hidden;
  display: block;
  position: relative; 
}

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

.small-dropdown + .selectboxit-container span, .small-dropdown + .selectboxit-container .selectboxit-options a {
  height:36px;
  line-height: 36px;
}

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

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  color:#CCC;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectboxit-text {
  text-indent: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  line-height: 36px;
}

.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: 99999;
  border-radius: 6px;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: 55px;
  left: 0;
}

.small-dropdown + .selectboxit-container .selectboxit-options{
  top:45px;
}

.dark-controls + .selectboxit-container .selectboxit-options{
  background-color: #2d3235;
  border-color: #1a1b1d;
}

.compare-dropdown .selectboxit-container .selectboxit-options{
  background-color: #eff3f5;
  /*border-color: orange;*/
  color: #464a4d;
}



/* Individual options */
.selectboxit-option /*.selectboxit-option-anchor*/{
  /*padding: 0 2px;*/
  display: block;
  color: #727b80;
  border-top: 1px solid #bfc8ce;
  font: 16px/18px 'Lato', Arial, Helvetica, sans-serif;
  font-weight:700;
  line-height: 48px;
}

.dark-controls .selectboxit-option{
  border-top: 1px solid #1a1b1d;
}

.small-dropdown.selectboxit + .selectboxit-options .selectboxit-option{
  font-size: 14px;
  line-height: 36px;
}

.compare-dropdown .selectboxit-option{
  color: #464a4d;
}

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

.compare-dropdown .selectboxit-option:hover{
  color:#fc7343;
  background:#fff;
  /*border:1px solid #fc7343;*/
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
  text-indent: 9px; /* 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: 6px;
  border-top-left-radius: 6px;*/
  border-top: 0px;
  border-radius: 4px 4px 0 0;
}

.dark-controls .selectboxit-option.selectboxit-option-first {
  /*border-top-right-radius: 6px;
  border-top-left-radius: 6px;*/
  border-top: 0px;
  border-radius: 4px 4px 0 0;
}

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

/* 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;
  right: 0;
  left: 0;
}

/*Need sepecifically for small dropdown*/
.small-dropdown > .selectboxit-arrow-container > .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 7px;
  position: absolute;
  right: 0;
  left: 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: 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: block;
  visibility: hidden;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  border: 1px solid #bfc8ce;
  background: #fff;
  color: #8a9195;
  font: 16px/46px 'Lato', Arial, Helvetica, sans-serif;
  font-weight:400;
  height:48px;
  line-height: 48px;
}

.dark-controls.selectboxit-btn {
  /*background: #232629;*/
  background:#2D3235;
  border: 1px solid #1a1b1d;
}

/*
Stylizes the Small Dropdown Button with the proper text size
*/
.small-dropdown.selectboxit-btn{
  font: 16px 'Lato', Arial, Helvetica, sans-serif;
  font-weight:400;
  height: 36px;
  font-size: 14px;
}

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

.selectboxit-btn.selectboxit-enabled:hover {
  /*color: #333333;*/
  text-decoration: none;
  background-position: 0 -15px;
  border: 1px solid #7e868a;
  color:#212528;
}

.dark-controls.selectboxit-btn:hover {
  /*color: #333333;*/
  text-decoration: none;
  background-position: 0 -15px;
  border-color: #7e868a;
  background: #232629;
  color:#d0d6da;
}

.selectboxit-btn.selectboxit-enabled:focus {
  /*color: #333333;*/
  text-decoration: none;
  border-color:#3498db;
  color:#212528;
}

.dark-controls.selectboxit-btn.selectboxit-enabled:focus {
  text-decoration: none;
  background: #232629;
  color:#d0d6da;
}

.selectboxit-btn.selectboxit-enabled:focus {
  /*color: #333333;*/
  text-decoration: none;
  border-color:#3498db;
  color:#212528;
}

.compare-dropdown > .selectboxit-container > .selectboxit-enabled:focus{
  border-color:#fc7343;
}

.selectboxit-custom-arrow {
  top: 40%;
  background: url('../images/sprite.png') no-repeat -345px -122px;
  width: 20px;
  height: 8px;
}

.selectboxit-open .selectboxit-custom-arrow {
  top: 40%;
  background: url('../images/sprite.png') no-repeat -286px -122px;
  width: 20px;
  height:8px;
}

.small-dropdown.selectboxit-btn-selected, .selectboxit-btn-selected {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight:700;
  color: #212528;
}

.dark-controls .selectboxit-btn-selected {
  color: #d9dfe3;
}

/*
Stylizes the Dropdown List
*/
.selectboxit-list {
  background-color: #ffffff;
  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: #727b80;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  /*color: #ffffff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;*/
  background:#3498db;
  border-color:#3498db;
  text-decoration:none;
  color:#fff;
}

.compare-dropdown .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor{
  color:#fc7343;
  background:#fff;
  text-decoration: none;
}

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