/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2024 IMAJIKU.
*/

/* =GENERAL
-------------------------------------------------------------*/
.plider-box {
	position: relative;
}

.plider-img-item {
	position: relative;
	display: flex;
	width: 100%;
}

.plider-img-item-icon {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	height: 50px;
	width: 50px;
	border: 1px solid var(--hc-color-white);
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	-moz-backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-color: var(--hc-color-white);
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	z-index: 10;
}

.plider-img-item-icon span {
	background-color: var(--hc-color-white);
	width: 24px;
	height: 24px;
}

.plider-img-item-icon.variant-video {
	border-color: transparent;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

.plider-img-item-icon.variant-video span {
	width: 35px;
	height: 35px;
}

/* =CAPTION
-------------------------------------------------------------*/
.panner-box {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.panner-box .img-banner {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}

.panner-caption-box {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	overflow: hidden;
}

.panner-caption {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	width: 75%;
	max-width: 800px;
	margin: 0 auto 100px 9%;
	row-gap: 20px;
}

.panner-caption-title {
	font-size: 56px;
	color: var(--hc-color-white);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	font-family: var(--hc-font-family-1);
}

.panner-caption-subtitle {
	font-size: 24px;
	color: var(--hc-color-white);
	font-weight: 600;
	line-height: 1.5;
	margin: 0;
	font-family: var(--hc-font-family-1);
}

.panner-caption-desc {
	font-size: 16px;
	color: var(--hc-color-white);
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	font-family: var(--hc-font-family-2);
}

.panner-action {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 20px;
	row-gap: 15px;
	column-gap: 20px;
}

/* overlay type 1 */
.panner-overlay::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #000000;
	background: -webkit-linear-gradient(12deg, rgba(0, 0, 0, 0.75) 20%, rgba(255, 255, 255, 0) 52%);
	background: -moz-linear-gradient(12deg, rgba(0, 0, 0, 0.75) 20%, rgba(255, 255, 255, 0) 52%);
	background: linear-gradient(12deg, rgba(0, 0, 0, 0.75) 20%, rgba(255, 255, 255, 0) 52%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#FFFFFF", GradientType=0);
}

/* overlay type 2 */
.panner-overlay-variant-2::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #000000;
	background: -webkit-linear-gradient(12deg, rgba(0, 0, 0, 0.75) 20%, rgba(255, 255, 255, 0) 52%);
	background: -moz-linear-gradient(12deg, rgba(0, 0, 0, 0.75) 20%, rgba(255, 255, 255, 0) 52%);
	background: linear-gradient(12deg, rgba(0, 0, 0, 0.75) 20%, rgba(255, 255, 255, 0) 52%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#FFFFFF", GradientType=0);
}

/* =SLIDER IMAGE RESPONSIVE
-------------------------------------------------------------*/
/*condition banner content for desktop*/
.img-res-desktop {
	display: block !important;
}

/*condition banner content for mobile*/
.img-res-mobile {
	display: none !important;
}

/* =HIIDEN BUTTON ARROW DEFAULT
-------------------------------------------------------------*/
.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
}

/* =CUSTOM BUTTON ARROW
-------------------------------------------------------------*/
.plider .swiper-button-prev,
.plider .swiper-button-next {
	position: absolute;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	width: 60px;
	opacity: 0.6;
}

.plider .swiper-button-prev {
	left: 0;
}

.plider .swiper-button-next {
	right: 0;
}

.plider .swiper-button-prev::after,
.plider .swiper-button-next::after {
	content: '';
	display: none;
}

.plider .swiper-button-prev:hover,
.plider .swiper-button-next:hover {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	opacity: 1;
}

.plider .swiper-button-prev span,
.plider .swiper-button-next span {
	width: 40px;
	height: 40px;
	background-color: var(--hc-color-yellow-500);
}

.plider .swiper-button-prev .nav-iconbox,
.plider .swiper-button-next .nav-iconbox {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	width: 50px;
	height: 50px;
	background-color: var(--hc-color-yellow-500);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}

.plider .swiper-button-prev .nav-iconbox:hover,
.plider .swiper-button-next .nav-iconbox:hover {
	background-color: var(--hc-color-gray-200);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}

.plider .swiper-button-prev .nav-iconbox span,
.plider .swiper-button-next .nav-iconbox span {
	width: 30px;
	height: 30px;
	background-color: var(--hc-color-neutral-900);
}

.plider .swiper-button-next.swiper-button-disabled,
.plider .swiper-button-prev.swiper-button-disabled {
	opacity: 0 !important;
	cursor: auto !important;
	pointer-events: auto !important;
}

/*button with shadow blur*/
.plider .swiper-button-prev.variant-blur {
	left: 0;
	background-image: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 255));
	opacity: 0.6;
}

