.pick-area {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    background: #fff;
    text-decoration: none;
    cursor: default;
    width: 100%;
    height: 100%;
}

.pick-show {
    position: relative;
    padding: 0 8px;
    padding-left: 1rem !important;
    line-height: 36px;
    border-radius: 3px;
    height: 100%;
    display: flex;
    align-items: center;
}

.pick-show span {
    float: left;
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    cursor: pointer;
    padding: 2px 5px;
    
}

.pick-show span:hover {
    color: #fff !important;
    border-radius: 3px;
    background: #0062ad !important;
}

.pick-show span.pressActive {
    background: #0062ad !important;
    color: #fff !important;
    border-radius: 3px
}

.pick-show em.pick-arrow {
    position: absolute;
    top: 60%;
    transform: translate(0,-50%);
    right: 10px;
    display: block;
    border: 9px solid #636363;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 9px solid transparent;

}

.pick-show i {
    float: left;
    display: inline-block;
    padding: 0 3px;
    color: #333;
    font-style: normal;
}

.pick-list {
    display: none;
    position: absolute;
    line-height: 36px;
    margin: 0;
    padding: 0;
    background: #fff;
    z-index: 999999999;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #dedede;
    border-top: none;
    width: 100%;
}

.pick-list li {
    margin: 0;
    padding-left: 8px;
    list-style: none;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pick-list li:hover , .pick-selectedLi {
    color: #fff;
    font-weight: bold;
    background: #0062ad !important;
}