:root {
    --stories-slider-z-shadows: 999;
    --stories-slider-z-pagination: 50;
    --stories-slider-z-navigation: 200;
    --stories-slider-z-user: 300;
    --stories-slider-z-actions: 300;
    --stories-slider-z-content: 100;
    --stories-slider-slide-bg-color: #000
}

.stories-slider,
.self_stories-slider {
    padding-top: 44px;
    padding-bottom: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center
}

.stories-slider>.swiper>.swiper-wrapper>.swiper-slide:not(.swiper-slide-next, .swiper-slide-prev, .swiper-slide-active),
.self_stories-slider>.swiper>.swiper-wrapper>.swiper-slide:not(.swiper-slide-next, .swiper-slide-prev, .swiper-slide-active) {
    opacity: 0
}

.stories-slider>.swiper>.swiper-wrapper>.swiper-slide-next+.swiper-slide,
.self_stories-slider>.swiper>.swiper-wrapper>.swiper-slide-next+.swiper-slide {
    opacity: 1
}

.stories-slider .swiper,
.self_stories-slider .swiper {
    height: 100%;
    width: 100%
}

.stories-slider .swiper .swiper .swiper-slide,
.self_stories-slider .swiper .swiper .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--stories-slider-slide-bg-color)
}

.stories-slider .swiper .swiper-slide-shadow-left, 
.stories-slider .swiper .swiper-slide-shadow-right,
.self_stories-slider .swiper .swiper-slide-shadow-left, 
.self_stories-slider .swiper .swiper-slide-shadow-right {
    z-index: var(--stories-slider-z-shadows) !important
}

.stories-slider .swiper .swiper-slide-shadow-left,
.self_stories-slider .swiper .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, .5))
}

.stories-slider .swiper .swiper-slide-shadow-right,
.self_stories-slider .swiper .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, .5))
}

.stories-slider.stories-slider-perspective .swiper .swiper, 
.stories-slider.stories-slider-perspective .swiper-slide-shadow-left, 
.stories-slider.stories-slider-perspective .swiper-slide-shadow-right,
.self_stories-slider.stories-slider-perspective .swiper .swiper, 
.self_stories-slider.stories-slider-perspective .swiper-slide-shadow-left, 
.self_stories-slider.stories-slider-perspective .swiper-slide-shadow-right {
    transform: translateZ(calc(-1 * var(--swiper-cube-translate-z)));
    transform-origin: 0% 0% calc(-1 * var(--swiper-cube-translate-z))
}

.stories-slider-button {
    position: absolute;
    z-index: var(--stories-slider-z-navigation);
    top: 0;
    height: 100%;
    user-select: none;
    -webkit-user-select: none
}

.stories-slider-button:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition-duration: .2s
}

.stories-slider-button:active:before {
    opacity: .25
}

.stories-slider-button-prev {
    left: 0;
    width: 30%
}

.stories-slider-button-prev:before {
    background-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0))
}

.stories-slider-button-next {
    right: 0;
    width: 70%
}

.stories-slider-button-next:before {
    background-image: linear-gradient(to left, #000, rgba(0, 0, 0, 0))
}

.stories-slider-pagination {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    display: flex;
    justify-content: space-between;
    z-index: var(--stories-slider-z-pagination);
    pointer-events: none;
    transform: translateZ(0)
}

.stories-slider-pagination-bullet {
    width: 100%;
    flex-shrink: 10;
    border-radius: 999px;
    height: 2px;
    background: rgba(255, 255, 255, .35);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 1px #00000059
}

.stories-slider-pagination-bullet span {
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    transform: translate(-100%);
    transition-timing-function: linear
}

.stories-slider-pagination-bullet-viewed span {
    transform: translate(0);
    transition-duration: 0ms !important
}

.stories-slider-pagination-bullet+.stories-slider-pagination-bullet {
    margin-left: 2px
}

a.stories-slider-user, .stories-slider-user a,
a.self_stories-slider-user, .self_stories-slider-user a {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition-duration: .2s
}

a.stories-slider-user:active, .stories-slider-user a:active,
a.self_stories-slider-user:active, .self_stories-slider-user a:active {
    opacity: .55
}

.stories-slider-user,
.self_stories-slider-user {
    display: flex;
    align-items: center;
    position: absolute;
    top: 18px;
    left: 12px;
    height: 32px;
    z-index: var(--stories-slider-z-user);
    color: #fff;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none
}

.stories-slider-user-avatar ,
.self_stories-slider-user-avatar{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px
}

.stories-slider-user-avatar img,
.self_stories-slider-user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center
}

