.customSelect { 
	position: relative;			
	font-size: 18px;
	font-family: "OpenSans-Regular"; 
	/* float: left;
	margin-right: 10px; */
	margin: 15px auto;
}		
.customSelect .selectedValue {
  padding: 13px 20px;
  margin-bottom: 0;
  line-height: 1.2;
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);

  cursor: pointer;
  background-color: rgba(255,255,255,.8);
  
  border: 1px solid rgb(191, 191, 191);
  
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  
  -webkit-box-shadow: 1.5px 2.598px 5px 0px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 1.5px 2.598px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 1.5px 2.598px 5px 0px rgba(0, 0, 0, 0.1);
}



.customSelect .selectList {
	z-index: 100;
	position: absolute;
	left: -999em;
	top: -999em;
	
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: rgba(255,255,255,0.8);

  border: 1px solid rgb(191, 191, 191);
  

  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;

  -webkit-box-shadow: 1.5px 2.598px 5px 0px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 1.5px 2.598px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 1.5px 2.598px 5px 0px rgba(0, 0, 0, 0.1);

  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;

}


.customSelect.select-open .selectList {
	left: 0 !important;
	top: auto !important;
}
.customSelect .selectList dl {
	/* background: #fff;	 */
}
.customSelect .selectList dl.defaultScrollbar {
	overflow-x: hidden;
	overflow-y: scroll;	
}
.customSelect dl, .customSelect dd {
	margin: 0;
}
.customSelect dd {
	zoom: 1;
	cursor: pointer;
}
.customSelect .disabled {
	color: #999 !important;
	cursor: default;
}
.customSelect .selected {
	color: #27a6e1;
	text-decoration: none;
	background-color: rgba(255,255,255,1);
	border-radius: 5px;
}
.customSelect .selectList dd.hovered {
	color: #27a6e1;
	background-color: rgba(255,255,255,.8);
}
.customSelect .selectList dd.disabled.hovered {
	background: none;
	color: #999;
}
.customSelect dt {
	font-weight: bold;
	font-style: italic;
	padding: 2px 10px 2px 6px;
}	
.customSelect dd {
	padding: 7px 15px;
} 
.hasJS select.custom {
	position: absolute;
	left: -999em;
}
.hasJS select.custom.use-default {
	position: absolute;
	left: auto;
	height: auto;
	width: 100%;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	opacity: 0;
	/* prevents iOS from zooming in on field */
	font-size: 16px;
}
.customSelect.focused .selectedValue {
	/* box-shadow: 0 0 2px #00aedb; */
}
.customSelect.disabled .selectedValue {
	border: 1px solid #ccc;
	color: #ccc;
	cursor: default;
}
.customSelect .caret {
	display: inline-block;
	width: 14px;
	height: 9px;
	background: url('../images/select_arrow.png') no-repeat center center;
	vertical-align: top;
	/* border-top: 5px solid #000000;
	border-right: 3px solid transparent;
	border-left: 3px solid transparent; */
	content: "";
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.customSelect.select-open .caret{
	/* border-bottom: 4px solid #000000;
	border-top: none; */
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.customSelect .selectValueWrap .caret {
	position: absolute;
	top: 20px;
	right: 15px;
	cursor: pointer;
}
.customSelect .jspPane {
	overflow-x: hidden;
}
.customSelect .jspVerticalBar {
	background: none;
	width: 8px;
}
.customSelect .jspHorizontalBar {
	height: 0;
	overflow: hidden;
}
.customSelect .jspTrack {
	background: none;
	right: 5px;
	border-radius: 5px;
}
.customSelect .jspDrag {
	border-radius: 5px;
	color: #ffffff;
	
	opacity: 1;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: rgb(67, 78, 80);
	*background-color: #222222;
	background-image: -moz-linear-gradient(top, #444444, #222222);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
	background-image: -webkit-linear-gradient(top, #444444, #222222);
	background-image: -o-linear-gradient(top, #444444, #222222);
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border-color: #222222 #222222 #000000;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.hidden_select{
	position: absolute;
	opacity: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}


@media (min-width: 961px){
	.customSelect{
		margin: 15px 0 0 0;
	}
	.hidden_select{
		display: none;
	}
}