
.hl-suggestions-container {
    display: none;
    background-color: #ffffff;
    position: fixed;
    z-index: 1000;
    left: 0;
}

.hl-suggestions-list {
    list-style: none;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    border-top: none;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    left:0;
    z-index: 1000;
}

.hl-suggestions-label {
    display: none;
    margin: 0;
    padding-left: 0.5em;
    background-color: #ffe0e9;
}

.hl-suggestions-list li {
    padding: 1em;
    cursor: pointer;
    border-bottom: 1px solid #EEE;
}

.hl-suggestions-list li:hover {
    background-color: #ffffff;
}

.hl-suggestions-list li.default-list-item {
    padding: 0.7em;
}

.hl-suggestions-list li .suggest-item {
    display: flex;
    align-items: center;
}

.hl-suggestions-list li div .label {
    font-size: 1em;
    font-weight: bold;
    color: rgb(34 0 25);
    padding: 0.3em;
    border-radius: 0.4em;
    background-color: rgb(255 203 226);
    width: 18%;
    text-align: center;
}

.hl-suggestions-list li div .suggest-word {
    font-size: 1.2em;
    margin-left: 0.4em;
}

