.story-part {
	margin: 0px;
	padding: 0px;
}
.story-wrapper {
	margin: 5px;
	padding: 5px;
	padding-top: 10px;
}

.story-scroll {
	overflow-x: scroll;
	overflow-y: hidden;
	overflow: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;

	.story-item {
		display: inline-block;
	}

	&::-webkit-scrollbar {
		display: none;
	}
}

.story-wrapper ul {
	display: flex;
	list-style: none;
}
.story-wrapper ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 22px;
}
.story-wrapper ul li img {
	height: 80px;
	border-radius: 50%;
	border: 2px solid #fff;
	transition: 0.3s ease;
	-webkit-backface-visibility: hidden;
}
.story-wrapper ul li img:hover {
	transform: rotate(-15deg);
}
.story-wrapper .outer {
	background: linear-gradient(to right, #64c288, #008015);
	/* background: linear-gradient(to right, #f99b4a, #c92d8c); */
	border-radius: 100%;
	padding: 3px;
	position: relative;
}

.story-wrapper .outer1 {
	background: linear-gradient(to right, #8d8d8d, #3d393b);
	border-radius: 100%;
	padding: 3px;
	position: relative;
}

.story-wrapper button {
	position: absolute;
	right: 5px;
	bottom: 0;
	border: none;
	outline: none;
	font-size: 35px;
	font-weight: 700;
	background: #3d97f1;
	padding: 5px 10px;
	border-radius: 50%;
	border: 3px solid #fff;
	color: #fff;
}
.story-wrapper .title {
	font-family: arial;
	margin-top: 0px;
	text-decoration: none;
	color: #7c7c7c;
	font-size: 14px;
}

.banner-part {
	padding: 0px 0px 60px !important;
}

.slide {
	max-width: 380px;
	margin: 20px auto;
	display: grid;
	box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.4);
}

.slide-items {
	position: relative;
	grid-area: 1/1;
	border-radius: 5px;
	overflow: hidden;
}

.slide-nav {
	grid-area: 1/1;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
}

.slide-nav button {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	opacity: 0;
}

.slide-items > * {
	position: absolute;
	top: 0px;
	opacity: 0;
	pointer-events: none;
}

.slide-items > .active {
	position: relative;
	opacity: 1;
	pointer-events: initial;
}

.slide-thumb {
	display: flex;
	grid-column: 1 / 3;
}

.slide-thumb > span {
	flex: 1;
	display: block;
	height: 3px;
	background: rgba(0, 0, 0, 0.4);
	margin: 5px;
	border-radius: 3px;
	overflow: hidden;
}

.slide-thumb > span.active::after {
	content: "";
	display: block;
	height: inherit;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 3px;
	transform: translateX(-100%);
	animation: thumb 5s forwards linear;
}

@keyframes thumb {
	to {
		transform: initial;
	}
}
