/* 
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
		filter: alpha(opacity=100);
	}
	100% {
		opacity: 0;
		filter: alpha(opacity=0);
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		filter: alpha(opacity=100);
	}
	100% {
		opacity: 0;
		filter: alpha(opacity=0);
	}
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
	transition: height 500ms ease-in-out;
}
/* 
 *  Core Owl Carousel CSS File
 */

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	filter: alpha(opacity=0);
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
	filter: alpha(opacity=0);
}

.owl-carousel .owl-refresh .owl-item {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	box-sizing: border-box;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}
/* No Js */

.no-js .owl-carousel {
	display: block;
}
/* 
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	filter: alpha(opacity=0);
	transition: opacity 400ms ease;
}
/* 
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	filter: alpha(opacity=0);
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
}
/* Custom Style */

.owl-carousel .owl-item {
	border: 1px solid #ECF0F1;
	padding: 15px 0;
	transition: border 0.4s ease-out;
}

.owl-carousel .owl-item:hover {
	border: 1px solid #2aa8db;
	transition: border 0.4s ease-out;
}

.owl-carousel .spacer {
	border: 0;
	margin: 0;
}

.owl-carousel .spacer:hover {
	border: 0;
}
/* Блок с изображением */

.owl-carousel .owl-product-image {
	margin-bottom: 10px;
	display: table;
	width: 100%;
	height: 250px;
	padding: 10px 0 20px 0;
	border-bottom: 1px solid #e9e9e9;
	text-align: center;
}

.owl-carousel .owl-product-image a {
	display: table-cell;
	vertical-align: middle;
}

.owl-carousel .owl-product-image img {
	max-height: 100%;
	max-width: 80%;
	width: auto;
	margin: 0 auto;
}
/* Блок с названием */

.owl-product-name {
	margin-bottom: 5px;
	text-align: center;
	overflow: hidden;
	padding: 0 15px;
	min-height: 40px;
}

.owl-product-name a,
.owl-product-name a:link,
.owl-product-name a:visited {
	font-size: 14px;
	line-height: 20px;
	color: #333;
	text-decoration: none;
	font-weight: normal;
	transition: color 0.3s ease-out;
}

.owl-product-name a:hover,
.owl-product-name a:active {
	color: #2aa8db;
	text-decoration: none;
	transition: color 0.3s ease-out;
}
/* Блок с ценой */

.owl-product-price {
	margin-bottom: 10px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.owl-product-price .PricesalesPrice {
	text-align: center;
	color: #e67f22;
	font-size: 16px;
	padding: 0 5px;
}

.owl-product-price .PricebasePriceWithTax {
	text-align: center;
	color: #95A5A6;
	font-size: 14px;
	padding-top: 2px;
	text-decoration: line-through;
}
/* Блок с кнопкой Купить */

.owl-carousel .product-fields {
	display: none;
}

.owl-addtocart .addtocart-bar {
	float: none;
	margin: 0;
	padding: 0;
}

.owl-addtocart span.addtocart-button {
	width: 100%;
	text-align: center;
}

.owl-addtocart span.addtocart-button input.addtocart-button,
.owl-addtocart .notify {
	color: #fff !important;
	background: url("/templates/t3_bs3_blank/css/../images/buy.svg") 12px no-repeat;
	background-size: 20px 18px;
	background-color: #2aa8db;
	text-transform: uppercase;
	text-align: center;
	border: 1px solid #2aa8db;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 400;
	padding: 4px 12px 4px 40px;
	display: inline-block;
	vertical-align: middle;
	transition: all 0.3s ease-out;
}

.owl-addtocart span.addtocart-button input.addtocart-button:hover,
.owl-addtocart .notify:hover {
	background-color: #0385b7;
	transition: all 0.3s ease-out;
}

.owl-addtocart span.addtocart-button input.addtocart-button:active,
.owl-addtocart .notify:active {
	outline: 0;
}

.owl-addtocart>div[style="display:inline-block;"] {
	width: 100%;
}
/* Dots */

.owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
}

.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #BDC3C7;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 10px;
}

.owl-dots .owl-dot.active span {
	background: #2aa8db;
}
/* Nav */

.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}

.owl-nav {
	position: absolute;
	top: 50%;
	margin-top: -33px;
	width: 100%;
	z-index: -1;
}

.owl-prev {
	float: left;
	margin-left: -40px;
}

.owl-next {
	float: right;
	margin-right: -40px;
}

.owl-nav img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition: opacity 200ms ease;
}

.owl-nav img:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	transition: opacity 200ms ease;
}
/*
fix bugs
*/

.owl-addtocart span.addtocart-button input.addtocart-button,
.owl-addtocart .notify {
	height: auto;
}

.owl-addtocart span.addtocart-button {
	margin: 0;
}

.owl-carousel a:hover,
.owl-carousel a:active,
.owl-carousel a:focus,
.owl-addtocart .quantity-box,
.owl-addtocart .quantity-controls {
	background: none;
}

.owl-addtocart .quantity-box,
.owl-addtocart .quantity-controls {
	display: none;
}

.owl-carousel .product_badge img,
.owl-carousel .product_badge,
.owl-carousel .bit_badge_discount {
	z-index: 999999;
}
/*
Media
*/

@media (max-width: 768px) {
	.owl-product-name {
		min-height: 20px;
	}
}

@media (max-width: 845px) {
	.owl-nav {
		display: none;
	}
}

@media (min-width: 991px) and (max-width: 1050px) {
	.owl-nav {
		display: none;
	}
}

@media (min-width: 1200px) and (max-width: 1240px) {
	.owl-nav {
		display: none;
	}
}