.stories.snapgram .story > .item-link {
  text-decoration: none;
  color: #333;
}
.stories.snapgram .story > .item-link > .item-preview {
  border-radius: 50%;
  padding: 4px;
  /*background: radial-gradient(ellipse at 70% 70%, #ee583f 8%, #d92d77 42%, #bd3381 58%);*/


}
.stories.snapgram .story > .item-link > .item-preview img {
  border-radius: 50%;
  /*border: 3px solid #fff;*/


}

.stories.snapgram .story.seen {
  opacity: 1;
}
.stories.snapgram .story.seen:hover {
  opacity: 0.85;
}
/*.stories.snapgram .story.seen > a > .item-preview {
  background: #999;
}*/
.stories.snapgram .story.seen > a {
  color: #999 !important;
}


.item-preview {
    border-radius: 50%;
    border-top: 2px dashed #bd3381;
    border-right: 2px dashed #d92d77;
    border-left: 2px dashed #ee583f;
    border-bottom: 2px dashed #bd3381;
    padding: 10px;
    animation: spin 20s infinite linear;
}
.item-preview img {
    animation: spin 20s infinite reverse linear;
    width: 100%;
    border-radius: 50%;
}



@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}