.slide-story {
	position: relative !important;
	width: 100%;
	height: 250px;
	z-index: 1;
}
.slide-story-native {
	height: 250px;
}
.ads {
	color: rgba(0, 0, 0, 0.7);
	font-size: 12px;
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	text-align: center;
}
.navigation {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 3px;
	height: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	z-index: 3;
}
.slide-story-native .navigation {
	display: none;
}
.navigation .dot {
	border: none;
	width: 6px !important;
	border-radius: 50%;
	height: 6px;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}
.navigation .active {
	background: #fff !important;
}
.slide-wrap {
	width: auto;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: auto;
	scroll-behavior: smooth;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
	margin: 0;
	max-width: none;
	touch-action: pan-y;
}
.slide-wrap::-webkit-scrollbar {
	display: none;
}
.my-slide {
	scroll-snap-align: center;
	scroll-snap-stop: always;
	position: relative;
	display: flex;
	width: 250px;
	height: 250px;
	margin-right: 15px;
	flex: none;
}
.my-slide:last-child {
	margin-right: 0;
}
.overlay-btm {
	position: absolute;
	top: unset;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6728538283062645) 90%);
	border-radius: 0 0 6px 6px;
}
.overlay-btm .swiperight {
	position: absolute;
	left: 0;
	bottom: 20px;
	right: 0;
	width: 150px;
	margin: 0 auto;
	-webkit-animation: shake 1s infinite;
	animation: shake 1s infinite;
}
.fade-hide {
	-webkit-animation: fade-hide 1s forwards;
	animation: fade-hide 1s forwards;
}
.my-slide img {
	width: 100%;
	max-width: none !important;
	border-radius: 6px;
}
.my-slide .video-content {
	width: 100%;
	border-radius: 6px;
}
.my-slide .cta {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}
.sound-wrap {
	position: absolute;
	right: 6px;
	top: 2px;
	width: 18px;
	display: flex;
	z-index: 3;
	cursor: pointer;
}
.sound-wrap img {
	width: 100%;
}
.hide {
	display: none !important;
}
.arr {
	display: flex;
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-color: #ffffff80;
	border-radius: 50%;
	/* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7); */
}
.arr img {
	width: 100%;
}
.left {
	left: 8px;
	transform: scaleX(-1);
}
.right {
	right: 8px;
}
.click-left-by-swipe,
.click-right-by-swipe {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 0;
	height: 0;
}
.click-left-by-swipe {
	left: 20px;
}
.click-right-by-swipe {
	right: 20px;
}
@-webkit-keyframes shake {
	0% {
		transform: translateX(2px);
	}
	50% {
		transform: translateX(-2px);
	}
	100% {
		transform: translateX(2px);
	}
}
@keyframes shake {
	0% {
		transform: translateX(2px);
	}
	50% {
		transform: translateX(-2px);
	}
	100% {
		transform: translateX(2px);
	}
}
@-webkit-keyframes fade-hide {
	0% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}
@keyframes fade-hide {
	0% {
		opacity: 1;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}
@media (min-width: 500px) {
	.overlay-btm {
		display: none;
	}
}

.slide-share {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 10px 8px 6px;
	background: rgba(0, 0, 0, 0.3);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	z-index: 2;
	cursor: pointer;
}

.slide-share img {
	height: 100%;
	object-fit: contain;
	border-radius: 0;
}

.slide-share-popup {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.slide-share-popup.visible {
	opacity: 1;
	visibility: visible;
}

.share-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.share-container {
	font-family: "Roboto", sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	background: #fff;
	left: 0;
	right: 0;
	z-index: 7;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 10px;
	padding: 20px 10px;
	margin: auto;
	height: fit-content;
	width: 300px;
}

.close-share {
	position: absolute;
	right: 12px;
	top: 12px;
	cursor: pointer;
	width: 15px;
	height: 15px;
}

.close-share img {
	width: 100%;
	filter: invert(65%) hue-rotate(319deg) brightness(100%) contrast(100%);
}

.title-share {
	font-weight: 700;
	font-size: 16px;
}

.share-option {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	margin: 15px 0 0;
}

.share-option .item {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	position: relative;
}

.item .imgbox {
	display: flex;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.item .imgbox img {
	filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(318deg) brightness(110%) contrast(101%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.facebook .imgbox {
	background-color: #3b5998;
}

.twitter .imgbox {
	background-color: #000;
}

.whatsapp .imgbox {
	background-color: #25d366;
}

.line .imgbox {
	background-color: #00c300;
}

.telegram .imgbox {
	background-color: #2aabee;
}

.copy-link .imgbox {
	background-color: #999;
}

.share-name {
	color: #6a6a6a;
	font-size: 10px;
	margin: 10px 0 0;
}

.share-cta {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.copy-link .imgbox::before {
	content: "URL Berhasil disalin";
	position: absolute;
	width: 60px;
	background: #000;
	color: #fff;
	padding: 5px;
	border-radius: 4px;
	font-size: 10px;
	text-align: center;
	top: -40px;
	z-index: 1;
	display: none;
}

.copy-link.mini-msg .imgbox::before {
	display: block;
}

@media only screen and (min-width: 768px) {
	.big-slidestory {
		padding-left: 215px;
		transition: all 150ms linear;
	}

	.big-slidestory .slide-story-native {
		height: 350px;
	}

	.big-slidestory .my-slide {
		width: 350px;
		height: 350px;
	}

	.big-slidestory .arr {
		width: 40px;
		height: 40px;
	}
}

@media only screen and (min-width: 500px) {
	.big-slidestory .gradient-left {
		position: fixed;
		top: 0;
		left: 0;
		width: 200px;
		height: 100%;
		background: rgb(22, 22, 22);
		background: linear-gradient(90deg, rgba(22, 22, 22, 1) 0%, rgba(22, 22, 22, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
	}

	.big-slidestory .gradient-right {
		position: fixed;
		top: 0;
		right: 0;
		width: 200px;
		height: 100%;
		background: rgb(22, 22, 22);
		background: linear-gradient(-90deg, rgba(22, 22, 22, 1) 0%, rgba(22, 22, 22, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
	}
}
