/*
 * jquery.selectBoxIt.css 3.3.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;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font-family: Interstate;
  font-weight: bold;
  font-size: 100%;
  color: #555555;
  padding-left:3px;
  /* 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 {
  background: #ffffff !important;
  width: 220px; /* Width of the dropdown button */
  height: 25px;
  cursor: pointer;
  margin: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 4px 0px 8px 0px;;
  border: 1px solid #CCCCCC;
  box-shadow: 0px 1px 1px #999999 inset;
  overflow: hidden;
  display: block;
  position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 30px; /* Height of the drop down */
  line-height: 30px; /* Vertically positions the drop down text */
  display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  color: #ffffff;
  background: #ececec;
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit-disabled {
  cursor: pointer !important;
  border: 1px solid #bababa !important;
  background: #dedede !important;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: 0 1px 3px #a4a4a4 inset;
  -moz-box-shadow:  0 1px 3px #a4a4a4 inset;
  box-shadow: 0 1px 3px #a4a4a4 inset !important;
}

/* Button Text */
.selectboxit-text {
  font-size: 20px;
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  text-align: left;
  line-height: 27px;
  padding-left: 5px;
  
/*  letter-spacing: -0.05em;*/
}

.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
  background: #000000;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  max-height: 200px;
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 999999998;
  text-align: left;
  -webkit-box-shadow: 0 0 13px #000;
  -moz-box-shadow: 0 0 13px #000;
  box-shadow: 0px 8px 13px #000;
  border: none;
}

/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
  font-weight: bold;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding: 0 2px;
  border: none;
}

/* Individual Option Keyboard Focus Action */
.selectboxit-option.ui-state-focus {
    color: #ffffff;
    background-color: #ff0000;
    text-decoration: none;
    border: none;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  color: #ffffff!important;
  background-color: #ff0000;
  text-decoration: none!important;
  border: none;
}


/* The first Drop Down option */
.selectboxit-option-first {
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
}

/* 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: 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:100px;
  left: 10px;
}

/* 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;
}

#cc_exp_month-0SelectBoxItContainer {
    width: 120px;
}

#ea-questionSelectBoxItOptions.selectboxit-option-anchor {
    font-size: 14px;
}
