.neon-select{
    position: relative;
}
.neon-select.isfous{
    border-color: #0074d9!important;
}
.neon-select .placeholder {
    cursor: pointer;
    display: flex;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #3C4144;
    width: 100%;
}
.neon-select .placeholder .span-text{
    width: 100%;
}
.neon-select .placeholder span i{
    color: #36517D;
}
.neon-select .list {
    width: 100%;
    position: absolute;
    z-index: 200;
    border: 1.5px solid #E6E9EE;
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    padding: 0 !important;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    font-family: Lato, sans-serif;
    color: #002D41;
    right: 0;
    top: 52px;
    white-space: nowrap;
    max-height: 300px;
}

.neon-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-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-select .list .items {
    list-style: none;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    margin: 0;
}

.neon-select .list .items .item {
    min-height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
}

.neon-select .list .items .item:hover {
    background: #E2F2FE;
}

.neon-select .list .items .item.is-selected {
    background: #E2F2FE;
}

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

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