/** @format */

.acf_module--gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	overflow: hidden;
}

.acf_module--gallery .gallery_container {
	position: relative;
	width: 100%;
}

.acf_module--gallery .gallery_stage {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.acf_module--gallery .gallery_sub_stage {
	width: 100%;
	display: flex;
	overflow: auto;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.acf_module--gallery .gallery_sub_stage::-webkit-scrollbar {
	display: none;
}

.acf_module--gallery .gallery_sub_stage_images {
	gap: var(--universal-gap);
	padding-top: var(--universal-gap);
	padding-left: 50%;
	padding-right: 50%;
}

.acf_module--gallery .gallery_sub_stage_item {
	scroll-snap-align: center;
}

.acf_module--gallery .gallery_sub_stage_images .gallery_sub_stage_item {
	height: 100%;
	width: auto;
}

.acf_module--gallery .gallery_sub_stage_images .gallery_sub_stage_item img {
	width: auto;
	max-width: none;
	height: min(calc(75vh - var(--header-topcareerlinks-height) - var(--header-topbar-height) - var(--header-topbar-sub-menu-height)), calc(var(--box-width) * 0.45));
	opacity: 0.25;
	transition: opacity 300ms ease;
}

.acf_module--gallery .gallery_sub_stage_images .gallery_sub_stage_item.active img {
	opacity: 1;
}

.acf_module--gallery .gallery_caption_wrapper {
	position: relative;
}

.acf_module--gallery .gallery_sub_stage_caption {
	pointer-events: none;
	scroll-behavior: auto;
}

.acf_module--gallery .gallery_sub_stage_caption .gallery_sub_stage_item {
	width: 100%;
	min-width: 100%;
	padding: var(--universal-gap);
}

.acf_module--gallery .gallery_container.slide_count--multi .gallery_sub_stage_caption .gallery_sub_stage_item {
	padding-right: calc(var(--universal-gap) + 10ex);
}

.acf_module--gallery .gallery_sub_stage_caption .gallery_sub_stage_item .slider_text_wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

/*Gallery Navigation*/
.acf_module--gallery .gallery_navigation {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0px calc(4ex / 3);
	padding: 0 var(--universal-gap);
	pointer-events: none;
}

.acf_module--gallery .gallery_navigation .gallery_navigation_arrow {
	pointer-events: all;
}

.acf_module--gallery .gallery_navigation .gallery_navigation_arrow::after {
	content: '\e5cb';
	font-family: 'Icons';
	font-size: 1.4em;
	display: block;
	cursor: pointer;
	transition: transform 200ms ease;
	transform: translateX(0);
}

.acf_module--gallery .gallery_navigation .gallery_navigation_arrow:hover::after {
	transform: translateX(-25%);
}

.acf_module--gallery .gallery_navigation .gallery_navigation_arrow.gallery_navigation_arrow--next::after {
	content: '\e5cc';
}

.acf_module--gallery .gallery_navigation .gallery_navigation_arrow.gallery_navigation_arrow--next:hover::after {
	transform: translateX(25%);
}

/*Full Width Slider*/
.acf_module--gallery .gallery_container--single .gallery_sub_stage_images {
	gap: 0;
	padding: 0;
}

.acf_module--gallery .gallery_container--single .gallery_sub_stage_images .gallery_sub_stage_item {
	min-width: 100%;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

.acf_module--gallery .gallery_container--single .gallery_sub_stage_images .gallery_sub_stage_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.acf_module--gallery .gallery_container--single .gallery_sub_stage_caption .gallery_sub_stage_item .slider_text_wrapper {
	max-width: 100%;
	margin: 0 auto;
}
