.fullWidthContianer{
	width: 100%;
}
.productDisplay{
	background-color: #FFF;
	margin: 0px;
}
.productImagePane{
	height: 100%;
	display: flex;
	overflow: hidden;
	text-align:center;
}
.productImagePane img{
	height: 500px;
}
.productInfo{
	height: 100%;
	display: flex;
}
.productInfoPane h1{
	font-weight: 900;
	color: #990100;
	font-family: Arial;
	font-size: 60px;
	text-transform: uppercase;
	text-align: center;
	margin: 35px 0px 35px 0px;
}
.productInfoPane .tabable{
	background-color: rgb(242,242,242);
}
.productInfoPane .nav-tabs{
	border-width: 0px;
	text-align: center;
	margin-bottom: 20px;
}
.productInfoPane .nav-tabs li{
	position: relative;
	padding: 7px 5px 7px 5px;
}
.productInfoPane .nav-tabs a{
	color: rgb(33,37,41);
	padding: 15px;
}
.productInfoPane .nav-tabs a:hover{
	text-decoration: none;
	background-color: rgb(255,199,206);
}
.productInfoPane .nav-tabs a.active{
	background-color:#990100;
	color: #fff;
}
.productInfoPane #weight_sizes{
	max-height: 265px;
	overflow-y: scroll;
	margin-bottom: 20px;
}
.productInfoPane #weight_sizes th{
	text-align: center;
}
.productInfoPane #weight_sizes td{
	padding: 0px;
	text-align: center;
}
.productImagePane div{
	position: relative;
}
a.carousel-control-next, a.carousel-control-prev{
	cursor: pointer;
}

/*
*******Too Wide Layout BREAKPOINT*******
MEDIA QUERY FOR > Background Width
*/
@media (min-width: 1278px){
}
/*
*******Width Only Desktop  Layout BREAKPOINT*******
MEDIA QUERY FOR > Medium Width
Set "min-width" equal to bootstrap small breakpoint
*/
@media (min-width: 768px){
}
/*
*******Full Desktop Layout BREAKPOINT*******
MEDIA QUERY FOR Medium Height & > Medium Width
Set "min-width" equal to bootstrap small breakpoint
Set "max-height" equal to max background image height + header height + footer height
Set "min-height" equal to minimum viewport size
*/
@media (max-height: 1034.9px) and (min-height: 500px) and (min-width: 768px){
	/*Activate these styles when screen width is above x and screen height is above x*/
}

/*
*******Too Tall Desktop Layout BREAKPOINT*******
MEDIA QUERY FOR Large Height & > Medium Width
Set "min-width" equal to bootstrap small breakpoint
Set "min-height" equal to max background image height + header height + footer height
This media query un-fixes the footer from the bottom of the viewport
*/
@media (min-height: 1035px) and (min-width: 768px){
	/*Activate these styles when screen width is above x and screen height is below x*/
}