/* ==========================================================
   NEWA TOURS – REISEGALERIE
   ========================================================== */


/* ==========================================================
   BASIS
   ========================================================== */

.newatours-reisegalerie {
	--newa-gallery-gap: 22px;
	--newa-gallery-radius: 14px;
	--newa-gallery-hover-scale: 1.025;
	--newa-gallery-hover-duration: 250ms;

	--newa-gallery-arrow-size: 52px;
	--newa-gallery-arrow-icon-size: 38px;
	--newa-gallery-arrow-offset: 14px;
	--newa-gallery-arrow-color: #ffffff;
	--newa-gallery-arrow-border: rgba(255, 255, 255, 0.55);
	--newa-gallery-arrow-bg: rgba(14, 42, 71, 0.55);
	--newa-gallery-arrow-bg-hover: rgba(14, 42, 71, 0.76);

	--newa-gallery-open-gap: 16px;
	--newa-gallery-open-pt: 13px;
	--newa-gallery-open-pr: 24px;
	--newa-gallery-open-pb: 13px;
	--newa-gallery-open-pl: 24px;
	--newa-gallery-open-radius: 8px;
	--newa-gallery-open-border: rgba(176, 141, 87, 0.65);
	--newa-gallery-open-border-hover: #b08d57;
	--newa-gallery-open-bg: transparent;
	--newa-gallery-open-bg-hover: rgba(176, 141, 87, 0.06);

	--newa-gallery-lightbox-close-size: 34px;
	--newa-gallery-lightbox-arrow-size: 58px;
	--newa-gallery-lightbox-close-color: #ffffff;
	--newa-gallery-lightbox-arrow-color: #ffffff;

	width: 100%;
}


/* ==========================================================
   CAROUSEL
   ========================================================== */

.newatours-reisegalerie-carousel {
	position: relative;

	width: 100%;
}


.newatours-reisegalerie-viewport {
	position: relative;

	width: 100%;

	overflow: hidden;
}


.newatours-reisegalerie-track {
	display: flex;
	align-items: stretch;

	gap: var(--newa-gallery-gap);

	width: 100%;

	transition: transform 0.45s ease;

	will-change: transform;
}


/*
 * Desktop:
 * drei Bilder gleichzeitig.
 */

.newatours-reisegalerie-item {
	position: relative;

	display: block;

	flex:
		0 0
		calc(
			(100% - (2 * var(--newa-gallery-gap))) / 3
		);

	aspect-ratio: 4 / 3;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: var(--newa-gallery-radius) !important;

	background: transparent !important;
	background-color: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	overflow: hidden;

	cursor: zoom-in;

	appearance: none;
	-webkit-appearance: none;
}


.newatours-reisegalerie-item:hover,
.newatours-reisegalerie-item:focus {
	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;

	background: transparent !important;
	background-color: transparent !important;

	box-shadow: none !important;
	outline: none !important;
}


.newatours-reisegalerie-item img {
	display: block;

	width: 100%;
	height: 100%;

	margin: 0;
	padding: 0;

	border: 0;
	border-radius: var(--newa-gallery-radius);

	object-fit: cover;

	transition: transform var(--newa-gallery-hover-duration) ease;
}


.newatours-reisegalerie-item:hover img {
	transform: scale(var(--newa-gallery-hover-scale));
}



/* ==========================================================
   CAROUSEL-PFEILE
   exakt wie bei Reiseberichte
   ========================================================== */

.newatours-reisegalerie-arrow {
	position: absolute;

	top: 50%;

	z-index: 10;

	display: flex !important;
	align-items: center;
	justify-content: center;

	width: var(--newa-gallery-arrow-size) !important;
	height: var(--newa-gallery-arrow-size) !important;

	min-width: var(--newa-gallery-arrow-size) !important;
	min-height: var(--newa-gallery-arrow-size) !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 1px solid var(--newa-gallery-arrow-border) !important;

	border-radius: 50% !important;

	background: var(--newa-gallery-arrow-bg) !important;

	background-color: var(--newa-gallery-arrow-bg) !important;

	box-shadow:
		0 2px 10px
		rgba(0, 0, 0, 0.18)
		!important;

	color: var(--newa-gallery-arrow-color) !important;

	font-family: Tahoma, sans-serif !important;

	font-size: 0 !important;
	font-weight: 400 !important;
	line-height: 1 !important;

	transform: translateY(-50%);

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
}


/*
 * Pfeilsymbol
 */

.newatours-reisegalerie-arrow span {
	display: block;

	width: auto;
	height: auto;

	color: var(--newa-gallery-arrow-color) !important;

	font-family: Tahoma, sans-serif !important;

	font-size: var(--newa-gallery-arrow-icon-size) !important;
	font-weight: 300 !important;
	line-height: 0.75 !important;

	transform: translateY(-2px);
}


.newatours-reisegalerie-prev {
	left: var(--newa-gallery-arrow-offset);
}


.newatours-reisegalerie-next {
	right: var(--newa-gallery-arrow-offset);
}


