.select {
	clear:both;
	display:inline-block !important;
	position:relative;
	border: 1px solid;
	white-space: nowrap;
	font-size: 20px;
	line-height: 30px;
	width: 150px;
	border-radius: 3px;
	line-height: inherit;
	cursor: pointer;
}
.select > input {
	display:none;
}
.select select {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    color: transparent;
    border:none;
    outline:none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 200;
    padding:0;
}
.select > .clicker {
	z-index: 100;
	position: absolute;
	display:block;
	width:100%;
	height:100%;
	top: 0;
	left: 0;
	background-color: transparent;
	text-align: right;
}
.select > .clicker:after {
    font-family: aol-core;
    content: "\e60c";
    display: inline-block;
    margin: 3px 7px 0 0;
}
.select .optgroup {
	position: absolute;
	background: rgba(255,255,255,0.9);
	border: 1px solid;
	width: 100%;
	margin: 0 0 0 -1px;
	border-bottom: 1px solid;
	border-radius:0 0 3px 3px;
	display: none;
	overflow: auto;
	height: 0;
	max-width: 100%;
	min-width: 100%;
}
.select > input:checked ~ .optgroup {
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
}
.select .optgroup .option {
	border-top: 1px solid;
}
.select .optgroup .option:first-child {
	border-top: none;
}
.select .option {
	display: block;
	clear:both;
	padding: 2px 20px;
	cursor: pointer;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.select > .option {
	display:inline;
}
.select,
.select .optgroup,
.select .optgroup .option {
	border-color: #c9c9c9;
}
.select select {
	display: none;
}
.select > label {
	display: block;
}

/* enscroll fixes */
.select > div {
	display: none !important;
}
.select > input:checked ~ div {
	display: block !important;
}
.select .vertical-handle {
	width: 4px;
	margin: 0 0 0 -4px;
	background: #008EE1;
}

/* Show regular dropdown outside desktop */		
@media only screen and (max-width:999px) {
	.select select {
		display: block;
	}
	.select > label.clicker {
		display: block;
	}
}