.neon-multi-select{
    line-height: 32px;
    position: relative;
}
.neon-multi-select .placeholder {
    cursor: pointer;
    display: inline-block;
    color: rgb(84, 105, 141);
    font-size: 0.75rem;
    font-family: Lato, sans-serif;
}

.neon-multi-select .placeholder .has-val {
    color: #0074D9;
}

.neon-multi-select .list {
    min-width: 100px;
    position: absolute;
    z-index: 200;
    border: 1px solid #E4E7ED;
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    padding: 0 !important;
    font-size: 13px;
    font-family: Lato, sans-serif;
    color: #002D41;
    right: 0;
    white-space: nowrap;
}

.neon-multi-select .list .up-arrow {
    width: 0;
    height: 0;
    position: absolute;
    margin-top: -12px;
    margin-left: calc(100% - 24px);
    border: solid 6px transparent;
    border-bottom: solid 6px #E4E7ED;
}

.neon-multi-select .list .up-arrow::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: -5px;
    top: -4px;
    border: solid 5px transparent;
    border-bottom: solid 5px white;
}

.neon-multi-select .list .items {
    list-style: none;
    box-sizing: border-box;
    width: 100%;
    padding: 0 0 3px 0;
    margin: 5px 0 0 0;
}

.neon-multi-select .list .items .item {
    min-height: 32px;
    cursor: pointer;
    margin-top: 2px;
    padding: 6px 15px 0 15px;
    text-align: left;
    line-height: 20px;
}

.neon-multi-select .list .items .item:hover {
    background-color: rgba(0, 116, 217, 0.06);
}

.neon-multi-select .list .items .item.is-selected {
    background-color: rgba(0, 116, 217, 0.06);
}

.neon-multi-select .list .footer {
    height: 35px;
    line-height: 15px;
    padding: 10px;
    color: #242d00;
    border-top: 1px solid #EEF1F6;
    font-size: 12px;
    letter-spacing: 0;
}

.neon-multi-select .list .footer span {
    font-family: Lato, sans-serif;
    color: #0074D9;
    cursor: pointer;
    margin-right: 5px;
    float: right;
}