#photobanner {
	position: relative;
	width: 100%;
	margin: auto;
}
#photobanner:before {
	content: ""; 
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 50px;
	height: 280px;
	background-image: linear-gradient(90deg, rgba(97,33,15,0.0) 0%, rgba(97,33,15,0.0) 100%);
	z-index: 1;
}
#photobanner:after {
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 50px;
	height: 280px;
	background-image: linear-gradient(90deg, rgba(97,33,15,0.0) 0%, rgba(97,33,15,0.0) 100%);
	z-index: 1;
}
#photoslide {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
}
#photoslide .photos {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    grid-column-gap: 0;
}
#photoslide .startPic div {
	position: relative;
	height: auto;
	width: auto;
	max-height: 280px;
	margin: 0px;
	vertical-align: middle;
	display: inline-block;
	font-size: 0px;
}
#photoslide .startPic div img {
	height: 280px;
	width: auto;
	min-width: 50px;
	margin: 0px 1px;
	border-right: solid 1px #61210F;
	display: block;
	font-size: 0px;
}
.startPic {
	animation: var(--direction) var(--marquee-speed) linear infinite;
}
.startPicXXXX:hover {
    animation-play-state: paused;
}
.startPicXXX {
	animation: bannermove 35s linear infinite;
	animation-delay: 500ms;
}
.slideSpacer {
	clear: both;
	position: realtive;
	height: 80px;
}
@keyframes bannermove {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 1px)); }
}
.slideSpacer {
	clear: both;
	position: realtive;
	height: 80px;
}
#productDetails {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.9);
	display: none;
	z-index: 100;
}
#productImage {
	position: relative;
	width: 90%;
	max-width: 800px;
	padding: 28px 0px;
	margin: 0px auto;
	text-align: center;
}
#productImage p, #productImage h3 {
	color: #FFFFFF;
}
#productImage p a {
	color: #FFFFFF;
	text-decoration: none;
}
#productImage p a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
#productImage img {
	position: relative;
	max-width: 100%;
	max-height: 90vh;
	padding: 0px;
	margin: auto;
	background-color: #FFFFFF;
	box-shadow: 5px 5px 8px rgba(0,0,0,0.4);
	border: solid 10px #FFFFFF;
	border-radius: 28px;
	display: inline-block;
	cursor: pointer;
}
#productClose {
	position: relative;
	width: auto;
	max-width: 800px;
	padding: 28px 28px 10px 28px;
	margin: 2vh auto auto auto;
	text-align: right;
	font-size: 18px;
	color: #000000;
	cursor: pointer;
}
.dThumb {
	padding: 0px;
	margin: 0px;
	cursor: pointer;
}

@media only screen and (max-width: 680px) {
	#photobanner {
	height: 220px;
	}
	#photoslide .startPic img {
	height: 220px;
	}
}