.ew-select {
    position: relative;
    width: 100%;
}
  
.ew-select select {
    display: none;
}

.ew-select-selected.ew-select-arrow-active {
    color: #FFFFFF !important;
    border: 1px solid rgba(94, 94, 94, 0.08);
    border-radius: 5px 5px 0px 0px;
}
.ew-select-selected {
    border: 1px solid rgba(94, 94, 94, 0.08) !important;
    border-radius: 5px;
    color: #5E5E5E !important;
}

.ew-select-selected:after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    width: 0.7em;
    height: 0.7em;
    border: solid #ACACAC;
    border-width: 0px 2px 2px 0;
    transform: translateY(-50%) rotate(44deg);
}

.ew-select-selected.ew-select-arrow-active:after {
    top: 20px;
    transform: translateY(-50%) rotate(224deg);
    border-color: #fff;
}

.ew-select-items div,.ew-select-selected {
    color: #5E5E5E;
    padding: 6px 10px;
    border: 1px solid transparent;
    user-select: none;
}
.ew-select-items div {
    cursor: pointer;
}

.ew-select-items {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid rgba(94, 94, 94, 0.08);
    border-top: 0;
}

.ew-select-hide {
    display: none;
}

/* .ew-same-as-selected {
    color: #FFFFFF !important;
} */