.story {
	width: 100%;
	font-weight: 400;
	position: relative;
}

.story-arrows {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.story-arrows button {
	background: transparent;
	border: 0;
	width: 34px;
	padding: 0;
	font-size: 12px;
	color: var(--color-info);
}

.story-arrows button.is-disabled {
	opacity: 0;
	pointer-events: none;
}

.story-arrows button:hover {
	color: var(--color-white);
}

.story-next {
	width: 30px;
	height: 30px;
	display: flex;
	border: 0;
	align-items: center;
	justify-content: center;
	transition: all .3s ease-in-out;
	cursor: pointer;
	color: var(--color-white);
}

.story-prev {
	width: 30px;
	height: 30px;
	display: flex;
	border: 0;
	align-items: center;
	justify-content: center;
	transition: all .3s ease-in-out;
	cursor: pointer;
	margin-right: 10px;
	color: var(--color-white);
}

.story-slider:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, rgba(0, 255, 255, 1) 0%, rgba(0, 255, 255, 1) 70%, rgba(0, 255, 255, 0) 100%);
}

.story-slider {
	width: 100%;
	margin-top: 50px;
	position: relative;
	overflow: hidden;
}

.story-slide:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 12px;
	height: 12px;
	background: var(--color-primary);
	border: 2px solid var(--color-white);
	border-radius: 50%;
}

.story-slide {
	position: relative;
	padding-top: 35px;
	box-sizing: border-box;
}

.story-slide p:last-child {
	margin-bottom: 0;
}