.newatours-reisegalerie-arrow:hover,
.newatours-reisegalerie-arrow:focus {
	background: var(--newa-gallery-arrow-bg-hover) !important;

	background-color: var(--newa-gallery-arrow-bg-hover) !important;
}


.newatours-reisegalerie-arrow[hidden] {
	display: none !important;
}



/* ==========================================================
   LIGHTBOX – BASIS
   exakt nach Reiseberichte
   ========================================================== */

.newatours-reisegalerie-lightbox[hidden] {
	display: none !important;
}


.newatours-reisegalerie-lightbox {
	position: fixed;

	inset: 0;

	z-index: 99999;

	display: flex;
	align-items: center;
	justify-content: center;

	background:
		rgba(0, 0, 0, 0.88);
}



/* ==========================================================
   LIGHTBOX – HINTERGRUND
   ========================================================== */

.newatours-reisegalerie-lightbox-backdrop {
	position: absolute;

	inset: 0;

	background:
		rgba(0, 0, 0, 0.15);
}



/* ==========================================================
   LIGHTBOX – HAUPTBEREICH
   ========================================================== */

.newatours-reisegalerie-lightbox-inner {
	position: relative;

	z-index: 2;

	width: 100vw;
	height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;
}



/* ==========================================================
   LIGHTBOX – BILDBEREICH
   ========================================================== */

.newatours-reisegalerie-lightbox-stage {
	position: absolute;

	top: 55px;
	right: 80px;
	bottom: 70px;
	left: 80px;

	display: flex;
	align-items: center;
	justify-content: center;
}



/* ==========================================================
   LIGHTBOX – BILD
   ========================================================== */

.newatours-reisegalerie-lightbox-image {
	display: block;

	max-width: 100%;
	max-height: 100%;

	width: auto;
	height: auto;

	margin: 0;
	padding: 0;

	border: 0;

	object-fit: contain;

	box-shadow:
		0 4px 30px
		rgba(0, 0, 0, 0.30);
}



/* ==========================================================
   LIGHTBOX – COUNTER
   ========================================================== */

.newatours-reisegalerie-lightbox-counter {
	position: absolute;

	top: 18px;
	left: 20px;

	z-index: 10;

	padding: 0;

	background: transparent;

	color: #ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}



/* ==========================================================
   LIGHTBOX – CLOSE
   ========================================================== */

.newatours-reisegalerie-lightbox-close {
	position: absolute;

	top: 12px;
	right: 18px;

	z-index: 10;

	display: flex !important;
	align-items: center;
	justify-content: center;

	width: 40px !important;
	height: 40px !important;

	min-width: 40px !important;
	min-height: 40px !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;
	background-color: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	color: var(--newa-gallery-lightbox-close-color) !important;

	font-family:
		Arial,
		sans-serif
		!important;

	font-size: var(--newa-gallery-lightbox-close-size) !important;
	font-weight: 300 !important;
	line-height: 1 !important;

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	opacity: 0.9;
}


.newatours-reisegalerie-lightbox-close:hover,
.newatours-reisegalerie-lightbox-close:focus {
	background: transparent !important;
	background-color: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	opacity: 1;
}



/* ==========================================================
   LIGHTBOX – PFEILE
   ========================================================== */

.newatours-reisegalerie-lightbox-prev,
.newatours-reisegalerie-lightbox-next {
	position: absolute;

	top: 50%;

	z-index: 10;

	display: flex !important;
	align-items: center;
	justify-content: center;

	width: 54px !important;
	height: 70px !important;

	min-width: 54px !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;
	background-color: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	color: var(--newa-gallery-lightbox-arrow-color) !important;

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	transform: translateY(-50%);

	opacity: 0.85;
}


.newatours-reisegalerie-lightbox-prev {
	left: 42px;
}


.newatours-reisegalerie-lightbox-next {
	right: 42px;
}


.newatours-reisegalerie-lightbox-prev span,
.newatours-reisegalerie-lightbox-next span {
	color: var(--newa-gallery-lightbox-arrow-color) !important;

	font-family:
		Arial,
		sans-serif
		!important;

	font-size: var(--newa-gallery-lightbox-arrow-size) !important;
	font-weight: 200 !important;
	line-height: 1 !important;
}


.newatours-reisegalerie-lightbox-prev:hover,
.newatours-reisegalerie-lightbox-next:hover,
.newatours-reisegalerie-lightbox-prev:focus,
.newatours-reisegalerie-lightbox-next:focus {
	background: transparent !important;
	background-color: transparent !important;

	box-shadow: none !important;
	outline: none !important;

	opacity: 1;
}


.newatours-reisegalerie-lightbox-prev[hidden],
.newatours-reisegalerie-lightbox-next[hidden] {
	display: none !important;
}



/* ==========================================================
   LIGHTBOX – BILDUNTERSCHRIFT
   ========================================================== */

.newatours-reisegalerie-lightbox-caption {
	position: absolute;

	left: 50%;
	bottom: 20px;

	z-index: 10;

	max-width: 850px;

	padding: 0 25px;

	color: #ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;

	text-align: center;

	transform: translateX(-50%);
}


.newatours-reisegalerie-lightbox-caption[hidden] {
	display: none !important;
}



/* ==========================================================
   SEITENSCROLLING WÄHREND LIGHTBOX
   ========================================================== */

html.newatours-lightbox-open,
body.newatours-lightbox-open {
	overflow: hidden !important;
}



/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	/*
	 * Zwei Bilder gleichzeitig.
	 */

	.newatours-reisegalerie {
		--newa-gallery-gap: 20px;
		--newa-gallery-arrow-size: 38px;
		--newa-gallery-arrow-icon-size: 29px;
	}

	.newatours-reisegalerie-track {
		gap: var(--newa-gallery-gap);
	}


	.newatours-reisegalerie-item {
		flex:
			0 0
			calc(
				(100% - var(--newa-gallery-gap)) / 2
			);
	}


	/*
	 * Carousel-Pfeile etwas kleiner.
	 */



	/*
	 * Lightbox bleibt grundsätzlich
	 * wie auf Desktop.
	 */

}



