#pageLoad, #smallSocialMedia {
	display: none;
}
body { 
    padding-top: 55px;
	 padding-bottom: 25px;
}
#jumbotron-title-container{
	position: absolute;
	background-color: rgba(255,255,255,0.75);
	top: 125px;
	width: 100%;
	height: 75px;
}
.display-4{
	position: relative;
	left: 25px;
	z-index: 999;
}
.page-sub-title{
	position: relative;
	left: 25px;
	top: -15px;
}

.prod-thumb {
	position: relative;
	overflow: hidden;
}
.prod-thumb img {
	max-width: 100%;
	
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.prod-thumb:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.nav-tabs li {
	cursor: pointer;
}

.text-tiny{
	font-size: 10px;
}

/*@media screen and (min-width: 576px) {
	.td-pill{
		border: none;
		padding: 4px;
		text-align: center;
		font-size: 11px;
		text-decoration: none;
		display: inline-block;
		margin: 2px;
		cursor: pointer;
		border-radius: 7px;
	}
}

@media screen and (max-width: 479px) {
	.td-pill{
		border: none;
		padding: 2px;
		text-align: center;
		font-size: 9px;
		text-decoration: none;
		display: inline-block;
		margin: 1px;
		cursor: pointer;
		border-radius: 3px;
	}
}*/

/*******************************************************************************/
/*******************************************************************************/
/*                   Product Detail Page                                       */
/*******************************************************************************/
/*******************************************************************************/
.preview{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
		-ms-flex-direction: column;
			flex-direction: column;
}

	@media screen and (max-width: 996px) {
		.preview{
			margin-bottom: 20px;
		}
	}
	
.preview-pic {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
		-ms-flex-positive: 1;
			flex-grow: 1;
}

.preview-thumbnail {
	border: none;
	margin-top: 15px;
}
	.preview-thumbnail.nav-tabs a {
		width: 18%;
		margin-right: 2.5%;
		cursor: pointer;
	}
		.preview-thumbnail.nav-tabs a img {
			max-width: 100%;
			display: block;
		}
		.preview-thumbnail.nav-tabs a:last-of-type {
			margin-right: 0;
		}

.tab-content {
	overflow: hidden;
}
	.tab-content img {
		width: 100%;
		-webkit-animation-name: opacity;
			animation-name: opacity;
		-webkit-animation-duration: .3s;
			animation-duration: .3s;
	}
	
@-webkit-keyframes opacity {
	0% {
		opacity: 0;
		-webkit-transform: scale(3);
			transform: scale(3);
	}
}

@keyframes opacity {
	0% {
		opacity: 0;
		-webkit-transform: scale(1);
			transform: scale(1);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
			transform: scale(1);
	}
}