.plider .swiper-button-next.variant-blur {
	right: 0;
	background-image: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 255));
	opacity: 0.6;
}

/* =HIIDEN BUTTON PAGINATION DEFAULT
-------------------------------------------------------------*/
/* .swiper-pagination {
	display: none;
} */

/* =CUSTOM BUTTON PAGINATION
-------------------------------------------------------------*/
.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background-color: var(--hc-color-gray-900);
}

.swiper-pagination-bullet-active {
	background-color: var(--hc-color-gray-400);
}

/* =CLASS UNTUK HANDLE ARROW KETIKA MUNCUL KURANG DARI QUANTITY
-------------------------------------------------------------*/
.swiper-button-lock {
	display: none !important;
}

.swiper-arrow {
	opacity: 1;
	transition: opacity .3s linear;
}

/* kondisi untuk menyebunyikan arrow dengan dukungan javascript */
.js-swipermod-nav-disable .swiper-button-next,
.js-swipermod-nav-disable .swiper-button-prev {
	display: none !important;
}

/* =SLIDER ON PAGE - HOME
-------------------------------------------------------------*/
/* custome dot navigation for hero */
.plider-box.variant-hero .swiper-pagination {
	transform: translate3d(0, -60px, 0);
	padding: 0 9% 0;
	text-align: right;
}

.plider-box.variant-hero .swiper-pagination-bullet {
	width: 45px;
	height: 10px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	background-color: var(--hc-color-gray-200);
}

.plider-box.variant-hero .swiper-pagination-bullet-active {
	background-color: var(--hc-color-white);
}

.plider-box.variant-hero .swiper-pagination-bullets-dynamic {
	text-align: center;
	padding: 0;
}

.plider-box.variant-hero .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(1);
}

.plider-box.variant-hero .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.plider-box.variant-hero .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: unset;
	right: 5%;
}

/* VARIANT EXPERIENCE */
.plider-box.variant-center .swiper-wrapper.js-swipermod-wrapper-default {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.plider-box.variant-center .swiper-slide {
	width: auto;
	max-width: 420px;
}

.plider-box.variant-center .card-media-box.variant-experience {
	width: 100%;
	opacity: 0.3;
	margin: 0 auto;
}

.plider-box.variant-center .swiper-slide-active .card-media-box.variant-experience {
	opacity: 1;
}

/* defautl kondisi disaat data kurang dari  */
.plider-box.variant-center .js-swipermod-ready .card-media-box.variant-experience {
	opacity: 1;
}

/* =SLIDER ON PAGE - PRODUCT DETAIL
-------------------------------------------------------------*/

.plider-box.variant-product-view {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.plider-box.variant-product-view .plider-img-item {
	display: flex;
	width: 100%;
	border: 1px solid var(--hc-color-gray-200);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	overflow: hidden;
}

.plider-box.variant-product-thumb {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.plider-box.variant-product-thumb .plider-img-item {
	display: flex;
	max-width: 150px;
	border: 1px solid var(--hc-color-gray-200);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	overflow: hidden;
}

/* =RESPONSIVE
-------------------------------------------------------------*/

/* 3k Larger Devices, Wider Screens */
@media only screen and (min-width: 3840px) {}

/* 2k Larger Devices, Wider Screens */
@media only screen and (min-width: 2560px) {}

/* 1k Larger Devices, Wider Screens */
@media only screen and (min-width: 1920px) {}

/* x-large devices, large desktops */
@media only screen and (min-width : 1400px) {}

@media only screen and (max-width : 1399.98px) {}

/* large devices, desktops */
@media only screen and (min-width : 1200px) {}

@media only screen and (max-width : 1199.98px) {}

@media only screen and (min-width : 1024px) {}

@media only screen and (max-width : 1024px) {}

/* medium devices, tablets */
@media only screen and (min-width : 992px) {}

@media only screen and (max-width : 991.98px) {}

@media only screen and (max-width : 812px) {}

/* small devices, landscape phone */
@media only screen and (min-width : 768px) {}

@media only screen and (max-width : 767.98px) {
	.plider-box.variant-center .swiper-wrapper {
		justify-content: flex-start !important;
	}
}

@media only screen and (max-width : 640px) {}

/* x-small Devices, portrait phones */
@media only screen and (min-width : 576px) {}

@media only screen and (max-width : 575.98px) {}

@media only screen and (max-width : 480px) {}

@media only screen and (max-width : 375px) {}

@media only screen and (max-width : 360px) {}

@media only screen and (max-width : 320px) {}