/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	/*
	 * Ein Bild gleichzeitig.
	 */

	.newatours-reisegalerie {
		--newa-gallery-gap: 0px;
		--newa-gallery-arrow-size: 36px;
		--newa-gallery-arrow-icon-size: 27px;
		--newa-gallery-arrow-offset: 8px;

		--newa-gallery-open-gap: 12px;
		--newa-gallery-open-pt: 12px;
		--newa-gallery-open-pr: 16px;
		--newa-gallery-open-pb: 12px;
		--newa-gallery-open-pl: 16px;

		--newa-gallery-lightbox-close-size: 28px;
		--newa-gallery-lightbox-arrow-size: 46px;
	}

	.newatours-reisegalerie-track {
		gap: var(--newa-gallery-gap);
	}


	.newatours-reisegalerie-item {
		flex: 0 0 100%;

		aspect-ratio: 16 / 10;
	}


	/*
	 * Carousel-Pfeile
	 */



	/* ======================================================
	   LIGHTBOX MOBILE
	   ====================================================== */

	.newatours-reisegalerie-lightbox-inner {
		width: 96vw;
		height: 90vh;
	}


	.newatours-reisegalerie-lightbox-stage {
		top: 55px;
		right: 15px;
		bottom: 65px;
		left: 15px;
	}


	.newatours-reisegalerie-lightbox-close {
		width: 40px !important;
		height: 40px !important;

		min-width: 40px !important;
		min-height: 40px !important;

	}


	.newatours-reisegalerie-lightbox-prev,
	.newatours-reisegalerie-lightbox-next {
		width: 40px !important;
		height: 60px !important;

		min-width: 40px !important;
	}


	.newatours-reisegalerie-lightbox-prev {
		left: 8px;
	}


	.newatours-reisegalerie-lightbox-next {
		right: 8px;
	}


	.newatours-reisegalerie-lightbox-prev span,
	.newatours-reisegalerie-lightbox-next span {
	}


	.newatours-reisegalerie-lightbox-caption {
		bottom: 14px;

		width: calc(100% - 40px);
		max-width: none;

		padding: 0;

		font-size: 13px;
	}

}

/* ==========================================================
   ALLE BILDER ANSEHEN
   ========================================================== */

.newatours-reisegalerie-open-all-wrap {
	display: flex;
	justify-content: center;

	width: 100%;

	margin-top: 28px;
}


.newatours-reisegalerie-open-all {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	gap: var(--newa-gallery-open-gap);

	min-width: 330px;

	padding:
		var(--newa-gallery-open-pt)
		var(--newa-gallery-open-pr)
		var(--newa-gallery-open-pb)
		var(--newa-gallery-open-pl)
		!important;
	margin: 0 !important;

	border: 1px solid var(--newa-gallery-open-border) !important;
	border-radius: var(--newa-gallery-open-radius) !important;

	background: var(--newa-gallery-open-bg) !important;
	background-color: var(--newa-gallery-open-bg) !important;

	box-shadow: none !important;

	color: #b08d57 !important;

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}


.newatours-reisegalerie-open-all:hover,
.newatours-reisegalerie-open-all:focus {
	background: var(--newa-gallery-open-bg-hover) !important;
	background-color: var(--newa-gallery-open-bg-hover) !important;

	border-color: var(--newa-gallery-open-border-hover) !important;
}


.newatours-reisegalerie-open-all-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	color: #b08d57;
}


.newatours-reisegalerie-open-all-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	gap: 2px;

	text-align: left;
}


.newatours-reisegalerie-open-all-title {
	color: #b08d57;

	font-family: "Source Sans 3", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
}


.newatours-reisegalerie-open-all-subtitle {
	color: #6b6b6b;

	font-family: "Source Sans 3", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.newatours-reisegalerie-open-all-wrap {
		margin-top: 22px;
	}


	.newatours-reisegalerie-open-all {
		width: 100%;
		min-width: 0;

	}


	.newatours-reisegalerie-open-all-title {
		font-size: 16px;
	}


	.newatours-reisegalerie-open-all-subtitle {
		font-size: 13px;
	}

}