﻿/* CUSTOM LISTBOX */

.customlist-ul{
    margin: 0 0 0 0;
    background-color: #f6f6f6;
    padding: 3px 3px 3px 0;
    list-style-type: none;
    position: absolute;
    max-width: 600px;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.customlist-ul li{
    float: left;
	font-size: 14px;
	margin-left: 5px;
}

.customlist-desc{
	-webkit-transition: background-color 0.1s;
	-moz-transition: background-color 0.1s;
	-ms-transition: background-color 0.1s;
	-o-transition: background-color 0.1s;
	border-radius: 2px;
    background-color: #eaeaea;
	font-size: 14px;
    cursor: pointer;
	color: #407ea9;
    padding: 3px;
    float: left;
}.customlist-desc:hover:not(:disabled){
	background-color: #282d34;
}

.customlist-arrow{
	float: right;
	margin-left: 10px;
	color: #aaa;
}

.customlist-sel{
	font-size: 14px;
	cursor: default;
    padding: 3px;
	color: #f90;
    float: left;
}

/* CUSTOM DROP */

.customdrop{
	filter: alpha(opacity=0);
	position: absolute;
	min-width: 70px;
	padding: 3px;
	opacity: 0;
}.customdrop.chico{
	min-width: 50px !important;
	height: 22px !important;
	font-size: 11px !important;
}
.customdrop-div{
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-ms-transition: all 0.1s;
	-o-transition: all 0.1s;
	background-color: #999;
	border: solid 1px #999;
	padding: 4px 3px 2px 3px;
	display: inline-block;
	text-align: left;
	min-width: 50px;
	font-size: 13px;
	margin: 2px 0;
	color: #333;
	background-image: -webkit-linear-gradient(top, #9fa6ae, #808487);
	background-image: -moz-linear-gradient(top, #9fa6ae, #808487);
	background-image: -ms-linear-gradient(top, #9fa6ae, #808487);
}.customdrop-div.chico{
	padding: 3px 2px 1px 2px !important;
	font-size: 12px !important;
}select:disabled + .customdrop-div{
	background-color: #f9f9f9 !important;	
}

.customdrop-content {
	white-space: nowrap;
	width: calc(100% - 26px);
	overflow: hidden;
	float: left;
}

.customdrop-arrow{
	margin: -4px -3px 0 0;
	padding-top: 5px;
	text-align: center;
	border-radius: 3px;
	cursor: default;
	color: #dbdce0;
	float: right;
	height: 19px;
	width: 26px;
}.customdrop-div.chico .customdrop-arrow{
	padding-top: 4px;
	height: 10px;
	width: 20px;	
}
.customdrop-arrow .icon-search{
	text-shadow: 1px 1px 1px #282e37;
	margin: 6px auto;
	font-size: 11px;
	display: block;
	width: 11px;
}
select:hover:not(:disabled) + .customdrop-div,
select:focus:not(:disabled) + .customdrop-div{
	border-color: #000;
	background-color: #414955;
	color: #fff;
}
select:hover:not(:disabled) + .customdrop-div .customdrop-arrow,
select:focus:not(:disabled) + .customdrop-div .customdrop-arrow{
	color: #fff;
}