.bk_stories__elements {
    display: flex;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: 0;
    margin: 0 -10px 0 0;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    flex-direction: row;
    align-items: first baseline;
    width: 106%
}

.bk_stories__elements::-webkit-scrollbar {
    display: none
}

.bk_stories__elements__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
    cursor: pointer;
    user-select: none;
    margin-left: .75rem;
    float: right
}

.bk_stories__elements__item:last-child {
    margin-left: 0
}

.bk_stories__elements__item__picture {
    position: relative;
    width: 100px;
    height: 100px
}

.bk_stories__elements__item__picture--img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px !important;
    transform: translate(-50%, -50%);
    border-radius: 50% !important
}

.bk_stories__elements__item__picture--circle {
    fill: none;
    stroke: var(--bk-border-color);
    stroke-linecap: round;
    stroke-width: 2;
    stroke-dasharray: 1;
    stroke-dashoffset: 0
}

.bk_stories__elements__item__title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1rem;
    overflow-wrap: break-word;
    color: #333;
    margin: .25rem 0
}

.bk_stories__elements__item.loading .bk_stories__elements__item__picture--circle {
    animation: 6s ease-out infinite alternate stroke-draw
}

.bk_stories__elements__item.seen {
    opacity: .75
}

.bk_stories__elements__item.seen .bk_stories__elements__item__picture--circle {
    stroke: #ddd
}

.bk_stories__box {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 3%, .5);
    overflow: hidden;
    z-index: 999999999;
    -webkit-backdrop-filter: blur(1+px);
    backdrop-filter: blur(1px);
}

.bk_stories__box.opened,
.bk_stories__box__actions__mute.visible,
.bk_stories__box__actions__playing.visible {
    display: block
}

.bk_stories__box__elements {
    display: block;
    position: relative;
    width: 100vh;
    max-width: 100vw;
    height: 100vh;
    background-color: hsl(0deg 0% 53% / 11%);
    overflow: hidden;
    margin: 0 auto;
    -webkit-backdrop-filter: blur(p);
    backdrop-filter: blur(1px);
}

.bk_stories__box__elements__slides__wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 56.25vh;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    transition: transform .25s cubic-bezier(.8, 0, .2, 1);
    will-change: auto;
    touch-action: manipulation;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
    overflow: hidden
}

.bk_stories__box__elements__slides__item {
    display: block;
    position: relative;
    width: 100vh;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    will-change: opacity;
    opacity: 0;
    filter: blur(0);
    transition: opacity .5s, filter .25s
}

.bk_stories__box__elements__slides__item.active {
    opacity: 1
}

.bk_stories__box__elements__slides__item--content {
    display: block;
    position: relative;
    width: 100vh !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    padding: 0;
    margin: 0 !important;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    pointer-events: none
}

.bk_stories__box__elements__slides__item--link {
    z-index: 9999999999;
    display: block;
    position: absolute;
    right: 50%;
    bottom: 25%;
    background-color: #fff;
    transform: translateX(50%);
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px
}

.bk_stories__box__elements