<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* LIGHTBOX OVERLAY */

#lightbox {
	background: rgba(0,0,0,0.5);
	display: block;
	height: calc(100vh - var(--wp-admin--admin-bar--height));
	position: fixed; top: var(--wp-admin--admin-bar--height); right: 0; bottom: 0; left: 0;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.25s ease;
	width: 100vw;
	z-index: -9999;
}

#lightbox.open {
	opacity: 1;
	padding-top: 0;
	z-index: 999;
}

	#lightbox .lightbox_close {
		background: #231f20 url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIwIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMzEwLjYgMzYxLjRjMTIuNSAxMi41IDEyLjUgMzIuNzUgMCA0NS4yNS02LjIgNi4yNS0xNC40IDkuMzUtMjIuNiA5LjM1cy0xNi4zOC0zLjEyNS0yMi42Mi05LjM3NWwtMTA1LjM4LTEwNS4zMjUtMTA1LjM3IDEwNS4zYy02LjI1IDYuMy0xNC40NCA5LjQtMjIuNjMgOS40cy0xNi4zNy0zLjEtMjIuNjI1LTkuNGMtMTIuNS0xMi41LTEyLjUtMzIuNzUgMC00NS4yNWwxMDUuNC0xMDUuNC0xMDUuNC0xMDUuMzVjLTEyLjUtMTIuNS0xMi41LTMyLjc1IDAtNDUuMjVzMzIuNzUtMTIuNSA0NS4yNSAwbDEwNS4zNzUgMTA1LjQ1IDEwNS40LTEwNS40YzEyLjUtMTIuNSAzMi43NS0xMi41IDQ1LjI1IDBzMTIuNSAzMi43NSAwIDQ1LjI1bC0xMDUuNCAxMDUuNHoiIGZpbGw9IndoaXRlIi8+PC9zdmc+') center center no-repeat;
		background-size: 24px 24px;
		border: 1px solid rgba(255,255,255,0.5);
		border-radius: 100%;
		cursor: pointer;
		height: 44px;
		position: absolute; top: calc(2em - 22px); right: calc(5% - 22px); bottom: auto; left: auto;
		width: 44px;
		z-index: 4;
	}
	
	#lightbox.lightbox-small .lightbox_close {
		top: calc(8em - 22px); right: calc(20% - 22px);
	}
	
	#lightbox .lightbox_nav {
		display: block;
		height: 0;
		overflow: visible;
		position: absolute; top: calc(50% - 22px); right: 2px; bottom: calc(50% - 22px); left: 2px;
		width: 100%;
		z-index: 3;
	}
	
		#lightbox .lightbox_nav div {
			background: #231f20 url('') center center no-repeat;
			background-size: 24px 24px;
			border: 1px solid rgba(255,255,255,0.5);
			border-radius: 100%;
			height: 44px;
			position: absolute; top: 0; bottom: auto;
			width: 44px;
		}
		
		#lightbox .lightbox_nav div::after {
			color: #ffffff;
			font-family: 'Arial', sans-serif;
			font-size: 50px;
			position: absolute; top: 0; right: 0; bottom: 0; left: 0;
			height: 44px;
			line-height: 34px;
			text-align: center;
			width: 44px;
		}
	
		#lightbox .lightbox_nav div[data-dir='prev'] {
			background-image: url('../images/ui/lightbox_previous.svg');
			right: auto; left: calc(5% - 22px);
		}
		
		#lightbox .lightbox_nav div[data-dir='next'] {
			background-image: url('../images/ui/lightbox_next.svg');
			right: calc(5% - 22px); left: auto;
		}
	
	#lightbox .lightbox_content {
		background: transparent;
		position: absolute; top: calc(50vh + 2rem); right: 5%; bottom: calc(-50vh + 2rem); left: 5%;
		transition: all 0.25s ease;
		width: 90%;
		z-index: 1;
	}
	
	#lightbox.open .lightbox_content {
		top: 2rem; bottom: 2rem;
	}

	#lightbox.lightbox-small .lightbox_content {
		top: 8em; right: 20%; bottom: 8em; left: 20%;
		width: 60%;
	}

	#lightbox .lightbox_content.image {
		background: rgba(0,0,0,0.5);
	}

	#lightbox .lightbox_content.image_description {
		background: #ffffff;
		overflow: auto;
	}
	
		#lightbox .lightbox_content img {
			border: 1em solid transparent;
			display: block;
			height: auto;
			margin: auto;
			max-height: 100%;
			max-width: 100%;
			position: relative; top: 50%;
			transform: translateY(-50%);
			/*width: auto; Removed as a workaround for possible Chrome CSS bug */
		}
		#lightbox .lightbox_content.image_description .image {
			position: absolute; top: 0; right: 40%; bottom: 0; left: 0;
		}
		
		#lightbox .lightbox_content.image_description .description {
			position: absolute; top: 50%; right: 6rem; bottom: 3rem; left: calc(60% + 1.5rem);
			transform: translateY(-50%);
		}
	
		#lightbox .lightbox_content iframe {
			background: #ffffff;
			height: 100%;
			margin: 0 auto;
			overflow: auto;
			position: absolute; top: 0; right: 0; bottom: 0; left: 0;
			width: 100%;
		}
		
		#lightbox .lightbox_content video.lightbox_html5_video {
			height: auto;
			max-width: 100%;
			position: absolute; top: 0; right: 0; bottom: 0; left: 0;
			width: auto;
			
		}
		
	#lightbox .lightbox_caption {
		color: #ffffff;
		position: absolute; top: auto; right: 5%; bottom: 0.5em; left: 5%;
		z-index: 2;
	}

		#lightbox .lightbox_caption .lightbox_caption_content {
			font-weight: 700;
			position: absolute; bottom: 0; left: 0;
			width: 78%;
		}
		
		#lightbox .lightbox_caption .lightbox_item_count {
			float: right;
			position: absolute; bottom: 0; right: 0;
			text-align: right;
			width: 18%;
		}


/* CSS3 MEDIA QUERIES */

/* PHONES (content area under 782 pixels) */
@media screen and (max-width: 782px) {

	#lightbox.lightbox-small .lightbox_close {
		right: calc(10% - 22px);
	}
	
	#lightbox .lightbox_content, #lightbox.lightbox-small .lightbox_content {
		bottom: 8rem; /* Fixes iPhone "no click zone" issue */
	}

	#lightbox.lightbox-small .lightbox_content {
		right: 10%; left: 10%;
		width: 80%;
	}

	#lightbox .lightbox_content.image_description .image {
		top: 1.5rem; right: 1.5rem; bottom: 40%; left: 1.5rem;
	}
	
	#lightbox .lightbox_content.image_description .description {
		top: calc(60% + 1rem); right: 3rem; bottom: 1.5rem; left: 3rem;
		transform: none;
	}

}</pre></body></html>