/* --- EASYDROPDOWN DEFAULT THEME --- */

/* PREFIXED CSS */

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

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


.dropdown { position: relative; border: 1px solid #e2e2e2; cursor: pointer;  -webkit-user-select: none; -moz-user-select: none; user-select: none;padding: 6px 0; color: #999 }

.dropdown.open { z-index: 2; }



/* CARAT */

.dropdown .carat { position: absolute; right: 12px; top: 50%; margin-top: -3px; border: 6px solid transparent; border-top: 6px solid #999; }

.dropdown.open .carat { margin-top: -8px; border-top: 4px solid transparent; border-bottom: 6px solid #000; }

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

/* OLD SELECT (HIDDEN) */

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

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

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

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

/* SELECTED FEEDBACK ITEM */

.dropdown .selected,
.dropdown li {  display: block; font-size: 14px; line-height: 1; color: #999 ;padding: 5px 12px; padding-right: 20px; overflow: hidden; white-space: nowrap;  padding-right: 10px!important;}

.dropdown.disabled .selected { color: #999; padding-right: 30px!important; }

.dropdown .selected::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0;  border-radius: 0 2px 2px 0; }

/* DROP DOWN WRAPPER */

.dropdown 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 */

.dropdown.open div { opacity: 1; z-index: 2; overflow: auto; }

/* FADE OVERLAY FOR SCROLLING LISTS */

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

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

/* DROP DOWN LIST */

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

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

/* DROP DOWN LIST ITEMS */

.dropdown li { list-style: none; padding-left: 12px!important; padding: 0 12px; margin-top: 0!important; line-height: 30px;  margin-bottom: 0!important;}

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

.dropdown li.focus { background: #d9d9d9; position: relative; z-index: 3; color: #000; }

.dropdown li.selected {padding-left: 12px!important;  padding: 0 12px; margin-top: 0!important; line-height: 30px;}
