.stories-container {
    display: flex;
    background: #fff;
    box-shadow: 0 3px 24px -8px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 1% auto 2%;
    padding: 20px 36px;
    border-radius: 8px;
    gap: 48px;
    overflow: hidden;
    overflow-x: hidden;
    box-sizing: border-box;
}

.stories-container:hover {
    overflow-x: scroll;
}

.stories-container .story-item-notseen img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 300;
    position: relative;
    vertical-align: middle;
}

.stories-container .story-item-notseen {
    position: relative;
    cursor: pointer;
}

.stories-container .story-item-notseen::before {
    content: "";
    height: 98px;
    width: 98px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
}

.stories-container .story-item-notseen::after {
    content: "";
    height: 106px;
    width: 106px;
    background:  #eaeaf0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.story-full {
    background: #222;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 100ms ease;
}

.story-full.active {
    opacity: 1;
    pointer-events: auto;
}

.story-full .close-btn {
    position: fixed;
    right: 3%;
    top: 3%;
    width: 32px;
    cursor: pointer;
}

.story-full .story-item-notseen .left-arrow,
.story-full .story-item-notseen .right-arrow {
    width: 60px;
    cursor: pointer;
}

.story-full .story-item-notseen {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.story-full img {
    height: 90%;
}

.story-full .story-item-notseen .title {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    font-family: "Roboto", sans-serif;
    line-height: 2;
    padding: 8px 32px;
}

@media (max-width: 700px) {
    .stories-container {
        width: 100%;
    }

    .stories-container .story-item-notseen img {
        width: 60px;
        height: 60px;
    }

    .stories-container .story-item-notseen::before {
        height: 70px;
        width: 70px;
    }

    .stories-container .story-item-notseen::after {
        width: 80px;
        height: 80px;
    }

    .story-full .story-item-notseen img {
        height: 65%;
    }
}