#stories .story {
    min-width: 62px;
}

#stories .story > a.item-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

#stories .story > .item-link > .info {
    /*text-overflow: unset !important;*/
}

/* --- Pulsing animation --- */

#stories [data-id*="live_"] .item-preview {
    position: relative;
    border-radius: 50%;
    overflow: unset !important;
    text-align: center;
    background: #ef3c50;
}

#stories [data-id*="live_"] .item-preview > img {
    width: 100%;
}

#stories [data-id*="live_"] .item-preview::before {
    content: "";
    position: absolute;
    border: 3px solid red;
    opacity: 0;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2s linear infinite;
}

#stories [data-id*="live_"] .item-preview::after {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.15;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(0.75);
        opacity: 0;
    }
}
