.EveSelector {
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #00acc8;
    padding: 6px 30px 6px 5px;
    min-height: 30px;
    height: 30px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color:white;
}
.EveSelector.disabled{
    border:1px solid #acacac;
    cursor:default;
}
.EveSelector.disabled i.EveSelectorArrow{
    background-color:#acacac;
}
.EveSelector.disabled span.EveSelectorValue{
    color:#acacac;
}

.EveSelector,.EveSelector div,.EveSelector span,.EveSelector i,
.EveSelectorValues,.EveSelectorValues ul, .EveSelectorValues li, .EveSelectorValues span .EveSelectorValues li{
    user-select:none;
    -o-user-select:none;
    -ms-user-select:none;
    -moz-user-select:none;    
    -khtml-user-select:none;
    -webkit-user-select:none;
}

.EveSelector i.EveSelectorArrow {
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background-color: #00acc8;
    background-image:url('/front/sprite/pi_select/arrows.png');
    background-position: 0px 0px;
}

span.EveSelectorValue {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 5px;
}

.EveSelectorValues {
    position: absolute;
    box-sizing: border-box;
    border: 1px solid #00acc8;
    border-top: none;
    padding: 10px 0;
    background-color: white;
    max-height: 330px;
    overflow: auto;
    z-index:25;
}

.EveSelectorValues ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.EveSelectorValues ul li {
    margin-bottom: 1px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
    padding: 4px 10px 4px 10px;
    white-space: nowrap;
    overflow: hidden;
}

.EveSelectorValues ul li:hover {
    color: white;
    background-color: #00acc8;
}