/*======================================
  Selectric
======================================*/
.selectric-wrapper {
	position: relative;
	cursor: pointer;
}

.selectric-responsive {
	width: 100%;
}

.selectric {
	background: #fff;
	position: relative;
	border: none;
}

.selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 60px 0 0;
	padding: 10px 0 10px 20px;
	font-family: 'Alvar', Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 22px;
	color: #333335;
}

.selectric .button {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	line-height: 32px;
	text-align: center;
	text-indent: -99999px;
}

.selectric .button:after {
	content: "\f140";
	font-size: 25px;
	font-family: "Dashicons";
	color: #333335;
	position: absolute;
	top: 5px;
	bottom: 0;
	height: auto;
	right: 14px;
	text-align: right;
}

.selectric-focus .selectric {
}

/*.selectric-hover .selectric .button {
	color: #888;
}*/

.selectric-open {
	z-index: 9999;
}

.selectric-open .selectric {
	
}

.selectric-open .selectric-items {
	display: block;
}

.selectric-open.selectric-above .selectric {
	
}

.selectric-open.selectric-above .selectric-items {
}

.selectric-disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric-hide-select {
	position: relative;
	overflow: hidden;
	width: 0;
	height: 0;
}

.selectric-hide-select select {
	position: absolute;
	left: -100%;
}

.selectric-hide-select.selectric-is-native {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	border: none;
	z-index: 1;
	box-sizing: border-box;
	opacity: 0;
}

.selectric-input {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 1px !important;
	height: 1px !important;
	outline: none !important;
	border: none !important;
	*font: 0/0 a !important;
	background: none !important;
}

.selectric-temp-show {
	position: absolute !important;
	visibility: hidden !important;
	display: block !important;
}

/* Items box */
.selectric-items {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	z-index: 9999;
	padding: 0;
	font-weight: normal;
}

.selectric-items .selectric-scroll {
	height: 100%;
	overflow: auto;
}

.selectric-items .selectric-scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
.selectric-items .selectric-scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.selectric-above .selectric-items {
	top: auto;
	bottom: 100%;
	margin-top: 0;
}

.selectric-items ul, .selectric-items li {
	list-style: none;
	padding: 0;
	margin: 0 !important;
}

.selectric-items .selectric-scroll ul {padding-bottom: 10px;}
.selectric-above .selectric-items .selectric-scroll ul {
	padding-bottom: 0;
	padding-top: 10px;
}

.selectric-items li {
	display: block;
	float: none !important;
	padding: 10px 20px !important;
	cursor: pointer;
	font-family: 'Alvar', Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 22px;
	color: #333335;
}

.selectric-items ul li:before {display: none;}

.selectric-items li.highlighted {
	background: #dfdfdf;
}

.selectric-items li.selected {
	background: #dfdfdf;
}

.selectric-items li:hover {
	background: #dfdfdf;
}

.selectric-items .disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default !important;
	background: none !important;
	color: #666 !important;
	-webkit-user-select: none;
	 -moz-user-select: none;
	  -ms-user-select: none;
		  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
	padding-left: 10px;
	cursor: default;
	-webkit-user-select: none;
	 -moz-user-select: none;
	  -ms-user-select: none;
		  user-select: none;
	background: none;
	color: #444;
}

.selectric-items .selectric-group.disabled li {
	filter: alpha(opacity=100);
	opacity: 1;
}

.selectric-items .selectric-group li {
	padding-left: 25px;
}