select[multiple] {
    display: none;
}

.multiselect {
    display: inline-block;
    text-align: left;
    height: 22px;
    line-height: 22px;
    border: 1px solid #dddddd;
    padding: 0 1rem 0 0.25rem;
    background: url("../img/multiselect-arrow.png") no-repeat center right 3px white;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}

.multiselect:focus {

}

.multiselect .options {
    top: 21px;
    left: -1px;
    background: white;
    border: 1px solid #7b9dd4;
    position: absolute;
    min-width: 112px;
    z-index: 6;
}

.multiselect .options a {
    display: block;
    text-align: left;
    padding: 0 0.25rem;
    text-decoration: none;
    color: black;
    white-space: nowrap;
    font-size: 12px;
}

.multiselect .options a.selected {
    color: white;
    background: #1e90ff;
}

.multiselect a.ok {
    background: #4285f4;
    color: white;
    border-radius: 2px;
    display: block;
    margin: 0.25rem;
    text-align: center;
}

.multiselect span {
    font-size: 12px;
}