.s-input-autocomplete__options-group {
    position: absolute;
    left: -2px;
    top: calc(100% - 0.3rem - 1px);
    width: 100%;
    z-index: 10;
    background-color: var(--lightest);
    border: 2px solid var(--primary-alpha-500);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-top: none;
    box-shadow: var(--shadow);
    overflow: auto;
    resize: vertical;
    scrollbar-width: thin;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    animation: fade-in 0.14s;
}

    .s-input-autocomplete__icon {
        cursor: pointer;
        transition: 0.35s;
        border: none;
        background-color: transparent;
        margin: -0.5rem 0;
        padding: 0 0.2rem;
        align-items: center;
        display: flex;
        justify-content: center;
        text-align: center;
    }