.story-container {
    display: flex;
    padding: 10px;
    gap: 15px;
}
.story {
    position: relative;
    width: 100px;
    text-align: center;
}
.story-item-title {
    margin: 0;
    color: var(--color-secondary);
    font-size: 10px;
    font-weight: 325;
    line-height: 100%;
    text-align: center;
    margin-top: 8px;
}
.circle-border svg {
    transform: rotate(10deg);
}
.story-item-cat {
    border: 1px solid var(--color-tertiary);
    background: var(--color-accent1);
    font-size: 10px;
    border-radius: 12px;
    padding: 4px 6px;
    font-weight: 325;
    width: 43px;
    height: 24px;
    line-height: 100%;
    position: absolute;
    bottom: 19px;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
}
.circle-border {
    position: relative;
    width: 100px;
    height: 100px;
}

.circle-border svg {
    position: absolute;
    top: 0;
    left: 0;
    
}

.circle-border img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    object-fit: cover;
}
.story-modal-content {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	display: none;
	width: 100%;
	z-index: 99999;
	background: var(--color-overlay);
	align-items: center;
}
.story-modal {
	width: 100%;
	height: 100%;
	background: black;
	max-width: 360px;
	margin: 0 auto;
	position: relative;
	max-height: 600px;
	/*box-shadow: 0 8px 38px 8px #00000080;*/
}

.story-header {
    color: var(--color-white);
    /* font-weight: bold; */
    padding: 4px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

    .story-slider {
        height: 100%;
        display: flex;
    }

    .story-slide {
        display: none;
        flex: 1 0 100%;
        align-items: center;
        justify-content: center;
    }

    .story-slide.active {
        display: flex;
    }

.story-slide img,
.story-slide video {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    width: 100%;
}
.progress-bars {
	display: flex;
	gap: 5px;
	z-index: 10;
	padding: 4px 15px;
}

    .bar {
        flex: 1;
        height: 6px;
        background: var(--color-white);
    }

.bar .fill {
	height: 100%;
	width: 0%;
	background: var(--color-tertiary);
}
.story-product-image {
    width: 108px;
    border-left: 1px solid #ccc;
    padding-left: 8px;
    max-height: 98px;
    padding: 8px;
}
.story-title {
	width: calc(100% - 108px);
}
.story-cat {
    background: var(--color-accent1);
    color: #262626;
    border: 1px solid var(--color-tertiary);
    padding: 4px 8px;
    display: inline;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 325;
}

.story-close {
    display: flex;
    position: absolute;
    top: 0;
    left: 10px;
    padding: 4px;
    color: #fff;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
    .story-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 10;
    }

.story-controls button {
	padding: 10px 15px;
	cursor: pointer;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	background: #fff;
	color: var(--color-secondary);
	font-size: 16px;
	border: none;
}
    .story-controls .prev-story {
	right: -80px;
	position: absolute;
	top: 0;
}
.story-controls .next-story {
	left: -80px;
	position: absolute;
	top: 0;
}
.story-footer {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.story-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 38px 8px #00000080;
}
.story-actions {
    position: absolute;
    bottom: 180px;
    left: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 35px;
    gap: 15px;
}
.story-actions>div {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    justify-content: center;
    align-items: center;
}
.like-story .like-btn {
    border: none;
    background: none;
    width: 24px;
    height: 24px;
    display: block;
    padding: 0;
}
.story-title {
    width: calc(100% - 108px);
    padding: 8px;
}
.story-title h3 {
	font-size: 16px;
	margin: 0;
	font-weight: 600;
	line-height: 100%;
	color: var(--color-primary);
}
.story-title .card-price {
	margin-top: 8px;
	background: #fff;
	font-size: 12px;
}