@keyframes ticker {
	0% {
		transform: translate3d(0%, 0, 0);
	}

	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.gallery-modal-plus__ticker-wrap {
	width: 100%;
	overflow: hidden;
	background-color: var(--color-theme-white);
	padding-left: 0;
	position: relative;
}

.gallery-modal-plus__ticker {
	display: inline-block;
	padding-right: 100%;
	padding-top: 24px;
	padding-bottom: 20px;
	white-space: nowrap;
	box-sizing: content-box;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: ticker;
	animation-duration: 90s;
}

.gallery-modal-plus__ticker--paused {
	animation-play-state: paused;
}

.gallery-modal-plus__ticker-item {
	display: inline-block;
	text-transform: uppercase;
	padding-left: 4rem;
	line-height: 0.8em;
	margin: 0;
}

.gallery-modal-plus__ticker-item:nth-child(odd) {
	color: var(--color-theme-primary);
}

.gallery-modal-plus__ticker-item:nth-child(even) {
	color: var(--color-theme-white);
	text-shadow: -1px 0 var(--color-theme-primary),
	0 1px var(--color-theme-primary), 1px 0 var(--color-theme-primary),
	0 -1px var(--color-theme-primary);
}

.gallery-modal-plus__ticker-icon-wrapper {
	fill: var(--color-theme-white);

	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;

	width: fit-content;
	background-color: var(--color-theme-primary);
	border-radius: 50%;
	padding: 10px;
	cursor: pointer;
}

.gallery-modal-plus__ticker-icon-wrapper--show {
	visibility: visible;
}

.gallery-modal-plus__ticker-icon--show {
	display: block !important;
}

.gallery-modal-plus__ticker-icon--pause {
	height: 16px;
	width: 16px;
	display: none;
}

.gallery-modal-plus__ticker-icon--play {
	height: 16px;
	width: 16px;
	position: relative;
	right: -2px;
	display: none;
}

.gallery-modal-plus {
	position: relative;
	overflow: hidden;
	background-color: var(--color-theme-grey);
}

.gallery-modal-plus .swiper {
	width: 100%;
	height: 100%;
}

.gallery-modal-plus .swiper-slide {
	font-size: 18px;
	background: #fff;
	display: flex;
	flex-flow: column;
	align-items: center;
}

.gallery-modal-plus .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-modal-plus__icon {
	--gridWidth: 1440;
	--gridHeight: 750;
	position: absolute;
	z-index: 10;
}

@media (min-width: 768px) {
	.gallery-modal-plus__icon {
		--gridHeight: 1000;
	}
}

.gallery-modal-plus__icon-arrow {
	width: 80px;
	top: 150px;
	left: 24px;
	transform: rotate(230deg);
}

@media (min-width: 768px) {
	.gallery-modal-plus__icon-arrow {
		width: 287px;
		left: calc(64 / var(--gridWidth) * 100%);
		top: calc(272 / var(--gridHeight) * 100%);
	}
}

.gallery-modal-plus__icon-star {
	width: 60px;
	top: 90px;
	right: 0;
}

@media (min-width: 768px) {
	.gallery-modal-plus__icon-star {
		width: 170px;
		right: auto;
		left: calc(983 / var(--gridWidth) * 100%);
		top: calc(210 / var(--gridHeight) * 100%);
	}
}

.gallery-modal-plus__icon-flag {
	width: 150px;
	margin: auto;
	right: 0;
	bottom: 50px;
	left: 0;
}

@media (min-width: 768px) {
	.gallery-modal-plus__icon-flag {
		width: 283px;
		bottom: 126px;
	}
}

.gallery-modal-plus__collage,
.gallery-modal-plus__collageImgWrapper {
	position: relative;
	width: 100%;
	height: 750px;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.gallery-modal-plus__collage,
	.gallery-modal-plus__collageImgWrapper {
		height: 1000px;
	}
}

.gallery-modal-plus__collageImgWrap {
	--gridWidth: 1440;
	--gridHeight: 750;
	--scale: 1.25;
	position: absolute;
	background: transparent;
	border: transparent;
	padding: 0;
	animation: float 4s ease-in-out infinite;
	animation-play-state: paused;
}

.gallery-modal-plus:hover .gallery-modal-plus__collageImgWrap {
	animation-play-state: running;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap {
		--gridHeight: 1000;
		--scale: 0.6;
	}
}

@media (min-width: 1024px) {
	.gallery-modal-plus__collageImgWrap {
		--scale: 0.8;
	}
}

@media (min-width: 1280px) {
	.gallery-modal-plus__collageImgWrap {
		--scale: 1.1;
	}
}

.gallery-modal-plus__collageImage {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s, outline 0.1s ease-in-out;
	box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
	outline: solid 0px var(--color-theme-blue-bright);
	border-radius: 2.5%; /* Potential border radius to make it look more modern? */
	/* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); shadow possibly? */
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImage:hover,
	.gallery-modal-plus__collageImgWrap:focus .gallery-modal-plus__collageImage {
		transform: scale(1.03);
		outline-width: 5px;
		cursor: pointer;
	}
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}
/* 
.gallery-modal-plus__collageImgWrap--1 {
	left: 0;
	top: 0;
	width: calc(80px * var(--scale));
	height: calc(80px * var(--scale));
	animation-delay: 0.8s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--1 {
		left: calc(279 / var(--gridWidth) * 100%);
		top: 0;
		width: calc(300px * var(--scale));
		height: calc(197px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--2 {
	right: 0;
	top: 0;
	width: calc(124px * var(--scale));
	height: calc(114px * var(--scale));
	animation-delay: 0s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--2 {
		right: auto;
		left: calc(708 / var(--gridWidth) * 100%);
		top: calc(56 / var(--gridHeight) * 100%);
		width: calc(404px * var(--scale));
		height: calc(253px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--3 {
	left: 0;
	top: calc(124 / var(--gridHeight) * 100%);
	width: calc(105px * var(--scale));
	height: calc(117px * var(--scale));
	animation-delay: 0.4s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--3 {
		left: auto;
		top: 0;
		right: 0;
		width: calc(295px * var(--scale));
		height: calc(295px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--4 {
	right: calc(130 / var(--gridWidth) * 100%);
	top: calc(122 / var(--gridHeight) * 100%);
	width: calc(160px * var(--scale));
	height: calc(105px * var(--scale));
	animation-delay: 0s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--4 {
		right: auto;
		left: calc(1159 / var(--gridWidth) * 100%);
		top: calc(249 / var(--gridHeight) * 100%);
		width: calc(183px * var(--scale));
		height: calc(247px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--5 {
	left: calc(24 / var(--gridWidth) * 100%);
	bottom: calc(130 / var(--gridHeight) * 100%);
	width: calc(110px * var(--scale));
	height: calc(150px * var(--scale));
	animation-delay: 0.9s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--5 {
		bottom: auto;
		left: calc(1187 / var(--gridWidth) * 100%);
		top: calc(632 / var(--gridHeight) * 100%);
		width: calc(325px * var(--scale));
		height: calc(233px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--6 {
	right: 0;
	bottom: calc(148 / var(--gridHeight) * 100%);
	width: calc(130px * var(--scale));
	height: calc(112px * var(--scale));
	animation-delay: 0.2s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--6 {
		right: auto;
		bottom: auto;
		left: calc(553 / var(--gridWidth) * 100%);
		top: calc(658 / var(--gridHeight) * 100%);
		width: calc(378px * var(--scale));
		height: calc(260px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--7 {
	left: 0;
	bottom: 0;
	width: calc(150px * var(--scale));
	height: calc(115px * var(--scale));
	animation-delay: 0.6s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--7 {
		bottom: auto;
		left: calc(223 / var(--gridWidth) * 100%);
		top: calc(437 / var(--gridHeight) * 100%);
		width: calc(225px * var(--scale));
		height: calc(350px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--8 {
	right: calc(83 / var(--gridWidth) * 100%);
	bottom: calc(28 / var(--gridHeight) * 100%);
	width: calc(165px * var(--scale));
	height: calc(107px * var(--scale));
	animation-delay: 0.75s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--8 {
		left: calc(80 / var(--gridWidth) * 100%);
		top: calc(168 / var(--gridHeight) * 100%);
		width: calc(295px * var(--scale));
		height: calc(327px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--9 {
	left: 0;
	top: 0;
	width: calc(100px * var(--scale));
	height: calc(90px * var(--scale));
	display: none;
	animation-delay: 0.4s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--9 {
		display: block;
		width: calc(195px * var(--scale));
		height: calc(145px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--10 {
	left: 0;
	bottom: 0;
	width: calc(160px * var(--scale));
	height: calc(115px * var(--scale));
	display: none;
	animation-delay: 0.2s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--10 {
		display: block;
		width: calc(280px * var(--scale));
		height: calc(190px * var(--scale));
	}
}

.gallery-modal-plus__collageImgWrap--11 {
	left: calc(356 / var(--gridWidth) * 100%);
	bottom: 0;
	width: calc(300px * var(--scale));
	height: calc(150px * var(--scale));
	display: none;
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--11 {
		display: block;
	}
}

.gallery-modal-plus__collageImgWrap--12 {
	left: calc(1145 / var(--gridWidth) * 100%);
	bottom: 0;
	width: calc(220px * var(--scale));
	height: calc(130px * var(--scale));
	display: none;
	animation-delay: 0.2s;
}

@media (min-width: 768px) {
	.gallery-modal-plus__collageImgWrap--12 {
		display: block;
		left: calc(1105 / var(--gridWidth) * 100%);
		width: calc(245px * var(--scale));
		height: calc(150px * var(--scale));
	}
} */

.gallery-modal-plus__app {
	position: relative;
	text-align: center;
}

.gallery-modal-plus__headline {
	grid-column: span 12; /* Equivalent to @apply col-span-12 */
	text-align: center;
}

@media (min-width: 768px) {
	.gallery-modal-plus__headline {
		grid-column-start: 4; /* Equivalent to @apply col-start-4 */
		grid-column-end: span 6; /* Equivalent to @apply col-span-6 */
	}
}

.gallery-modal-plus__button--open {
	padding: 14px 24px 14px 21px;
	color: var(--color-theme-primary);
	border: 2px solid var(--color-theme-primary);
	background-color: var(--color-theme-grey);
	border-radius: 40px;
	margin-top: 40px;
}

.gallery-modal-plus__button--open:focus {
	outline: 4px solid var(--color-theme-yellow);
}

.gallery-modal-plus__button--open:hover {
	background-color: var(--color-theme-primary);
	color: var(--color-theme-white);
}

.gallery-modal-plus__dialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	visibility: hidden;
	overflow-y: auto;
	pointer-events: none;
	opacity: 0;
}

