/* --- EASYu_cesit DEFAULT THEME --- */

/* PREFIXED CSS */

.u_cesit,
.u_cesit div,
.u_cesit li,
.u_cesit div::after{
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.u_cesit .selected::after,
.u_cesit.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */


/* WİDTH DEĞERLERİ BURDAN OYNANIYOR.*/
.u_cesit{
	position: relative;
	width: 100%;
	border: 1px solid #ccc;
	cursor: pointer;
	background: #fff;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	height:30px;
	font: 14px/1.375 Arial,sans-serif;
}

.u_cesit.open{
	z-index: 2000;
}

.u_cesit:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}

.u_cesit.focus{
	box-shadow: 0 0 5px rgba(51,102,248,.4);
}

/* CARAT */

.u_cesit .carat{
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	border: 5px solid transparent;
	border-top: 8px solid #000;
}

.u_cesit.open .carat{
	margin-top: -10px;
	border-top: 5px solid transparent;
	border-bottom: 8px solid #000;
}

.u_cesit.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.u_cesit .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.u_cesit select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.u_cesit.touch .old{
	width: 100%;
	height: 100%;
}

.u_cesit.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 

.u_cesit .selected,
.u_cesit li{
	display: block;
	font-size: 14px;
	line-height: 1;
	color: #000;
	padding: 7px 12px;
	overflow: hidden;
	white-space: nowrap;
}

.u_cesit.disabled .selected{
	color: #999;
}

.u_cesit .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	
	border-radius: 0 2px 2px 0;
	box-shadow: inset -55px 0 25px -20px #fff;
}

/* DROP DOWN WRAPPER */

.u_cesit div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 1px solid #eee;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.u_cesit.open div{
	opacity: 1;
	z-index: 2000;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.u_cesit.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	
	box-shadow: inset 0 -50px 30px -35px #fff;
}

.u_cesit.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.u_cesit ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
	padding:0;
	margin:0;
}

.u_cesit.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.u_cesit li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.u_cesit li.focus{
	background-image: linear-gradient(center top , #d1ba94, #bca071);
background-image: -moz-linear-gradient(center top , #d1ba94, #bca071);
background-image: -webkit-linear-gradient(center top , #d1ba94, #bca071);
background-image: -o-linear-gradient(center top , #d1ba94, #bca071);
	position: relative;
	z-index: 3000;
	color: #fff;
}

.u_cesit li.active{
	font-weight: 700;
}

select,
.u_cesit{
	margin-bottom: 30px;
	display: inline-block;
}

.u_cesit{
	margin-right: 8px;
}