.selectm23{
    min-width: 150px;
    border: solid 1px gainsboro;
    height: auto;
    min-height: 40px;
    padding: 5px 2px 0 2px;
    height: auto;
    position: relative;
    background-image: linear-gradient(#eee 1%, #fff 15%);
}

.selectm23-input{
    width: 100% !important;
    min-width: 10px !important;
    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;
    margin: 1px 0 0 -1px;
    background: #fff;
    z-index: 9999;
}

.selectm23-option{
    padding: 5px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.selectm23-option-selected,
.selectm23-option:hover{
    background: #e7f3f7;
    color: #7994fa;
}

.selectm23-selected {
    font-size: 14px;
    line-height: normal;
    display: inline-block;
    position: relative;
    margin: 2px;
    padding: 8px 20px;
    border: none;
    max-width: 100%;
    border-radius: 0;
    background-color: #f0f4ff;
    color: #3a6dd5;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(58, 109, 213, 0.3);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    overflow: hidden;
}

.selectm23-selected:hover {
    background-color: #e0eaff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(58, 109, 213, 0.4);
}

.selectm23-selected-cross{
    position: absolute;
    text-shadow: 1px 0;
    padding: 5px;
    color: #ccc;
    top: 5px;
    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;
}

.selectm23-option-disabled,
.selectm23-option-disabled:hover{
    font-style: italic;
    /*
    background: repeating-linear-gradient(
        135deg,
        #fff,
        #fff 10px,
        #ddddff 10px,
        #ddddff 20px
        );
    */
    color: #888;
}