.gallery-modal-plus__swipper .gallery-modal-plus__slider-caption {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.gallery-modal-plus__swipper .swiper-slide-active .gallery-modal-plus__slider-caption {
	opacity: 1;
	transition: opacity 1s ease-in-out;
}

.gallery-modal-plus__swipper .swiper-pagination {
	position: relative;
	text-align: left;
}

.gallery-modal-plus__swipper
.swiper-container-horizontal
> .swiper-pagination-bullets,
.gallery-modal-plus__swipper .swiper-pagination-custom,
.gallery-modal-plus__swipper .swiper-pagination-fraction {
	/* bottom: 0;
	left: 0;
	width: auto; */
	margin-top: 100px;
	padding-left: 0;
	border-left: 0;
	text-align: center;
}

.gallery-modal-plus__swipper .swiper-button-next,
.gallery-modal-plus__swipper .swiper-button-prev {
	top: auto;
	bottom: 6px;
}

/* @media (min-width: 768px) {
	.gallery-modal-plus__swipper .swiper-button-next,
	.gallery-modal-plus__swipper .swiper-button-prev {
		top: 107%;
	}
} */

.swiper {
	overflow: visible;
}

.gallery-modal-plus__pagination {
	font-size: 28px;
	font-family: var(--secondary-font-family);
	color: var(--color-theme-primary);
	margin-top: 26px;
	border-left: solid 2px var(--color-theme-blue-bright);
	padding-left: 20px;
}

.sr-only {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gallery-modal-plus__overlay {
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
}

.gallery-modal-plus__modal-content {
	position: relative;
	margin: auto;
	padding: 10px;
	width: 90%;
}

.gallery-modal-plus__slider-wrapper {
	text-align: left;
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 100%;
}

@media (min-width: 768px) {
	.gallery-modal-plus__slider-wrapper {
		padding-bottom: 56.25%;
	}
}

.gallery-modal-plus__slider-figure {
	position: absolute;
	height: 100%;
	width: 100%;
}

.gallery-modal-plus__slider-img {
	object-fit: cover;
	border-radius: 10px;
}

.gallery-modal-plus__slider-caption {
	font-size: 28px;
	font-family: var(--secondary-font-family);
	color: var(--color-theme-primary);
	margin-top: 26px;
	border-left: solid 2px var(--color-theme-blue-bright);
	padding-left: 20px;
}

@media (min-width: 768px) {
	.gallery-modal-plus__slider-caption {
		width: 50%;
	}
}

.swiper-button-next,
.swiper-button-prev {
	width: calc(var(--swiper-navigation-size) / 44 * 30);
	top: 110%;
}

@media (min-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		top: 107%;
	}
}

.swiper-button-next,
.swiper-button-prev {
	content: "";
	width: var(--swiper-navigation-size);
	height: var(--swiper-navigation-size);
	border: 2px solid var(--color-theme-primary);
	border-radius: 50%;
	background-image: url(../../assets/images/solid_arrow_blue_butler.svg);
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: center;
	background-color: var(--color-theme-white);
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
	background-color: var(--color-theme-primary) !important;
	border-color: var(--color-theme-primary);
	background-image: url(../../assets/images/solid_arrow_white.svg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	content: "";
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after,
.swiper-button-next:focus::after,
.swiper-button-prev:focus::after {
	background-color: var(--color-theme-primary);
	border-color: var(--color-theme-primary);
	background-image: url(../../assets/images/solid_arrow_white.svg);
}

.swiper-button-prev {
	transform: rotate(180deg) !important;
}

.gallery-modal-plus__button--close {
	position: absolute;
	top: -3rem;
	right: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	row-gap: 5px;
	line-height: 1;
	padding: 5px;
	border-radius: 6px;
	background-color: var(--color-theme-white);
	border-color: var(--color-theme-white);
}

.gallery-modal-plus__button--close::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../../assets/images/nav_main_icon_close.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.gallery-modal-plus__button--close:hover,
.gallery-modal-plus__button--close:focus {
	color: var(--color-theme-white) !important;
	background-color: var(--color-theme-primary) !important;
}

.gallery-modal-plus__button--close:hover::before,
.gallery-modal-plus__button--close:focus::before {
	/* background-image: url(../../assets/images/nav_main_icon_close.png);
	background-image: url(../../assets/images/nav_main_icon_close_white.svg); */
	filter: brightness(0) invert(1);
}

.gallery-modal-plus__button-icon--close {
	width: 20px;
	height: 20px;
}

.bounce-enter {
	animation: bounce-in 1s;
}

.bounce-leave {
	animation: bounce-in 1s reverse;
}

@keyframes bounce-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.gallery-modal-plus__wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* .gallery-modal-plus__wrapper--open {
	transform: none;
} */

@media print {
	.gallery-modal-plus__container {
		display: none !important;
	}
}

/* Gallery Style */
.gallery-modal-plus {
  background-color: #E9F3F6;
}
.gallery-modal-plus__buttonFocus::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: center;
	transform: translate(-50%, -50%);
}
.gallery-modal-plus__buttonFocus.swiper-button-prev::after {
	background-image: url('../../assets/images/icon-arrow-right-blue.svg');
}
.gallery-modal-plus__buttonFocus.swiper-button-next::after {
	background-image: url('../../assets/images/icon-arrow-right-blue.svg');
}
.gallery-modal-plus__button--close::before {
	background-image: url('../../assets/images/icon-close-blue.png');
}
.gallery-modal-plus__button--close:hover::before {

}
.gallery-modal-plus__collageImgWrap {
  --gridWidth: 1440;
  --gridHeight: 1000;
  border-radius: 0;
}
.gallery-modal-plus__collageImgWrap .gallery-modal-plus__collageImage {
  box-shadow: none;
  outline: none;
  border-radius: 0;
}
.gallery-modal-plus__collageImgWrap--1 {
  top: calc((43/390) * 100vw);
  left: 0;
  width: calc((140/390) * 100vw);
  height: calc((115/390) * 100vw);
	animation-delay: 0.4s;
}
.gallery-modal-plus__collageImgWrap--2 {
	animation-delay: 0.6s;
}
.gallery-modal-plus__collageImgWrap--3 {
  top: 0;
  left: calc((130/390) * 100vw);
  width: calc((128/390) * 100vw);
  height: calc((100/390) * 100vw);
	animation-delay: 0.3s;
}
.gallery-modal-plus__collageImgWrap--4 {
  top: calc((30/390) * 100vw);
  right: 0;
  width: calc((104/390) * 100vw);
  height: calc((143/390) * 100vw);
	animation-delay: 0.75s;
}
.gallery-modal-plus__collageImgWrap--5 {
	animation-delay: 0.4s;
}
.gallery-modal-plus__collageImgWrap--6 {
  width: calc((149/390) * 100vw);
  height: calc((100/390) * 100vw);
  left: calc((24/390) * 100vw);
  bottom: calc((84/390) * 100vw);
	animation-delay: 1.2s;
}
.gallery-modal-plus__collageImgWrap--7 {
  width: calc((206/390) * 100vw);
  height: calc((137/390) * 100vw);
  bottom: -1px;
  right: 0;
	animation-delay: 0.8s;
}
.gallery-modal-plus__collageImgWrap--8 {
	animation-delay: 1s;
}
.gallery-modal-plus__collageImgWrap--9 {
	animation-delay: 1.2s;
}
@media only screen and (max-width: 767px) {
  .gallery-modal-plus__collageImgWrap--2,
  .gallery-modal-plus__collageImgWrap--5,
  .gallery-modal-plus__collageImgWrap--8,
  .gallery-modal-plus__collageImgWrap--9,
  .gallery-modal-plus__collageImgWrap--10,
  .gallery-modal-plus__collageImgWrap--11,
  .gallery-modal-plus__collageImgWrap--12 {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .gallery-modal-plus__collageImgWrap--1 {
    top: calc((170 / 1440) * 100vw);
    left: calc((40 / 1440) * 100vw);
    width: calc((240 / 1440) * 100vw);
    height: calc((198 / 1400) * 100vw);
    max-width: 240px;
    max-height: 198px;
    z-index: 1;
  }
  .gallery-modal-plus__collageImgWrap--2 {
    top: 0;
    left: calc((240 / 1440) * 100vw);
    width: calc((412 / 1440) * 100vw);
    height: calc((269 / 1440) * 100vw);
    max-width: 412px;
    max-height: 269px;
  }
  .gallery-modal-plus__collageImgWrap--3 {
    top: calc((87 / 1440) * 100vw);
    left: calc((767 / 1440) * 100vw);
    width: calc((308 / 1440) * 100vw);
    height: calc((244 / 1440) * 100vw);
    max-width: 308px;
    max-height: 244px;
  }
  .gallery-modal-plus__collageImgWrap--4 {
    top: calc((144 / 1440) * 100vw);
    right: 0;
    width: calc((250 / 1440) * 100vw);
    height: calc((343 / 1440) * 100vw);
    max-width: 250px;
    max-height: 343px;
  }
  .gallery-modal-plus__collageImgWrap--5 {
    top: calc((455 / 1440) * 100vw);
    left: 0;
    width: calc((308 / 1440) * 100vw);
    height: calc((353 / 1440) * 100vw);
    max-width: 308px;
    max-height: 353px;
  }
  .gallery-modal-plus__collageImgWrap--6 {
    top: auto;
    bottom: 20px;
    left: calc((207 / 1440) * 100vw);
    width: calc((240 / 1440) * 100vw);
    height: calc((160 / 1440) * 100vw);
    max-width: 240px;
    max-height: 160px;
  }
  .gallery-modal-plus__collageImgWrap--7 {
    bottom: calc((76 / 1440) * 100vw);
    left: calc((427 / 1440) * 100vw);
    width: calc((400 / 1440) * 100vw);
    height: calc((240 / 1440) * 100vw);
    max-width: 400px;
    max-height: 240px;
  }
  .gallery-modal-plus__collageImgWrap--8 {
    bottom: 20px;
    left: calc((900 / 1440) * 100vw);
    width: calc((320 / 1440) * 100vw);
    height: calc((213 / 1440) * 100vw);
    z-index: 1;
    max-width: 320px;
    max-height: 213px;
  }
  .gallery-modal-plus__collageImgWrap--9 {
    right: 0;
    bottom: calc((140 / 1440) * 100vw);
    width: calc((365 / 1440) * 100vw);
    height: calc((286 / 1440) * 100vw);
    max-width: 365px;
    max-height: 386px;
  }
  .gallery-modal-plus__heading {
    grid-column: 3/11;
  }

}