/* --- 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;
}

/* WRAPPER */

.dropdown {
    position: relative;
    width: 424px;
    padding: 5px 13px 5px 13px;
    border: 0px;
    font-size: 14px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #959595;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: #fefcf9 !important;
    cursor: pointer;
}
.dropdown.open {
    z-index: 2;
}

.dropdown:hover {

}

.dropdown.focus {

}

/* CARAT */

.dropdown .carat {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -7px;
    display: block;
    width:13px;
    height:13px;
    background: url(select_arrow.png) left -13px no-repeat;
}

.dropdown.open .carat {
    margin-top: -7px;
    background: url(select_arrow.png) left top no-repeat;
}

.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: #7e7e7e;
    padding: 9px 12px;
    overflow: hidden;
    white-space: nowrap;
}
.selected{
    color: #000000 !important;
}
.dropdown.disabled .selected {
    color: #999;
}

.dropdown .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 #fefcf9;
}

/* DROP DOWN WRAPPER */

.dropdown div {
    position: absolute;
    height: 0;
    left: -1px;
    right: -1px;
    top: 100%;
    margin-top: -1px;
    background: #e5f5e7;
    border: 0px;
    overflow: hidden;
    opacity: 0;
    padding-bottom: 24px;
}
.dropdown div:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 10px;
    background: url(select_border.png) left top no-repeat;
}
/* Height is adjusted by JS on open */

.dropdown.open div {
    opacity: 1;
    z-index: 2;
    content: '';
    position: absolute;
}

/* 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;
    height: 100%;
    width: 100%;
    list-style: none;
    overflow: hidden;
}

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

/* DROP DOWN LIST ITEMS */

.dropdown li {
    list-style: none;
    padding: 8px 20px 8px 59px;
    cursor: pointer;
    background: url(select_point.png) 30px -17.5px no-repeat;
    transition: none;
}

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

.dropdown li.focus {
    position: relative;
    z-index: 3;
    color: #f37622;
    background-position: 30px 12px;
    transition: none;
}

.dropdown li.active {
    color: #f37622;
    background-position: 30px 12px;
    transition: none;
}
