/* Minification failed. Returning unminified contents.
(10,28): run-time error CSS1039: Token not allowed after unary operator: '-bgHover'
 */
.item-stamp {
    display: flex;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    border: solid thin #ddd;
}

.item-stamp:hover {
    background-color: var(--bgHover) !important;
}

.item-stamp .item-stamp-thumb {
    flex-shrink: 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* override these to change thumbnail size */
    max-height: 48px;
    max-width: 48px;
}

.item-stamp .item-stamp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-stamp .item-stamp-text {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.item-stamp .item-stamp-row {
    display: flex;
    align-items: center;
    min-width: 0;
    line-height: 1.4;
    margin-bottom: 2px;
}

.item-stamp .item-stamp-row:first-child {
    font-weight: bold;
}

.item-stamp .item-stamp-row:last-child {
    margin-bottom: 0;
}

.item-stamp .item-stamp-segment {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 4px;
}


