.si-wrap {
    position: relative;
    width: 100%;
}

.si-result {
    position: relative;
    width: 100%;
    color: rgb(122 122 122 / 72%);
    border: 1px solid #cccccc
}

.si-result:after {
    position: absolute;
    top: 50%;
    right: 1em;
    display: block;
    content: '';
    border-style: solid;
    border-color: rgba(255, 255, 255, .3) transparent transparent transparent;
    border-width: 5px;
    margin-top: -2.5px;
    pointer-events: none
}

.si-result.si-selection {
    color: #555;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.si-off .si-result:after {
    border-top-color: #cccccc
}

.si-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 100%;
    overflow-y: auto;
    border: 1px solid;
    border-top: none;
    border-color: #cccccc
}

.si-list ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.si-item {
    position: relative;
    padding: .5em .7em;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    background: white;
    color: #555;
}

.si-item:last-child {
    border-bottom: none
}

.si-item:hover {
    background-color: rgb(239 239 239)
}

.si-selected:after {
    position: absolute;
    right: 1em;
    content: '✔';
    color: #cccccc
}

.si-off .si-list {
    display: none
}