.search-item{
    display: flex;
    height: 48px;
    width: 100%;
    padding: 0px 8px;
    box-sizing: border-box;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    flex-shrink: 0;
    cursor: pointer;
}

.search-item:hover{
    background: var(--Woodsmoke-600, #5D5D5D);
}

.search-item-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.search-item-result{
    color: var(--Woodsmoke-50, #F6F6F6);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
}