.img {
    pointer-events: none;
}

.story-container ul {
    list-style-type: none;
    user-select: none;
    display: flex;
    overflow-y: auto;
    padding: 5px 0;
}

.story-container ul li {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.story-container ul li:first-child {
    padding-left: 20px;
}

.story-container ul li:last-child {
    padding-right: 20px;
}

.story-container ul li .story {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
    padding: 1px;
    position: relative;

}

.story-container ul li.has-stroy .story {
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.story-container ul li .story img {
    padding: 4px;
    background: currentColor;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.story-container ul li span {
    color: rgba(255,255,255 .85);
    font-weight: 300;
    font-size: 15px;
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}