.nearest_venue_row {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    cursor: pointer;
    scrollbar-color: rgba(0,0,0,0.5);
}
.nearest_venue_row.active {
    background: rgba(255,255,255,0.3);
    cursor: grabbing !important;
    transform: scale(1);
}
.nearest_venue_title_mobile {
    max-height: 40px; 
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #25282B; 

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.nearest_venue_mobile_rating {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 5px;
    background: #FFFFFF;
    border-radius: 8px;
}
