/**
 * GallerX Frontend Styles
 */

/* Core Component Styles */
.gallerx-gallery-wrapper {
	position: relative;
	width: 100%;
}

.gallerx-gallery-item-inner {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
}

.gallerx-image-wrap {
	display: block;
	width: 100%;
	height: 100%;
}

.gallerx-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* --- Grid Layout --- */
.gallerx-gallery-wrapper.layout-grid .gallerx-gallery-inner {
	display: grid;
}

.gallerx-gallery-wrapper.layout-grid .gallerx-gallery-item {
	aspect-ratio: 1;
}


/* --- Asymmetrical Layout 2 (1 Hero image + rest small) --- */
.gallerx-gallery-wrapper.layout-asym-2 .gallerx-gallery-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 200px;
}

.gallerx-gallery-wrapper.layout-asym-2 .gallerx-gallery-item {
	grid-column: span 1;
	grid-row: span 1;
}

.gallerx-gallery-wrapper.layout-asym-2 .gallerx-asym-item-1 {
	grid-column: span 2;
	grid-row: span 2;
}


/* --- Asymmetrical Layout 4: Mosaic Mix (mixed tile sizes, 6 images) --- */
.gallerx-gallery-wrapper.layout-asym-4 .gallerx-gallery-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 180px);
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-gallery-item {
	grid-column: span 1;
	grid-row: span 1;
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-asym-item-1 {
	grid-column: 1 / span 1;
	grid-row: 1 / span 2;
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-asym-item-2 {
	grid-column: 2 / span 2;
	grid-row: 1 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-asym-item-3 {
	grid-column: 2 / span 1;
	grid-row: 2 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-asym-item-4 {
	grid-column: 3 / span 1;
	grid-row: 2 / span 2;
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-asym-item-5 {
	grid-column: 1 / span 1;
	grid-row: 3 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-4 .gallerx-asym-item-6 {
	grid-column: 2 / span 1;
	grid-row: 3 / span 1;
}

/* --- Asymmetrical Layout 5: Filmstrip (cinematic horizontal strip, 5 images) --- */
.gallerx-gallery-wrapper.layout-asym-5 .gallerx-gallery-inner {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 160px 200px;
}

.gallerx-gallery-wrapper.layout-asym-5 .gallerx-gallery-item {
	grid-column: span 1;
	grid-row: span 1;
}

.gallerx-gallery-wrapper.layout-asym-5 .gallerx-asym-item-1 {
	grid-column: 1 / span 2;
	grid-row: 1 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-5 .gallerx-asym-item-2 {
	grid-column: 3 / span 1;
	grid-row: 1 / span 2;
}

.gallerx-gallery-wrapper.layout-asym-5 .gallerx-asym-item-3 {
	grid-column: 4 / span 2;
	grid-row: 1 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-5 .gallerx-asym-item-4 {
	grid-column: 1 / span 1;
	grid-row: 2 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-5 .gallerx-asym-item-5 {
	grid-column: 4 / span 2;
	grid-row: 2 / span 1;
}

/* --- Premium Layout: Asymmetrical Bento Box --- */
.gallerx-gallery-wrapper.layout-asym-bento .gallerx-gallery-inner {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.gallerx-gallery-wrapper.layout-asym-bento .gallerx-gallery-item {
	grid-column: span 1;
	grid-row: span 1;
	border-radius: 12px; /* Smooth bento corners */
}

.gallerx-gallery-wrapper.layout-asym-bento .gallerx-asym-item-1 {
	grid-column: 1 / span 1;
	grid-row: 1 / span 2;
}

.gallerx-gallery-wrapper.layout-asym-bento .gallerx-asym-item-2 {
	grid-column: 2 / span 1;
	grid-row: 1 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-bento .gallerx-asym-item-3 {
	grid-column: 2 / span 1;
	grid-row: 2 / span 1;
}

/* --- Premium Layout: Asymmetrical Editorial Focus --- */
.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-gallery-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-gallery-item {
	grid-column: span 1;
	grid-row: span 1;
}

.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-asym-item-1 {
	grid-column: 1 / span 1;
	grid-row: 1 / span 2;
}

.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-asym-item-2 {
	grid-column: 2 / span 2;
	grid-row: 1 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-asym-item-3 {
	grid-column: 2 / span 1;
	grid-row: 2 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-asym-item-4 {
	grid-column: 3 / span 1;
	grid-row: 2 / span 1;
}

/* --- Premium Layout: Panoramic Split --- */
.gallerx-gallery-wrapper.layout-asym-panoramic .gallerx-gallery-inner {
	display: grid;
	grid-template-columns: 65% 35%;
	grid-template-rows: 400px; /* Panoramic strict height */
}

.gallerx-gallery-wrapper.layout-asym-panoramic .gallerx-gallery-item {
	grid-row: span 1;
}

.gallerx-gallery-wrapper.layout-asym-panoramic .gallerx-asym-item-1 {
	grid-column: 1 / span 1;
}

.gallerx-gallery-wrapper.layout-asym-panoramic .gallerx-asym-item-2 {
	grid-column: 2 / span 1;
}


/* --- Premium Layout: Apple TV Dual Slider --- */
/* Matches Apple.com "Endless Entertainment" carousel behavior exactly:
   Hero slides are full-height, clipped at container edges with overflow:hidden,
   NO scale/opacity on adjacent slides — they simply peek from the edges. */

.gallerx-appletv-layout {
	overflow: hidden;
}

.gallerx-appletv-hero {
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
}

.gallerx-appletv-hero .swiper-slide {
	width: 82%;
	height: 50vh;
	min-height: 320px;
	max-height: 520px;
	border-radius: 12px;
	overflow: hidden;
	transition: none;
}

.gallerx-appletv-hero .gallerx-gallery-item-inner {
	border-radius: 12px;
	width: 100%;
	height: 100%;
}

.gallerx-appletv-hero .gallerx-image-wrap {
	height: 100%;
}

.gallerx-appletv-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Thumbs strip — wider rectangular cards, similar to Apple.com service tiles */
.gallerx-appletv-thumbs {
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.gallerx-appletv-thumbs .swiper-slide {
	height: 130px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	cursor: pointer;
	border-radius: 10px;
	overflow: hidden;
}

.gallerx-appletv-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.gallerx-appletv-thumbs .gallerx-gallery-item-inner {
	border-radius: 10px;
	height: 100%;
}

.gallerx-appletv-thumbs .gallerx-image-wrap {
	height: 100%;
}

.gallerx-appletv-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Apple TV Pagination Dots */
.gallerx-appletv-dots {
	text-align: center;
	padding: 12px 0;
	position: relative;
}

.gallerx-appletv-dots .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	background: rgba(255,255,255,0.4);
	opacity: 1;
	border-radius: 50%;
	margin: 0 3px !important;
	transition: background 0.3s ease;
}

.gallerx-appletv-dots .swiper-pagination-bullet-active {
	background: #fff;
}


/* Responsive: Filmstrip collapses */
@media (max-width: 767px) {
	.gallerx-gallery-wrapper.layout-asym-5 .gallerx-gallery-inner {
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: auto !important;
	}
	.gallerx-gallery-wrapper.layout-asym-5 .gallerx-gallery-item {
		grid-column: span 1 !important;
		grid-row: span 1 !important;
	}
	.gallerx-gallery-wrapper.layout-asym-5 .gallerx-asym-item-1 {
		grid-column: span 2 !important;
	}
}

/* --- Hover Animations --- */
.gallerx-gallery-item-inner.hover-zoom-in:hover img {
	transform: scale(1.1);
}

.gallerx-gallery-item-inner.hover-zoom-out img {
	transform: scale(1.1);
}
.gallerx-gallery-item-inner.hover-zoom-out:hover img {
	transform: scale(1);
}

.gallerx-gallery-item-inner.hover-fade img {
	opacity: 0.8;
}
.gallerx-gallery-item-inner.hover-fade:hover img {
	opacity: 1;
}

/* --- Carousel Modifications --- */
.gallerx-carousel-wrapper {
	overflow: hidden;
	width: 100%;
}
.gallerx-carousel-wrapper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}
.gallerx-carousel-wrapper:not(.gallerx-carousel-grouped) .gallerx-image-wrap img {
	aspect-ratio: 16/9;
}

/* Custom Navigation Base Styles */
.gallerx-carousel-outer {
    position: relative;
    width: 100%;
}

.gallerx-carousel-outer .swiper-button-next,
.gallerx-carousel-outer .swiper-button-prev,
.gallerx-carousel-outer .swiper-pagination-bullet {
	transition: all 0.3s ease;
}
.gallerx-carousel-outer .swiper-button-next:after, 
.gallerx-carousel-outer .swiper-button-prev:after {
	transition: color 0.3s ease;
}

/* Premium Outside Arrows Mode */
.gallerx-carousel-outer.gallerx-arrows-outside {
    padding: 0 60px; /* Safe zone for external navigation */
}
.gallerx-carousel-outer.gallerx-arrows-outside .swiper-button-prev {
    left: 10px;
}
.gallerx-carousel-outer.gallerx-arrows-outside .swiper-button-next {
    right: 10px;
}

/* On mobile, external arrows usually overlap to save space */
@media (max-width: 767px) {
    .gallerx-carousel-outer.gallerx-arrows-outside {
        padding: 0; 
    }
    .gallerx-carousel-outer.gallerx-arrows-outside .swiper-button-prev { left: 10px; }
    .gallerx-carousel-outer.gallerx-arrows-outside .swiper-button-next { right: 10px; }
}

/* --- Premium CSS Cascade Scatter Effect (Native Swiper Mode) --- */

/* Base (offscreen items) - Wait offscreen shrunk, faded, and blurred */
.gallerx-effect-cascade .gallerx-gallery-item {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease !important;
    transform: scale(0.5) rotateY(-20deg) !important;
    opacity: 0 !important;
    filter: blur(15px) !important;
}

/* ON-SCREEN (Visible items) - MUST BE FULL SIZE */
/* Swiper automatically adds .swiper-slide-visible thanks to watchSlidesProgress: true */
.gallerx-effect-cascade.gallerx-carousel-in-view .swiper-slide-visible .gallerx-gallery-item,
.gallerx-effect-cascade.gallerx-carousel-in-view .swiper-slide-visible.gallerx-gallery-item {
    transform: scale(1) rotateY(0deg) !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
}

/* GLOBAL STAGGER DELAYS: Ensures items pop IN and OUT piece-by-piece sequentially */
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(1) { transition-delay: 0.00s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(2) { transition-delay: 0.08s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(3) { transition-delay: 0.16s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(4) { transition-delay: 0.24s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(5) { transition-delay: 0.32s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(6) { transition-delay: 0.40s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(7) { transition-delay: 0.48s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(8) { transition-delay: 0.56s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(9) { transition-delay: 0.64s !important; }
.gallerx-effect-cascade .gallerx-gallery-item:nth-child(10) { transition-delay: 0.72s !important; }

/* Responsive adjustments */
@media (max-width: 767px) {
	.gallerx-gallery-wrapper.layout-asym-2 .gallerx-gallery-inner,
	.gallerx-gallery-wrapper.layout-asym-4 .gallerx-gallery-inner {
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: auto !important;
		grid-auto-rows: 150px;
	}
	.gallerx-gallery-wrapper.layout-asym-2 .gallerx-asym-item-1 {
		grid-column: span 2 !important;
	}
	.gallerx-gallery-wrapper.layout-asym-4 .gallerx-gallery-item {
		grid-row: span 1 !important;
	}
	
	/* New Layout Responsive Overrides */
	.gallerx-gallery-wrapper.layout-asym-bento .gallerx-gallery-inner,
	.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-gallery-inner,
	.gallerx-gallery-wrapper.layout-asym-panoramic .gallerx-gallery-inner {
		grid-template-columns: 1fr !important;
		grid-template-rows: auto !important;
		grid-auto-rows: 250px;
	}

	.gallerx-gallery-wrapper.layout-asym-bento .gallerx-gallery-item,
	.gallerx-gallery-wrapper.layout-asym-editorial .gallerx-gallery-item,
	.gallerx-gallery-wrapper.layout-asym-panoramic .gallerx-gallery-item {
		grid-column: 1 / -1 !important;
		grid-row: span 1 !important;
		border-radius: 4px !important;
	}

	/* Apple TV Mobile Overrides */
	.gallerx-appletv-hero .swiper-slide {
		width: 92%;
		height: 35vh;
		min-height: 200px;
	}
	.gallerx-appletv-thumbs .swiper-slide {
		height: 80px;
	}
}

/* --- Innovative Scroll Animations --- */

.gallerx-scroll-anim-enabled .gallerx-gallery-item:not(.is-revealed) {
	will-change: transform, opacity, filter;
}

/* 1. Blur Reveal */
.gallerx-scroll-anim-enabled[data-gallerx-anim="blur-reveal"] .gallerx-gallery-item {
	opacity: 0;
	filter: blur(20px);
	transform: scale(0.9);
}
.gallerx-scroll-anim-enabled[data-gallerx-anim="blur-reveal"] .gallerx-gallery-item.is-revealed {
	animation: gallerx-blur-reveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes gallerx-blur-reveal {
	to { opacity: 1; filter: blur(0); transform: scale(1); }
}

/* 2. 3D Flip Up */
.gallerx-scroll-anim-enabled[data-gallerx-anim="3d-flip-up"] {
	perspective: 1200px;
}
.gallerx-scroll-anim-enabled[data-gallerx-anim="3d-flip-up"] .gallerx-gallery-item {
	opacity: 0;
	transform: rotateX(60deg) translateY(50px);
	transform-origin: bottom center;
}
.gallerx-scroll-anim-enabled[data-gallerx-anim="3d-flip-up"] .gallerx-gallery-item.is-revealed {
	animation: gallerx-3d-flip-up 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes gallerx-3d-flip-up {
	to { opacity: 1; transform: rotateX(0deg) translateY(0); }
}

/* 3. Perspective Zoom */
.gallerx-scroll-anim-enabled[data-gallerx-anim="perspective-zoom"] .gallerx-gallery-item {
	opacity: 0;
	transform: perspective(800px) translateZ(-200px);
}
.gallerx-scroll-anim-enabled[data-gallerx-anim="perspective-zoom"] .gallerx-gallery-item.is-revealed {
	animation: gallerx-perspective-zoom 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes gallerx-perspective-zoom {
	to { opacity: 1; transform: perspective(800px) translateZ(0); }
}

/* 4. Skew Slide */
.gallerx-scroll-anim-enabled[data-gallerx-anim="skew-slide"] .gallerx-gallery-item {
	opacity: 0;
	transform: translateY(80px) skewY(6deg);
}
.gallerx-scroll-anim-enabled[data-gallerx-anim="skew-slide"] .gallerx-gallery-item.is-revealed {
	animation: gallerx-skew-slide 0.8s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}
@keyframes gallerx-skew-slide {
	to { opacity: 1; transform: translateY(0) skewY(0); }
}

/* 5. Elastic Pop */
.gallerx-scroll-anim-enabled[data-gallerx-anim="elastic-pop"] .gallerx-gallery-item {
	opacity: 0;
	transform: scale(0.6);
}
.gallerx-scroll-anim-enabled[data-gallerx-anim="elastic-pop"] .gallerx-gallery-item.is-revealed {
	animation: elasticPop 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes elasticPop {
	0%   { opacity: 0; transform: scale(0.6) translateY(30px); }
	60%  { opacity: 1; transform: scale(1.05) translateY(-5px); }
	100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Filter Bar --- */
.gallerx-filter-bar {
	margin-bottom: 30px;
	display: block;
}
.gallerx-filter-btn {
	background: transparent;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #777;
	padding: 8px 24px;
	margin: 5px;
	border-radius: 30px;
	transition: all 0.3s ease;
	display: inline-block;
}
.gallerx-filter-btn:hover,
.gallerx-filter-btn.is-active {
	background: #111;
	color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
/* Hidden states for JS filtering */
.gallerx-gallery-item.is-filtered-out {
	display: none !important;
}

/* --- Premium 3D Tilt Hover Effects --- */
.gallerx-3d-tilt-enabled {
	perspective: 1200px;
}
.gallerx-3d-tilt-enabled .gallerx-gallery-item-inner {
	transform-style: preserve-3d;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.gallerx-3d-tilt-enabled .gallerx-gallery-item-inner:hover {
	transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 10;
}
.gallerx-tilt-glare {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: inherit;
	pointer-events: none;
	z-index: 5;
	transform: translateZ(1px); /* Ensure it paints over img */
}
.gallerx-tilt-glare-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	pointer-events: none;
	background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 100%);
	width: 200%;
	height: 200%;
	transform: rotate(180deg) translate(-50%, -50%);
	transform-origin: 0% 0%;
	opacity: 0;
	transition: opacity 0.5s ease;
}

/* --- GallerX Custom Lightbox --- */
.gallerx-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallerx-lightbox.gallerx-lightbox-open {
	opacity: 1;
	visibility: visible;
}

.gallerx-lightbox-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.gallerx-lightbox-img-wrap {
	position: relative;
	z-index: 2;
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallerx-lightbox-img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
	user-select: none;
	-webkit-user-drag: none;
}

.gallerx-lightbox.gallerx-lightbox-open .gallerx-lightbox-img {
	animation: gallerxLbFadeIn 0.35s ease forwards;
}

@keyframes gallerxLbFadeIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

/* Close Button */
.gallerx-lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}
.gallerx-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

/* Navigation Arrows — positioned near the image, not at screen edges */
.gallerx-lightbox-prev,
.gallerx-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.gallerx-lightbox-prev { left: calc(5vw - 24px); }
.gallerx-lightbox-next { right: calc(5vw - 24px); }

.gallerx-lightbox-prev:hover,
.gallerx-lightbox-next:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-50%) scale(1.1);
}

.gallerx-lightbox-prev svg,
.gallerx-lightbox-next svg {
	width: 22px;
	height: 22px;
	fill: none !important;
	stroke-width: 2.5px;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Counter */
.gallerx-lightbox-counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	user-select: none;
}

/* Lightbox Mobile */
@media (max-width: 767px) {
	.gallerx-lightbox-prev,
	.gallerx-lightbox-next {
		width: 40px;
		height: 40px;
	}
	.gallerx-lightbox-prev { left: 10px; }
	.gallerx-lightbox-next { right: 10px; }
	.gallerx-lightbox-prev svg,
	.gallerx-lightbox-next svg {
		width: 18px;
		height: 18px;
	}
	.gallerx-lightbox-close {
		top: 12px;
		right: 12px;
		width: 38px;
		height: 38px;
		font-size: 22px;
	}
}
