<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.gallery-popup-container {
	position:fixed; 
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
	height: 90vh;
	z-index:99999;
	display:none;
	background-color:white;
	padding:30px;
	border-radius: 10px;
}

.gallery-popup-blackout {
	position:absolute; 
	width:100%; 
	height:100%; 
	top:0px; 
	left:0px;
	background-color:#222;
	opacity:0.6;
	z-index:9999;
	display:none;
}

.gallery-popup-loading {
	display: none;
}

.gallery-popup-close {
	position:absolute;
	top: 10px;
	right: 10px;
	font-weight: bold;
	cursor: pointer;
}

.gallery-left {
	width: 7%;
	height: 75vh;
	float: left;
	text-align: left;
	vertical-align: middle;
	line-height: 75vh;
	font-size: 1.3em;
	margin: auto;
	cursor: pointer;
}

.gallery-right {
	width: 9%;
	height: 75vh;
	padding-right: 30px;
	float: left;
	text-align: right;
	vertical-align: middle;
	line-height: 75vh;
	font-size: 1.3em;
	margin: auto;
	cursor: pointer;
}

.gallery-large-image {
	width: 48%;
	height: 75vh;
	line-height: 75vh;
	float: left;
	text-align: center;
	vertical-align: middle;
	margin: auto;
}

.gallery-large-image &gt; img {
	object-fit: contain;
	width: auto;
	max-width: 100%;
	max-height: 100%;
} 

.gallery-thumbnails {
	width: 35%;
	height: 75vh;
	float: left;
	overflow-y: auto;
}

.gallery-thumbnails-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start; /* prevents thumbnail padding from stretching to fit container height */
}

.gallery-thumbnails-container &gt; img {
	float: left;
	width: 74px;  /* 60px wide plus border and padding */
	object-fit: contain;  /* prevents thumbnails from stretching to fit container height */
	margin: 10px;
	max-height: 128px;
	padding: 6px;
	cursor: pointer;
}

.gallery-thumb-active {
	border: solid 1px #11529d;
}

.gallery-thumb-inactive {
	border: solid 1px #dedede;
}

@media screen and (max-width: 936px) {
	
	.gallery-blurb {
		display: none;  /* hide the product description */
	}
	
}
	

@media screen and (max-width: 856px) {
	
	.gallery-header {
		display: none;  /* hide the product description */
	}
	
	.gallery-thumbnails {
		clear: both;
		width: 100%;
		height: 150px;
		overflow-x: auto;
		overflow-y: hidden;
	}
	
	.gallery-large-image {
		width: 83%;
		height: 60vh;
		line-height: 60vh;
	}
	
	.gallery-left {
		height: 60vh;
		line-height: 60vh;
	}
	
	.gallery-right {
		padding-right: 0px;
		height: 60vh;
		line-height: 60vh;
	}
	
	.gallery-thumbnails-container {
		flex-wrap: nowrap;
		overflow-x: auto;
	}
	
}


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