.stories-slider-user-name ,
.self_stories-slider-user-name{
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, .35)
}

.stories-slider-user-date,
.self_stories-slider-user-date {
    font-size: 14px;
    font-weight: 400;
    opacity: .55;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, .35)
}

.stories-slider-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 10px;
    top: 18px;
    height: 32px;
    z-index: var(--stories-slider-z-actions);
    transition-duration: .2s;
    user-select: none;
    -webkit-user-select: none
}

.stories-slider-close-button {
    margin-left: 18px;
    width: 22px;
    height: 22px;
    appearance: none;
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    position: relative;
    cursor: pointer;
    padding: 0;
    background: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none
}

.stories-slider-close-button:before, 
.stories-slider-close-button:after {
    content: "";
    width: 125%;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    box-shadow: 0 0 1px #00000059
}

.stories-slider-close-button:before {
    transform: translate(-50%, -50%) rotate(45deg)
}

.stories-slider-close-button:after {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.stories-slider-close-button:active {
    opacity: .55
}

.stories-slider-content,
.self_stories-slider-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: var(--stories-slider-z-content);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none
}

.stories-slider-content>img, 
.stories-slider-content>video,
.self_stories-slider-content>img, 
.self_stories-slider-content>video {
    width: 100%;
    height: 100%;
    object-position: center;
    display: block;
    border: none;
    outline: none;
    background: none;
    background-color: transparent
}

.stories-slider-content>img,
.self_stories-slider-content>img {
    object-fit: contain
}

.stories-slider-content>video,
.self_stories-slider-content>video {
    object-fit: contain
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ 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) format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

* {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}


body {
    color: #fff;
    line-height: 1.5;
    font-family: -apple-system, system-ui, Helvetica Neue, Helvetica, Arial, Segoe UI, Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#app {
    height: 100%
}

.stories_slider .profile_img_wrapper {
    position: relative;
    /* border-radius: 30px; */
    border-radius: 100%;
    padding: 2px;
    background-color: #ff0040;
    /* background-image: linear-gradient(to right top, #ffc600 20%, #ff0040, #e600cc 80%); */
}

.stories_slider .profile_img_wrapper:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: #000;
    border-radius: 50%;
    z-index: 1
}
.stories_slider .profile_img_wrapper:before {
    /* border-radius: 30px; */
    border-radius: 100%;
}

.stories_slider .profile_img_wrapper img {
    position: relative;
    z-index: 2;
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center
}

/*  */

.stories-slider,
.self_stories-slider {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    transform: scale(0);
    transform: translateZ(0) scale(.5);
    opacity: 0;
    background: #000
}

@media (min-width: 415px), (min-height: 897px) {
    .stories-slider ,
    .self_stories-slider{
        background: rgb(41, 40, 49)
    }
}

.stories-slider>.swiper,
.self_stories-slider>.swiper {
    z-index: 2;
    max-width: 414px;
    max-height: 896px
}

.stories-slider:not(.stories-slider-in),
.self_stories-slider:not(.self_stories-slider-in) {
    pointer-events: none
}

.stories-slider:not(.stories-slider-in) * ,
.self_stories-slider:not(.self_stories-slider-in) * {
    pointer-events: none !important
}

.stories-slider-in,
.self_stories-slider-in  {
    animation: stories-slider-in .4s forwards;
    pointer-events: auto;
    transform: translateZ(0) scale(1);
    opacity: 1
}

