#product_details_container .product-out-of-stock-container
{
	padding: 30px;
	border: 2px solid #000000;
	text-align: center;
	border-radius: 5px;
	margin-top: 30px;
}

#product_details_container #sku_out_of_stock_notification_container
{
	padding: 20px;
	border: 2px solid #000000;
	border-radius: 5px;
	margin-top: 15px;
}

#product_details_container #sku_out_of_stock_notification_container > div
{
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #000000;
}

#product_details_container #sku_out_of_stock_notification_container > div h2
{
	font-size: 15pt;
	margin-bottom: 0 !important;
}

#product_details_container #sku_out_of_stock_notification_container > div span
{
	font-size: 20pt;
	margin-right: 10px;
	margin-top: 3px;
}

#product_details_container #sku_out_of_stock_notification_container > div p
{
	font-size: 12pt;
}

#product_details_container #sku_out_of_stock_notification_container ul
{
	margin-bottom: 0;
}

#product_details_container #sku_out_of_stock_notification_container ul li
{
	font-size: 11pt;
	margin-bottom: 7px;
	padding-bottom: 7px;
	border-bottom: 1px solid #d6d7d6;
}

#product_details_container #sku_out_of_stock_notification_container ul li:last-of-type
{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

#product_details_container #sku_out_of_stock_notification_container ul li > div
{
	color: #575757;
}

/*
	Replace the default lazy loading animation
	------------------------------------------
*/
@keyframes skeleton-loading
{
	to
	{
		background-position-x: -200%;
	}
}

#product_details_container .image-container .swiper-lazy-preloader
{
	top: 0 !important;
	left: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	transform: translateZ(0) !important;
	/* 	NOTE:
		First and last colours are overall background and should be the same, middle colour is the sliding line that goes across the screen,
		it should be a bit lighter/darker than the main background colour
	*/
    background: linear-gradient(to right, #ffffff 8%, #dbdbdb 18%, #ffffff 33%);
    border-radius: 5px !important;
    background-size: 200% 100% !important;
    animation: 2000ms skeleton-loading linear infinite !important;
}

/* Hide the swiper spinner gif */
#product_details_container .image-container .swiper-lazy-preloader::after
{
	display: none !important;
}
/*
	------------------------------------------
	Replace the default lazy loading animation
*/

#product_details_container .image-container
{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 420px;
	overflow: hidden;
}

@media screen and (max-width:1200px)
{
    #product_details_container .image-container
    {
        align-items: center;
        margin: 0 auto;
    }
}

#product_details_container .image-container a::before
{
	display: none;
}

#product_details_container .image-container .gallery-top,
#product_details_container .image-container .image-missing-container
{
	width: 100%;
	border: 1px solid #dedede;
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}

#product_details_container .image-container .gallery-top a,
#product_details_container .image-container .image-missing-container
{
	position: relative;
	display: block;
	padding-top: 100%;
	height: 0;
	overflow: hidden;
}

#product_details_container .image-container .gallery-top a img,
#product_details_container .image-container .image-missing-container img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
    object-fit: contain;
    object-position: center;
}

#product_details_container .image-container .image-missing-container img
{
	object-fit: cover;
}

#product_details_container .image-container .gallery-top a::after
{
	content: '\f31e';
	position: absolute;
	z-index: 2;
	bottom: 10px;
	right: 10px;
	display: block;
	font-family: "font_awesome";
	font-size: 23pt;
	color: #ffffff;
	opacity: 0;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
	transform: scale(0.8);
	transition: all 200ms;
}

#product_details_container .image-container .gallery-top a:hover::after
{
	opacity: 1;
}

#product_details_container .image-container .gallery-thumbs
{
	position: relative;
	width: 100% !important;
	max-width: 420px;
	margin: 0 !important;
}

#product_details_container .image-container .gallery-thumbs .swiper-slide
{
	width: 100px !important;
}

#product_details_container .image-container .gallery-thumbs .swiper-slide div
{
	position: relative;
	height: 100px;
	cursor: pointer;
	width: 100px;
	border-radius: 5px;
	overflow: hidden;
}

#product_details_container .image-container .gallery-thumbs .swiper-slide img
{
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

#product_details_container .image-container .gallery-thumbs .swiper-slide div::before
{
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0;
	margin: auto;
	transform: none;
	transition: opacity 200ms;
}

#product_details_container .image-container .gallery-thumbs .swiper-slide div:hover::before
{
	opacity: 0.2;
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation
{
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	opacity: 0;
	width: 40px;
	height: 40px;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	border-radius: 50%;
	transition: opacity 200ms;
}

#product_details_container .image-container .gallery-thumbs:hover .ecom-gallery-thumbs-navigation
{
	opacity: 0.8;
}

@media screen and (max-width:768px)
{
	#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation
	{
		opacity: 0.8;
	}
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.swiper-button-disabled
{
	display: none;
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.previous
{
	left: 3px;
	padding-right: 3px;
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.next
{
	right: 3px;
	padding-left: 3px;
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.previous::before
{
	content: "\f053";
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.next::before
{
	content: "\f054";
}

#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.previous::before,
#product_details_container .image-container .gallery-thumbs .ecom-gallery-thumbs-navigation.next::before
{
	font-family: "font_awesome";
	font-size: 15pt;
	color: #202020;
}

#product_details_container .share-icon-container
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

#product_details_container .star-container
{
	margin-right: 15px;
}

#product_details_container .request-quote-container
{
	margin: 20px 0;
}

@media screen and (max-width:1200px)
{
	#product_details_container .request-quote-container form
	{
		text-align: center;
	}
}

#product_details_container .request-quote-container a:link,
#product_details_container .request-quote-container a:active,
#product_details_container .request-quote-container a:visited
{
	font-size: 13pt;
	font-weight: bold;
	text-decoration: none;
	color: #202020;
}

#product_details_container .request-quote-container a span
{
	color: #8AC33F;
}

#product_details_container .request-quote-container a:hover
{
	text-decoration: underline;
}

#product_details_container .request-quote-container form
{
	margin-top: 20px;
}

#product_details_container .save-compare-button-container
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 420px;
    margin: 20px auto 0 auto;
}

#product_details_container .save-compare-button-container a
{
	font-size: 11pt;
	font-weight: normal;
}

#product_details_container .save-compare-button-container a span
{
	font-size: 11pt;
	padding-right: 7px;
}

@media screen and (max-width:1199px)
{
	#product_details_container .product-information
	{
		margin-bottom: 30px;
	}
}

#product_details_container .product-information .product-brand
{
	font-weight: normal;
	font-size: 12pt;
	text-transform: uppercase;
	color: #B7272F;
	margin-top: -5px;
}

.product-name-and-quote-container
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#product_details_container .product-information .product-name
{
	margin-bottom: 7px;
	max-width: 70%;
}

#product_details_container .product-information .product-name h1
{
    display: flex;
    align-items: center;
	font-size: 34pt;
	line-height: 1;
	margin: 0 !important;
}

@media screen and (max-width:480px)
{
    #product_details_container .product-information .product-name h1
    {
        font-size: 26pt;
    }
}

#product_details_container .product-information .product-name h1 div
{
    overflow: hidden;
    border-radius: 5px;
    width: 80px;
    margin-right: 10px;
}

#product_details_container .product-information .product-teaser
{
	font-family: roboto, sans-serif;
	font-size: 20pt;
	font-weight: bold;
	color: #0073CD;
	margin-bottom: 7px;
}

#product_details_container .product-information .product-description
{
	margin-top: 30px;
}

#product_details_container .product-information #product_options_table
{
	margin-top: 25px;
}

#product_details_container .product-information #product_options_table tr td
{
	padding: 15px;
}

#product_details_container .product-information .reviews
{
	display: flex;
	margin-top: 15px;
}

#product_details_container .reviews a
{
	font-weight: normal;
	font-size: 11pt;
}

@media screen and (max-width:1200px)
{
	#product_details_container .product-information > .product-title
	{
		text-align: center;
	}

	#product_details_container .product-information .product-teaser
	{
		margin: 15px 0;
	}

	#product_details_container .product-information .reviews
	{
		justify-content: center;
	}

	#product_details_container .product-information #product_options_table tr td:nth-of-type(even)
	{
		padding-top: 0;
		border-top: none;
	}

	#product_details_container .product-information #product_options_table tr td:nth-of-type(odd)
	{
		padding-bottom: 5px;
	}

	#product_details_container .product-information #product_options_table label.no-bold
	{
		font-weight: normal;
	}

	#product_details_container .product-information #add_product_to_inquiry_form
	{
		text-align: center;
	}
}

#reviews_anchor_link
{
	cursor: pointer;
}

/* Lightbox Styles */
.sl-overlay
{
	background: #000000;
	opacity: 0.8;
}

.sl-wrapper .sl-close
{
	font-size: 28pt;
	color: #ffffff;
}

.sl-wrapper .sl-counter
{
	font-size: 16pt;
	color: #ffffff;
}

.sl-wrapper .sl-navigation button.sl-prev,
.sl-wrapper .sl-navigation button.sl-next
{
	font-size: 30pt;
	color: #ffffff;
}

.sl-wrapper .sl-image .sl-caption
{
	font-size: 16pt;
}

.sl-wrapper .sl-image .description
{
	font-size: 12pt;
}

.sl-wrapper .sl-image .lightbox-link
{
	margin-top: 10px;
}

.sl-wrapper .sl-image a:link,
.sl-wrapper .sl-image a:active,
.sl-wrapper .sl-image a:visited
{
	font-size: 12pt;
}

@media screen and (max-width:1200px)
{
	.sl-wrapper .sl-close
	{
		right: 20px;
    	top: 80px;
	}
}