.selectbox .selected,
.selectboxMulti .selected{
    padding: 9px 30px 9px 10px;
    background: url('../img/selectbox-arrow.png') right 5px center  #FFFFFF no-repeat;
    border: 1px solid #DDD;
    border-radius: 3px;
    box-sizing: border-box;
    
    font-family:'Open Sans', Arial;
    font-size: 13px;
    line-height: 16px;
    min-height: 36px;
    color: #333;
    
    transition: 0.2s linear all;
    
    cursor: pointer;
    font-weight: normal;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectbox .selected_hover,
.selectbox .selected_opened,
.selectbox:focus .selected,
.selectboxMulti .selected_hover,
.selectboxMulti .selected_opened,
.selectboxMulti:focus .selected {
    background-color: #EcffF5;
    outline: none;
}
.selectbox:focus,
.selectboxMulti:focus {
    outline: none;
}
.selectbox .options,
.selectboxMulti .options {
    position: absolute;
    background-color: #FFFFFF;
    margin-top: 2px;
    
    max-height:300px;
    overflow-x: hidden;
    overflow-y: auto;
    
    border: 1px solid #00b219;
    border-radius: 3px;
    padding: 0px;
    line-height: 36px;
    
    box-sizing: border-box;
    
    display: none;
    cursor: pointer;
    color: #000000;
    font-weight: normal;
    z-index: 10;
    
    text-align: left;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.selectbox .options span,
.selectboxMulti .options span {
    padding: 2px 10px 2px 10px;
    display: block;
    
    font-size: 13px;
}
.selectbox .selected svg,
.selectbox .options span svg,
.selectboxMulti .selected svg,
.selectboxMulti .options span svg {
    margin-top: 2px;
}

.selectbox .options .hover,
.selectboxMulti .options .hover {
    background-color: #E8E8E8;
    color: #000;
}

/* checkboxy v multi selectboxech */
.selectboxMulti .options span.selectable:before {
    font-family: FontAwesome;
    font-size: 18px;
    content: "\f096";
    float: left;
    margin-right: 10px;
    font-weight: normal !important;
}
.selectboxMulti .options span.picked:before {
    content: "\f046";
    color: #FFF !important;
}
.selectboxMulti .options span.picked {
    color: #FFF;
}