.stories-slider-out,
.self_stories-slider-out {
    pointer-events: none;
    animation: stories-slider-out .4s forwards !important
}

@keyframes stories-slider-in {
    0% {
        transform: translateZ(0) scale(.5);
        opacity: 0
    }

    50% {
        transform: translateZ(0) scale(1.05);
        opacity: 1
    }

    to {
        transform: translateZ(0) scale(1);
        opacity: 1
    }
}

@keyframes stories-slider-out {
    0% {
        transform: translateZ(0) scale(1);
        opacity: 1
    }

    50% {
        transform: translateZ(0) scale(.5);
        opacity: 0
    }

    to {
        transform: translateZ(0) scale(.5);
        opacity: 0
    }
}
/* add story popup css */

/* file upload */
.file_upload {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.file_upload .title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.file_upload .uploadImgWrapper {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.file_upload .uploadImgWrapper label{
    width: 100%;
    height: 90px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.file_upload .uploadImgWrapper label input {
    display: none;
}
.max-un {
    max-width: unset;
}
.fs-12 {
    font-size: 12px !important;
}
.file_upload .uploadImgWrapper .images_preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-gap: 10px;
}
.file_upload .uploadImgWrapper .images_preview .image-preview-container {
    position: relative;
    list-style: none;
}
.file_upload .uploadImgWrapper .images_preview .image-preview-container .preview-video{
    width: 80px;
    height: 80px;
    border: 1px solid #f5f5f5;
    padding: 3px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #eee;
}
.file_upload .uploadImgWrapper .images_preview .image-preview-container .preview-image{
    width: 80px;
    height: 80px;
    border: 1px solid #f5f5f5;
    padding: 3px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #eee;
    -o-object-fit: cover;
    object-fit: cover;
}
.file_upload .uploadImgWrapper .images_preview .image-preview-container .remove-image{
    position: absolute;
    right: -7px;
    color: #000;
    width: 18px;
    height: 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -7px;
    border: 1px solid #f5f5f5;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    padding: 7px;
}
.btn-theme {
    color: #fff;
    background-color: #000000;
    border-color: #3e3131;
}
.stories_slider .swiper-slide {
    width: fit-content !important;
}
.stories_slider.swiper {
    margin-left: inherit;
}

.mw-90px{
    max-width: 90px;
}

.view_stories_section{
    display: flex;
    align-items: center;
    gap: 15px;
}
.view_stories_section .content_wrapper .profile_img_wrapper{
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
}
.view_stories_section .content_wrapper .profile_img_wrapper img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    /* border-radius: 30px; */
    border-radius: 100%;
 
    border:3px solid #fff;
}
.view_stories_section .content_wrapper .category_title{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: center;
}
.add_story{
    box-shadow: 0px 2px 3px #f30072;
    position: absolute;
    right: 1px;
    bottom: 40px;
    z-index: 4;
    color: #000000;
    font-size: 22px;
    border-radius: 100%;
    background: #fc0046;
    width: 22px;
    height: 22px;
    line-height: 22px;
    cursor: pointer;
}
.add_story .fa-circle-plus{
    color: #fff;
}
.profile_stories_slider .profile_img_wrapper {
    position: relative;
    /* border-radius: 30px; */
    border-radius: 100%;
    padding: 2px;
    /* background-image: linear-gradient(to right top, #ffc600 20%, #ff0040, #e600cc 80%); */
    background-color: #ff0040;
    box-shadow: 3px 3px 3px #d6d6d6;
}
#post_btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    padding: 5px 20px;
    box-shadow: 1px 1px 3px #d6d6d6 !important;
    border: 1px solid #000;
    text-decoration: none;
    outline: 0;
}
#post_btn:hover
{
    color: #000;
    border-color: #000;
    background: transparent;
}
.stories-slider-count{
    position: absolute;
    bottom:5px;
    z-index: var(--stories-slider-z-user);
    left: 50%;
    color: #fff;
}