.container {
	width: 100%;
	position: relative;
	font-family: 'Open Sans', sans-serif;
}

.og-grid {
	list-style: none;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	
}

.og-grid li {
	display: inline-block;
	margin: 10px 5px 30px 5px;
	vertical-align: top;
	height: 315px;
	border: 1px solid #E2E5E8;
	background-color:white;
	max-height: 900px;
}

@media only screen and (max-width: 768px) {
	.og-grid li {
		max-height: none;
	}
}

.og-grid li a:not(#promo) {
	transition: background-color 0.4s ease-in;
}

.og-grid li a:hover:not(#promo) { 
	cursor: pointer;
	background-color: #ff9000;
}
.og-grid li#promo {
	padding-top: 115px;
	border-width: 0px;
	margin-bottom: 0;
	height: auto;
}

.og-grid li a {
	text-decoration: none;
	padding-bottom: 10px;
}
.og-grid li a h4 {
	color: #000000;
}

.og-grid li a .img-container {
	height: 260px;
	width: 240px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.og-grid li a .img-container::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 9px;
	right: 9px;
	bottom: 0;
	transition: opacity 0.4s ease-in;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
}

.og-grid li a .img-container::before {
	content: attr(data-text);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	z-index: 2;
	text-align: center;
	backface-visibility: hidden;
	opacity: 0;
	transition: opacity 0.4s ease-in;
}

.og-grid li a:hover:not(#promo) .img-container::after,
.og-grid li a:hover:not(#promo) .img-container::before {
	opacity: 1;
}

.og-grid li > a,
.og-grid li > a img {
	margin: auto;
	border: none;
	outline: none;
	display: inline-block;
	position: relative;
	max-width: 250px;
	/* max-height: 260px; */
	vertical-align: middle;
}
.og-grid li > a img {
	max-height: 260px;
}

.og-grid li.og-expanded > a::after {
	top: auto;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #ECECEC;
	border-width: 15px;
	left: 50%;
	margin: -23px 0 0 -15px;
}

.og-expander {
	position: absolute;
	background: #ECECEC;
	top: auto;
	left: 0;
	width: 100%;
	margin-top: -3px;
	/* max-height: 600px; */
	text-align: left;
	height: 0;
	overflow: hidden;
	border: 0px solid #fff;
	z-index: 2;
}

.og-expander-inner {
	padding: 50px 30px;
	/* height: 100%; */
}

.og-close {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.og-close::before,
.og-close::after {
	content: '';
	position: absolute;
	width: 100%;
	top: 50%;
	height: 1px;
	background: #888;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.og-close::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.og-close:hover::before,
.og-close:hover::after {
	background: #333; 
}

.og-fullimg,
.og-details {
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.og-details {
	padding: 0 20px 0 20px;
}

.og-fullimg {
	text-align: center;
}

.og-fullimg img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.og-details h3 {
	font-weight: 300;
	font-size: 28px;
	color: #ff9408;
}

.og-details p {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #000000;
	padding: 10px 0;
}

.og-details .small-img-container {
	width: 100%;
	max-height: 120px;
	display: inline-flex;
	justify-content: space-between;	
}

.og-details .small-img-container > img {
	display: inline-block;
	box-sizing: border-box;
	width: 23%;
	max-width: 120px;
	max-height: 100px;
	cursor: pointer;
}

.og-details span.prices-text {
	color: #ff9408;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 0px;
	font-size: 14px;
}

.og-details .priceTable {
	max-height: 100px;
	padding: 15px 0;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
}
.og-details .priceTable table {
	width: 100%;
	
}

.og-details .priceTable tr td {
	background-color: #fff;
	border: 1px solid #ff9408;
	width: 20%;
	box-sizing: border-box;
	font-weight: bold;
	text-align: center;
	padding: 4px;
	margin: 0 auto;
}


/* This can be added to enable a button that can take you to a link you want */ 
.og-details a {
	/* font-weight: 700;
	font-size: 16px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 20px;
	border: 3px solid #333;
	display: inline-block;
	margin: 30px 0 0;
	outline: none; */
	display:none;
}

/* .og-details a::before {
	content: '\2192';
	display: inline-block;
	margin-right: 10px;
}

.og-details a:hover {
	border-color: #999;
	color: #999;
} */

.og-loading {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ddd;
	box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	-webkit-animation: loader 0.5s infinite ease-in-out both;
	-moz-animation: loader 0.5s infinite ease-in-out both;
	animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@-moz-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@media screen and (max-width: 830px) {

	.og-expander h3 { font-size: 24px; }
	.og-expander p { font-size: 13px; }
	.og-expander a { font-size: 12px; }

}

@media screen and (max-width: 650px) {

	.og-fullimg { display: none; }
	.og-details { float: none; width: 100%; }
	
}

