:root {
    --background-color: #1b1d20;
    --slide-width: 344px;
    --slide-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.4);
    --slide-thumb-height: 3px;
    --slide-thumb-default-color: rgba(0, 0, 0, 0.4);
    --slide-thumb-active-color: rgba(255, 255, 255, 0.9);
}
.story-wrapper {
    width: 100%;
}
.status-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow-x: auto;
    z-index: 2;
}
.status-wrapper > *::-webkit-scrollbar {
    display: none;
}
.users-stories {
    width: 100%;
    padding: 5px 10px;
}
.story-wrapper .status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    height: auto;
    transition: all 0.3s ease;
    margin-left: 0 !important;
}
.story-wrapper .status-card:hover {
    transform: scale(1.1);
}
.story-wrapper .profile-pic {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px 2px;
    cursor: pointer;
}
.story-wrapper .profile-pic .loading {
    display: none;
}
.story-wrapper .profile-pic .profile_avatar {
    width: 70px;
    height: 70px;
}
.story-wrapper .profile-pic .profile_avatar .percent {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 85%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.story-wrapper .profile-pic.uploading .profile_avatar .percent {
    opacity: 1;
    visibility: visible;
}
.story-wrapper .profile-pic .profile_avatar .percent span {
    font-size: 14px;
    color: #fff;
    margin-top: 4px;
    margin-left: 2px;
    z-index: 2;
}
.story-wrapper .profile-pic.uploading .loading {
    display: block;
}
.story-wrapper .profile-pic.uploading i::before {
    animation: 2s instagram_story infinite;
    animation-delay: calc(0.02s * var(--i));
}
.story-wrapper .profile-pic.uploading {
    animation: 10s parent_story infinite linear;
}
.story-wrapper .profile-pic.uploading .profile_avatar {
    animation: 10s image_story infinite linear;
}
@keyframes parent_story {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes image_story {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes instagram_story {
    0% {
        width: 15px;
        height: 10px;
        border-radius: 3px;
    }
    50% {
        width: 5px;
        height: 7px;
        border-radius: 3px;
    }
    100%,
    90% {
        width: 15px;
        height: 10px;
    }
}
.story-wrapper .profile-pic.has-story {
    background: linear-gradient(45deg, #ffe600, #ff0080 80%);
}

.story-wrapper #myStories {
    margin-right: 10px;
}
.story-wrapper .add-new-story {
    position: absolute;
    right: 10px;
    bottom: 35px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 100px;
    cursor: pointer;
}
.story-wrapper .alert_add_story {
    position: relative;
    background: #e73636;
    color: #fff;
    width: 100px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px #e73636f2;
    transition: all 0.5s ease;
}
.story-wrapper .alert_add_story:hover {
    background: #a31616;
}
.story-wrapper .alert_add_story span {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
}
.story-wrapper .alert_add_story.small span {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}
.story-wrapper .alert_add_story button {
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    background: #ff5c5c;
    color: #fff;
    padding: 3px 0 0;
    border: 1px solid #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.story-wrapper .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    display: block;
    max-width: 100%;
}
.story-wrapper .profile-pic i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(calc(12deg * var(--i)));
    height: 100%;
    width: 15px;
}
.story-wrapper .profile-pic i::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: #f47;
}
body.dark .story-wrapper .username {
    color: #fff;
}
.story-wrapper .username {
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
    color: #fff;
    width: 70px;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    direction: ltr;
}
.slide-stories {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999999999999999999999999999;
    background: #000000b5;
    backdrop-filter: blur(10px);
    display: none;
    z-index: 99999;
}
.modal-story {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 99999999999999999999999999999999999;
    display: none;
}
.users-story {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.slide-item {
    position: relative;
    transition: all 0.3s ease;
}
.inside-story {
    width: 100vw;
    height: 100vh;
}
.slide-nav::before {
    content: "";
    background: linear-gradient(180deg, rgb(0 0 0 / 80%), #fff0);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
}
.slide-nav::after {
    content: "";
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), #fff0);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
}
.slide-thumbs {
    display: flex;
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    padding: 0 20px;
}
.slide-thumbs .slide-thumbs-item {
    position: relative;
    background: hsl(0 0% 100% / 0.4);
    display: inline-block;
    width: 100%;
    height: 2px;
    border-radius: 100px;
    margin: 0 2px;
}
.slide-thumbs .slide-thumbs-item span {
    position: absolute;
    right: 0;
    width: 0;
    height: 100%;
    background: #fff;
}
.users-story .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 400px;
    z-index: 9999999;
}
.users-story .navigation .next svg {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
    fill: #000;
    margin-right: 4px;
}
.navigation .next {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #2d2d2d;
    background: #fff;
    opacity: 0.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.navigation .next:hover {
    opacity: 1;
}
.users-story .navigation .prev svg {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
    fill: #000;
    margin-left: 1px;
}
.navigation .prev {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #2d2d2d;
    background: #fff;
    opacity: 0.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.navigation .prev:hover {
    opacity: 1;
}
.close-story {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 70px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 59px;
    cursor: pointer;
    background: rgb(0 0 0 / 30%);
    z-index: 9;
    transition: all 0.3s ease;
}
.close-story:hover {
    background: rgb(0 0 0 / 80%);
}
.add-story .close-story {
    top: -20px;
    right: -60px;
}
.slide-item {
    width: calc(1080px / 3);
    height: calc(1920px / 3);
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.6) translateY(90px);
    filter: brightness(0.5);
}
.swiper-slide-active .slide-item {
    transform: scale(1);
    filter: brightness(1);
}
.user-story .slide-item .slide-items {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    filter: blur(100px);
}
.user-story.active.spoil .slide-items {
    filter: blur(100px) !important;
}
.user-story.active .slide-item .slide-items {
    filter: unset;
}
.slide-item .slide-items * {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease;
}
.slide-item .slide-items *.active {
    display: block;
}
.users-story .user-story {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    height: 100vh;
    -webkit-justify-content: center;
    justify-content: center;
    max-height: 1440px;
    position: relative;
    will-change: transform;
}
.story-meta {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.story-meta .story-meta-left {
    display: flex;
    margin-left: 25px;
    flex-direction: row-reverse;
}
.story-meta .story-meta-right {
    display: flex;
    align-items: center;
    margin-right: 25px;
}
.story-meta .story-meta-right .user_avatar {
    position: relative;
    line-height: 0;
}
.story-meta .story-meta-right .user_avatar .user_image_avatar {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: relative;
    z-index: 1;
}
.story-meta .story-meta-right .user_avatar .premium_logo {
    position: absolute;
    width: 25px;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%) translateX(20px);
    background: #fff;
    padding: 2px;
    border-radius: 100%;
    z-index: 0;
    box-shadow: 0 0 15px #54c3f5;
}
.story-meta .story-meta-right .user_name {
    margin-right: 5px;
    color: #fff;
}
.story-meta .story-modal-button {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0;
    height: 40px;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 30px;
    z-index: 3;
}
.story-meta .story-modal-button svg {
    fill: #fff;
    height: 24px;
    pointer-events: none;
    vertical-align: middle;
    width: 24px;
}
body.dark .slide-item .story-meta-bottom {
    background: #2d2d2d;
}
.slide-item .story-meta-bottom {
    display: none;
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    background: #fff;
    color: #000;
    z-index: 9;
    border-radius: 20px;
    padding: 10px 23px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slide-item .story-meta-bottom:hover {
    background: #ddd;
}
.slide-item .story-meta-bottom .btn_url {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    border: none;
}
.slide-item .share-story {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 99999;
    cursor: pointer;
    background: var(--primary);
    padding: 5px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-item .share-story .icon {
    fill: #fff;
    width: 20px;
    height: 20px;
}
.input-field,
.setting-item {
    position: relative;
    margin-bottom: 15px;
}
body.dark .input-field input {
    border-color: #0d121e;
    color: #fff;
}
.input-field input {
    width: 350px;
    height: 60px;
    border-radius: 10px;
    font-size: 14px;
    padding: 0 15px;
    background: #fff0;
    color: #000;
    outline: none;
    border: 3px solid #eee;
    transition: all 0.3s ease;
}
.setting-item input {
    width: 100%;
    height: auto;
    border: 2px solid #666;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    background: #fff0;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}
body.dark .input-field label {
    color: #999;
}
.input-field label {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #333;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}
.setting-item label {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}
.input-field input:focus {
    border: 3px solid #ff9800;
}
body.dark .input-field input:focus ~ label,
body.dark .input-field input.active ~ label {
    background: #1a1f2a;
}
.input-field input:focus ~ label,
.input-field input.active ~ label {
    top: 0;
    right: 15px;
    font-size: 13px;
    padding: 0 4px;
    background: #fff;
}
.setting-item input:focus ~ label,
.setting-item input.active ~ label {
    top: 0;
    right: 15px;
    font-size: 13px;
    padding: 0 4px;
    background: #232222;
}
.terms-story {
    margin-bottom: 30px;
    background: #ff3e3e21;
    border-radius: 10px;
    overflow: hidden;
}
.terms-story .head-terms {
    background: #ffb2b29e;
    color: #710c0c;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.terms-story .head-terms span {
    font-size: 14px;
    font-weight: 900;
}
.terms-story .head-terms i {
    opacity: 0.7;
    transition: all 0.3s ease;
}
.terms-story .head-terms i:hover {
    opacity: 1;
}
.terms-story .head-terms i.active {
    transform: rotate(90deg);
}
.terms-story .body-terms {
    padding: 10px;
    display: none;
}
.terms-story .body-terms ul {
    padding-right: 10px;
}
.terms-story .body-terms ul li {
    list-style: disc;
    font-size: 12px;
}
.add-story {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    display: none;
}
.add-story .story-settings {
    width: 30%;
    height: 90%;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
    color: #fff;
    margin-left: 100px;
}
.add-story .story-settings.disabled::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(10px);
}
.add-story .story-content {
    position: relative;
    width: calc(1080px / 3);
    height: calc(1920px / 3);
    overflow: hidden;
    background: #000;
    border-radius: 10px;
}
.add-story .story-content #changeStory {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    font-size: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 0 0 10px;
    display: none;
    cursor: pointer;
}
.add-story .story-content img,
.add-story .story-content video {
    filter: brightness(1) grayscale(0) contrast(1) sepia(0) invert(0) blur(0);
    width: 100%;
    height: 100%;
}
.story-settings .filter-item {
    background: rgb(0 0 0 / 20%);
    border-radius: 10px;
    overflow: hidden;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.story-settings .filter-item .filter-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.story-settings .filter-item .filter-head span {
    font-size: 12px;
}
.story-settings .filter-item .filter-head .line-current {
    font-size: 12px;
}
.story-settings .filter-item .line-dropbox {
    width: 100%;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}
.story-settings .filter-item .line-dropbox .line-progress {
    position: relative;
    height: 1rem;
    width: 100%;
    background: rgb(255 255 255 / 0.4);
    border-radius: 15px;
    cursor: pointer;
}
.story-settings .filter-item .line-dropbox .line-progress .line-progress-bar {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1rem;
    width: 3%;
    border-radius: 100px;
    background: var(--primary);
}
.story-settings .filter-item .line-dropbox .line-progress .line-progress-bar .line-progress-dot {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    height: 1rem;
    width: 1rem;
    border-radius: 9999px;
    border: 2px solid rgb(255 255 255);
    background: var(--primary);
}
.story-settings .add-story-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.story-settings .add-story-actions .is_spoil {
    width: 30%;
    background: #494949;
    color: #fff;
    padding: 10px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.story-settings .add-story-actions .is_spoil.active {
    background: var(--primary);
}
.story-settings .submitNewStory {
    width: 60%;
    background: #0a9d1c;
    color: #fff;
    padding: 10px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.story-settings .submitNewStory:hover {
    box-shadow: 0 0 30px rgb(10 157 28 / 40%);
}
#result_postStory {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #000000d9;
    backdrop-filter: blur(11px);
    border-radius: 15px 15px 10px 10px;
    overflow: hidden;
    z-index: 99999999;
    margin-top: 5px;
    display: none;
}
#result_postStory .result-post-story-item {
    margin-bottom: 5px;
    padding: 8px 15px 3px 0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#result_postStory .result-post-story-item:hover {
    background: #3f3f3f;
}
#active_postStory {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    color: #999;
    font-size: 12px;
    z-index: 99999999;
    transition: all 0.3s ease;
    display: none;
}
#active_postStory .name {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}
#active_postStory .remove {
    color: #ff7f7f;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.my-stories-wrapper .my-stories-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 3px solid #ddd;
    width: 50%;
    display: block;
    margin-bottom: 10px;
}
.my-stories-wrapper .my-stories-items {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 20px;
}
.my-stories-wrapper .my-stories-items .my-story-item {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 10px;
}
.my-stories-wrapper .my-stories-items .my-story-item img,
.my-stories-wrapper .my-stories-items .my-story-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.my-stories-wrapper .my-stories-items .my-story-modal {
    display: none;
    justify-content: space-between;
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 9999;
    width: 40vw;
    height: 40vh;
    background: #171a23;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data li {
    margin-bottom: 10px;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data li span {
    margin-right: 5px;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data li span.green {
    color: #0eb734;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data li span.red {
    color: #b70e0e;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data li a {
    cursor: pointer;
    transition: all 0.3s ease;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .inner-story-modal-data li a:hover {
    color: #0eb734;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .modal-actions {
    display: flex;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .modal-actions .story-cancell-modal {
    background: #fdba3c45;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    outline: none;
    border: none;
    transition: all 0.3s ease;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .modal-actions .story-cancell-modal[disabled] {
    background: #444 !important;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .modal-actions .story-cancell-modal:hover {
    background: #fdba3cb5;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .modal-actions .story-close-modal {
    background: #fd3c3c45;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    outline: none;
    border: none;
    transition: all 0.3s ease;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-data .modal-actions .story-close-modal:hover {
    background: #fd3c3ca3;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-content {
    width: 25%;
}
.my-stories-wrapper .my-stories-items .my-story-modal .story-modal-content * {
    border-radius: 10px;
}
.story-not-found {
    background: #ff9800;
    color: #fff;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.story-not-found:hover {
    box-shadow: 0 0 40px #ff9800bd;
}
.users-story .slide-overly {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.users-story .spoil-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}
.users-story .spoil-wrapper .show-spoil {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    width: 80%;
    background: rgb(0 0 0 / 10%);
    padding: 15px 15px 0;
    border-radius: 15px;
}
.users-story .spoil-wrapper .show-spoil .user-avatar-spoil {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.users-story .spoil-wrapper .show-spoil .spoil-title {
    margin-top: 10px;
    font-size: 16px;
}
.users-story .spoil-wrapper .show-spoil .spoil-text {
    margin-top: 5px;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
}
.users-story .spoil-wrapper .show-spoil .spoil-show-btn {
    margin: 20px;
    border: 1px solid #fff;
    padding: 3px 6px 6px;
    color: #000;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.users-story .spoil-wrapper .show-spoil .spoil-show-btn:hover {
    background: #fff;
    color: #000;
}
.users-story .premium_story {
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translate(50%, -5px);
    width: 15px;
    height: 15px;
    background: #fff;
    padding: 2px;
    border-radius: 100%;
    opacity: 0.7;
}
body.dark .status-wrapper .premium_logo {
    background: #121620;
}
.status-wrapper .premium_logo {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%) translateY(5px);
    width: 25px !important;
    height: 25px !important;
    background: #fff;
    padding: 3px;
}
@media screen and (max-width: 1400px) {
    .my-stories-wrapper .my-stories-items {
        grid-template-columns: repeat(5, 1fr);
    }
    .my-stories-wrapper .my-stories-items .my-story-modal .story-modal-content {
        width: 40%;
    }
}
@media screen and (max-width: 1100px) {
    .my-stories-wrapper .my-stories-items .my-story-modal {
        width: 60vw;
    }
}
@media screen and (max-width: 768px) {
    .my-stories-wrapper .my-stories-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .story-wrapper {
        margin-top: 30px;
    }
    .main_single .story-wrapper {
        margin-top: 0 !important;
    }
    .add-story .close-story {
        top: 10px;
        right: 10px;
    }
    .add-story .story-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
    .add-story .story-content.popup {
        top: 10px;
        left: 10px;
        transform: unset;
        width: calc(1080px / 7);
        height: calc(1920px / 7);
    }
    .add-story {
        align-items: flex-end;
        width: 100%;
        height: 100vh;
        padding: 10px;
    }
    .story-settings {
        display: none;
        margin: 0;
        width: 100%;
        height: auto;
        transition: all 0.3s ease;
    }
    .story-settings.active {
        display: block;
        margin: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }
    .users-story .slide-item {
        width: 100%;
        height: 100vh;
        transform: unset;
        filter: unset;
    }
    .users-story .navigation {
        bottom: 0;
        right: 0;
        transform: unset;
        width: 100%;
        height: 0;
        opacity: 0;
    }
    .users-story .navigation .prev {
        border-radius: 0;
        right: 0;
        width: 10%;
        height: 70vh;
        -webkit-tap-highlight-color: #fff0;
    }
    .users-story .navigation .next {
        border-radius: 0;
        left: 0;
        width: 10%;
        height: 70vh;
        -webkit-tap-highlight-color: #fff0;
    }
    .users-story > * {
        -webkit-tap-highlight-color: #fff0;
    }
    .story-wrapper .modal-story .close-story {
        display: none;
    }
    .users-story,
    .users-story .swiper-wrapper {
        width: 100%;
        height: 100vh;
    }
    #bgStory {
        background: #000;
        backdrop-filter: none;
    }
    .my-stories-wrapper .my-stories-items .my-story-modal {
        width: 90vw;
    }
    .my-stories-wrapper .my-stories-items .my-story-modal .story-modal-content {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .my-stories-wrapper .my-stories-items {
        grid-template-columns: repeat(2, 1fr);
    }
}