.user-event__item {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--people-border-gray);
    margin-bottom: 15px;
}

.user-event__thumbnail-wrapper {
    width: 200px;
    cursor: pointer;
}

.user-event__thumbnail-wrapper img {
    width: 100%;
}

.user-event__details {
    width: calc(100% - 220px);
}

.user-event__header {
    display: flex;
}

.user-event__author-group {
    display: flex;
    margin-right: 40px;
    min-width: 0;
    flex: 0 1 auto;
    max-width: 30%;
}

.user-event__avatar {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    border: 1px solid var(--people-border-gray);
    display: inline-block;
    margin-right: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.user-event__author-meta {
    flex: 1;
    min-width: 0;
}

.user-event__author-name {
    font-size: var(--people-font-size-sm);
    color: var(--people-text-color);
    font-weight: bold;
    margin-top: 2px;
    margin-bottom: 4px;
    line-height: 1.3;
    cursor: pointer;
    word-wrap: break-word;
    word-break: break-word;
}

.user-event__author-date {
    font-size: var(--people-font-size-xs);
    margin-top: 3px;
    color: var(--people-text-gray-light);
    line-height: 1;
}

.user-event__header-right {
    display: flex;
    margin-left: auto;
    padding-left: 15px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.user-event__stats-list {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 224px;
}

.user-event__stats-list li {
    font-size: var(--people-font-size-s);
}

.user-event__stats-list li a {
    color: var(--people-text-gray-light);
    cursor: auto;
}

.user-event__favorite-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    font-size: var(--people-font-size-s);
    font-weight: bold;
    border: 1px solid var(--people-color-orange);
    border-radius: var(--people-border-radius);
    background-color: var(--people-color-white);
    color: var(--people-color-orange);
    line-height: 1;
    cursor: pointer;
    background: url(/App/modules/people/assets/icons/icon_heart_small.svg) no-repeat left 8px top 11px;
    background-size: 10px;
    padding: 0 10px 0 20px;
    text-decoration: none !important;
}

.user-event__favorite-btn--active {
    background: url(/App/modules/people/assets/icons/icon_heart_small_orange.svg) no-repeat left 8px top 11px;
    background-color: var(--people-color-orange);
    background-size: 10px;
    color: var(--people-color-white) !important;
    text-decoration: none !important;
}

.user-event__favorite-btn:not(.user-event__favorite-btn--active):hover {
    background-color: #FFF2ED !important;
}

.user-event__info-row {
    display: flex;
}

.user-event__schedule {
    font-size: var(--people-font-size-ml);
    padding-left: 20px;
    background: url(/App/img/MeetUp/icn_calendar.svg) no-repeat top 6px left;
    background-size: 13px;
    color: var(--people-text-color);
    margin-right: 25px;
}

.user-event__location {
    font-size: var(--people-font-size-ml);
    padding-left: 20px;
    background: url(/App/img/MeetUp/icn_pin.svg) no-repeat top 3px left;
    background-size: 12px;
    color: var(--people-text-color);
}

.user-event__title {
    font-size: var(--people-font-size-lg);
    font-weight: bold;
    margin-top: -5px;
    cursor: pointer;
}

.user-event__summary {
    font-size: var(--people-font-size-md);
    margin-top: 3px;
}

.user-event__categories {
    margin-top: 10px;
    color: var(--people-color-orange);
    font-size: var(--people-font-size-sm);
    font-weight: bold;
    display: flex;
    column-gap: 10px;
    row-gap: 0px;
    flex-wrap: wrap;
    flex-direction: row;
}

.user-event__category-link {
    color: var(--people-color-orange);
}

.user-event__tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    row-gap: 5px;
    column-gap: 10px;
}

.user-event__tags-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    color: var(--people-color-orange);
    font-size: var(--people-font-size-s);
    font-weight: bold;
    line-height: 1;
    border: 1px solid var(--people-color-orange);
    border-radius: var(--people-border-radius);
    padding: 0px 10px;
}

.user-event__tags-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 100%;
    height: 100%;
    color: var(--people-color-orange);
}

.user-event__tags-list li:last-child {
    margin-right: 0;
}

.user-event__co-owners-group {
    display: flex;
}

.user-event__more-owners-wrapper {
    display: flex;
}

.user-event__avatar--disabled {
    pointer-events: none;
    cursor: default;
}

.user-event__author-name--disabled {
    pointer-events: none;
    cursor: default;
}

.user-event__co-owner-avatar {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid var(--people-border-gray);
    display: inline-block;
    margin-right: 5px;
}

.user-event__co-owner-avatar--disabled {
    cursor: default;
    width: 30px;
    height: 30px;
}

.user-event__single-owner-container {
    margin-top: 4px;
    font-size: var(--people-font-size-sm);
    flex: 0 1 auto;
    min-width: 0;
    max-width: 30%;
}

.user-event__single-owner-name {
    cursor: pointer;
    line-height: 1.3;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
}

.user-event__more-owners {
    color: var(--people-text-gray-light);
}

.user-event__snackbar {
    transform: translate(-2%);
}

.user-event__place {
    word-break: break-all;
}

.user-event__hint-display-name {
    width: auto;
    margin-top: 34px;
    margin-left: 4px;
    background-color: var(--people-border-gray);
    box-shadow: 2px 2px 5px var(--people-shadow-hint);
    border: 1px solid var(--people-border-gray);
    color: var(--people-text-color);
    text-align: center;
    font-size: var(--people-font-size-xxs);
    position: absolute;
    animation-name: user-event-showhint;
    animation-duration: 0.5s;
    padding: 3px;
    z-index: 1000;
}

@keyframes user-event-showhint {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.user-event__favorite-tooltip {
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--people-bg-tooltip);
    color: var(--people-color-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: var(--people-font-size-s);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
}

.user-event__favorite-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--people-bg-tooltip) transparent transparent transparent;
}

.user-event__favorite-tooltip.active {
    opacity: 0.9;
    visibility: visible;
}

.user-event__stat-text {
    font-size: var(--people-font-size-xs);
    letter-spacing: 0px;
    color: var(--people-text-gray-light);
    opacity: 1;
    pointer-events: none;
}