.e47-picklist-cont {
    .pos-cont {
        position: relative;
    }
    & ul {
        width: 100%;
        border-radius: 0.5rem;
        position: absolute;
        top: 5px;
        left: 0;
        background-color: white;
        box-shadow: 0 0 2px 3px lightblue;
    }
    & li {
        padding: 0.5rem;
        cursor: pointer;
        border-bottom: 1px solid gray;
        opacity: 0.8;

        &:last-child {
            border-bottom: none;
        }
    }

    & .sd {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        background-color: lightgoldenrodyellow;
        padding: 1rem;
        align-items: center;
        & h2 {
            text-transform: uppercase;
        }
        & input {
            min-width: 30rem;
        }
    }
}