/**********************************************/
/* ICLEI EUROPE - NEWS TOPICS search dropdown menu page
/**********************************************/
/**********************************************/
/* Color definitions
  Yellow 1: rgb(255,243,180) #FFF3B4
  Yellow 2: rgb(255,231,105) #FFE769
  Yellow 3: rgb(255,221,81) #FFDD51
  Yellow 4: rgb(246,201,76) #F6C94C

  Blue/Green 1: rgb(0,136,135) #008887
  Blue/Green 2: rgb(51,160,159) #33A09F
  Blue/Green 3: rgb(102,184,183) rgb(102,184,183)

  Green 1: rgb(102,160,135) #66A087
  Green 2: rgb(168,188,125) #A8BC7D
  Green 3: rgb(203,215,177) #CBD7B1
  Green 4: rgb(202,201,119) #CAC977

  Blue 1: rgb(127,183,192) #7FB7C0
  Blue 2: rgb(128,189,209) #80BDD1
  Blue 3: rgb(198,226,227) #C6E2E3

  Grey 1: rgb(50,50,50) #323232
  Grey 2: rgb(179,179,179) #B3B3B3
  Grey 3: rgb(242,242,242) #F2F2F2
*/


/**************************************************/
/* Container / toggle button */
/**************************************************/

/* SelectBoxIt container */
.selectboxit-container {
  width:100%;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container *{
  -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%;  
  height:42px;
  display: block;
  cursor: pointer;
  margin: 0;
  padding: 4px 0 0 0;
  border-radius: 2px;
  border:1px solid rgb(127,183,192);
  color:rgb(127,183,192);
  overflow: hidden;
  position: relative;
  font-size: 1.1em;
}



/**************************************************/
/* Options */
/**************************************************/

/* Height and Vertical Alignment of Text */
.selectboxit-container span, 
.selectboxit-container .selectboxit-options a {
  height:31px; /* Height of the drop down */
  line-height:33px; /* Vertically positions the drop down text */
  display: block;
  font-size:1.1em;
}

/* 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;
}

/**************************************************/
/* Option List container = ul */
/**************************************************/
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding:0;
  padding-left:5px !important;
  padding-right:5px !important;
  list-style: none;
  position: absolute;
  cursor: pointer;
  display:none;
  z-index: 9999999999999;
  z-index: 4;
  border-radius: 2px;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: scroll;
  overflow:scroll;
  height:700px;
}


/**************************************************/
/* Individual options
/**************************************************/
 .selectboxit-option .selectboxit-option-anchor{
  padding:0 !important;
  font-size:16px !important;
  height:18px;
  line-height:18px;
}

/* 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;
}
.selectboxit-option:before{
  display:none !important;
}

/* The first Drop Down option */
.selectboxit-option-first {
/*  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
*/}

/* 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;
*/}

/* Drop Down optgroup headers */
electboxit-optgroup-header {
  /*font-weight: bold;*/
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}





/**************************************************/
/* Carret / Arrow */
/**************************************************/

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
  top:2px;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  right: 0;
  left: 0;
}

.selectboxit .selectboxit-arrow-container .selectboxit-arrow:before {
  content: "\f078";
  font-family: FontAwesome;
  font-style: normal;
  font-weight:normal ;
  /* more styling for the icon, including color, font-size, positioning, etc. */
}


/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {}




/**************************************************/
/* Option / Icon */
/**************************************************/
/* 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:24px;
  background-size: 24px 24px;
  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;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {}





/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  width:100%;
  background-color:white;
/*  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 {

}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  background-color:white;
  color:rgb(127,183,192);
}

.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-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 {}
.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {}
.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {}