.selectm23{
    min-width: 150px;
    border: solid 2px #ddd;
    height: auto;
    min-height: 34px;
    height: auto;
    position: relative;
    /*background-image: linear-gradient(#eee 1%, #fff 15%);*/
}

.selectm23-input{
    width: 100%;
    height: 32px;
    display: block;
    min-width: 10px !important;
    margin-left: 5px;
    border: none !important;
    padding: 0 !important;
    line-height: 0 !important;
    min-height: available !important;
    background-color: transparent !important;
}

.selectm23-input:focus{
    outline: none !important;
    box-shadow: none !important;
}

.selectm23-selecton{
    position: relative;
}

.selectm23 .selectm23-options{
    width: 100%;
    position: absolute;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    outline: 2px solid #ddd;
    z-index: 9999;
}

.selectm23-option{
    padding: 5px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
    font-size: 1em;
}

.selectm23-option-selected,
.selectm23-option:hover{
    background: #e7f3f7;
    color: #37C;
}

.selectm23-selected{
    font-size: 0.95em;
    display: inline-block;
    position: relative;
    margin: 3px 2px 3px 2px;
    padding: 5px 18px 5px 5px;
    border: 1px solid #ddd;
    max-width: 100%;
    border-radius: 2px;
    background-color: #eeeeee;
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 99px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    color: #37C;
    line-height: 1em;
    cursor: move;
}

.selectm23-selected-cross{
    position: absolute;
    text-shadow: 1px 0;
    padding: 5px;
    color: #aaa;
    top: 4px;
    right: -2px;
    cursor: pointer;
    line-height: 0;
    font-size: 1.1em;
}


.selectm23-ghost{
    border: dashed 1px orange;
    background: green;
    color: #fff;
}

.selectm23-ghost .selectm23-selected-cross{
    display: none;
}

.selectm23-hidden{
    display: none;
}

