@media (max-width: 699px) {

    /* smallest screen  */


    .live_list_container {
        width: 100%;
        min-width: 420px;
        background: #000;
        padding: 8px;
        box-sizing: border-box;
        overflow-y: auto;
        height: 100%;
        color: #fff;

        /* on mobile, live list appears stacked above gallery */
        margin-bottom: 20px;
        order: 1;
        height: 410px;
        overflow: hidden;
    }



}

@media (min-width: 700px) {

    /* all larger screens  */

    .live_list_container {
        width: 420px;
        min-width: 420px;
        background: #000;
        padding: 8px;
        box-sizing: border-box;
        overflow-y: auto;
        height: 100%;
        color: #fff;
        height: 100%;
        overflow-y: auto;
    }


}


.live_list_header {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #777;
    text-transform: uppercase;
    padding: 10px;
}

#live_list {}

.live_list_item {
    width: 100%;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border: solid 1px transparent;
}

.live_list_item .icon {
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
    /* allow overlay positioning */
}

.live_list_item .icon img {
    height: 40px;
    width: 40px;
    border-radius: 6px;
}

.live_list_item .icon .overlay {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    background: #c48f09;
    border-radius: 3px;
    border: solid 1px #fff;
    padding: 3px;
    box-sizing: border-box;
    filter: invert(1);
}

.live_list_item .text {
    flex: 1 1 auto;
    min-width: 0;
    /* critical inside flex */
    display: flex;
    align-items: center;
    gap: 4px;
}

.live_list_item .text span {
    display: block;
    overflow: hidden;
    /* needed for ellipsis */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live_list_item .text .approved {
    height: 13px;
    width: 13px;
}

.live_list_item .info_wrapper {
    flex-shrink: 0;
    margin-left: auto;
    font-weight: 600;
}

.live_list_item .info_wrapper .tx_info {
    padding-bottom: 4px;
    text-align: right;
}


.live_list_item .info_wrapper .created_utc {
    font-size: 11px;
    font-weight: 400;
    color: #ff7f00;
}


.live_list_item .info_wrapper .hash {
    font-size: 11px;
    font-weight: 400;
    color: #777;
}


.live_list_item:hover {
    border: solid 1px rgba(122, 122, 122, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}