input#livesearch {
    width: 100%;
    padding-left: 2.5rem;
}

/*noinspection ALL*/
.livesearch-wrapper {
    position: relative;
}

#livesearch-results {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

.search-item {
    display: block;
    width: 100%;
    background-color: #eee;
    border: 1px solid black;
    border-top: none;
    padding: 5px;
}

.search-item-content {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    height: 2rem;
}

.search-item-label {
    background-color: grey;
    border-radius: 8px;
    padding: 4px 8px;
    color: white;
}

.search-item:first-of-type {
    border-top: 1px solid black;
}

.search-item:last-of-type {
    border-bottom: 1px solid black !important;
}

.livesearch-icon {
    position: absolute;
    top: 0.9rem;
    left: 1rem;
}