/* product slider */
.product-slider {}
.product-slider .product { padding: 0; margin: 0; }
.product-slider .product a { text-decoration: none; }
.product-slider .product:before { content: none; }
.product-slider .product .image {
	height: 214px;
	width: 214px;
	position: relative;
	display: block;
	margin: 0 auto;
	margin-bottom: 30px;
}
.product-slider .product .image img {
	position: absolute;
	width: auto;
	max-height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.product-slider .product .description { display: none; }
.product-slider .product .title {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 18px;
	font-family: Antic Slab;
}
.product-slider .owl-carousel .owl-nav { text-align: center; }
.product-slider .owl-carousel .owl-nav > div {
	height: 75px;
	width: 75px;
	display: inline-block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	margin: 0 4px;
	padding-top: 22px;
	opacity: .5;
	position: absolute;
	top: calc(50% - 37.5px);
	top: -webkit-calc(50% - 37.5px);
	top: -moz-calc(50% - 37.5px);
	top: -ms-calc(50% - 37.5px);
	top: -o-calc(50% - 37.5px);
	left: -30px;
	transition: opacity .25s;
	-webkit-transition: opacity .25s;
	-moz-transition: opacity .25s;
}
.product-slider .owl-carousel .owl-nav > div:hover { opacity: 1; }
.product-slider .owl-carousel .owl-nav .owl-next { left: auto; right: -30px; }
.product-slider .owl-carousel .owl-nav .owl-prev:before,
.product-slider .owl-carousel .owl-nav .owl-next:before {
	content: '\f177';
	font-size: 40px;
	margin-right: 5px;
	transition: color .25s;
	-webkit-transition: color .25s;
	-moz-transition: color .25s;
}
.product-slider .owl-carousel .owl-nav .owl-next:before { content: '\f178'; margin-left: 7px; margin-right: 0; }
.product-slider .owl-carousel .owl-nav .owl-prev:hover:before,
.product-slider .owl-carousel .owl-nav .owl-next:hover:before { color: #b02420; }

/* product slider [small] */
.product-slider.type-1 { max-width: 700px; margin: 0 auto; }
.product-slider.type-1 .product .title { font-size: 16px; }
.product-slider.type-1 .product .image { width: 130px; height: 130px; }

/* product block */
.product-block { margin-top: 50px; }
.product-block:first-child { margin-top: 0px; }
.product-block .image {
	display: block;
	margin-bottom: 20px;
}

/* product block [2] */
.product-block-2 {}
.product-block-2 .images {
	display: flex;
	margin: -5px;
}
.product-block-2 .images .item {
	padding: 5px;
	display: flex;
	align-items: center;
	width: 50%;
}
.product-block-2 .images .item img { width: 100%; }

	/* media specific styles */
	@media(min-width: 768px){
		/* product block [2] */
		.product-block-2 {
			display: flex;
			flex-direction: row;
			margin: -10px;
		}
		.product-block-2 .images {
			width: 50%;
			padding: 10px;
		}
		.product-block-2 .text {
			width: 50%;
			padding: 10px;
		}
	}
	@media(min-width: 1024px){
		/* product slider */
		.product-slider .owl-carousel .owl-nav .owl-prev { left: -80px; }
		.product-slider .owl-carousel .owl-nav .owl-next { left: auto; right: -80px; }

		/* product block */
		.product-block {}
		.product-block .image {
			display: table-cell;
			vertical-align: middle;
			width: 50%;
			padding-right: 22.5px;
		}
		.product-block .text {
			display: table-cell;
			vertical-align: middle;
			width: 50%;
			padding-left: 22.5px;
		}
	}
	@media(min-width: 1200px){
		.product-slider .product .title { font-size: 22px; margin-bottom: 5px; }
		.product-slider .product .description {
			display: inline-block;
			font-size: 16px;
			width: 100%;
			text-align: center;
		}
	}