/**
 * @package   HLI Joomla! 3 Template
 * @version   1.0
 * @author    7Studio Tomasz Herudzinski http://www.7studio.eu
 * @copyright Copyright (C) 2009 - 2014 7Studio Tomasz Herudzinski
 * @license   Commercial - ThemeForest Regular License - http://themeforest.net/licenses/regular_extended
**/


/* Content Component Elements
-----------------------------------------------------------------------------------*/

/* Tooblar Icons - print,email,edit
-----------------------------------------------------------------------------------*/
/* image container */
.item-image {
	display: block;
	padding: 0;
	margin: 0;
	margin-bottom: 24px;
	max-width: 100%;
}

.item-image img  {
	max-width: 100%;
}

.item-image.pull-left {
	margin-right: 50px;
}

.item-image.pull-right {
	margin-left: 20px;
}

/* caption */
.item-image .img-caption-text {
	display: block;
	font-size: 11px;
	padding: 6px 10px;
	margin: 0;
	color: #565656;
	border-left: 1px solid #e5e5e5;
}

/* image hover */
.item-image-wrap {
	display: block;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
	width:100%;
	max-width: 100%;
}

.item-image-wrap a {
	width: 100%;
	height: 100%;
}

.item-image-wrap img {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
		 -o-transform: scale(1);
			transform: scale(1);
	-webkit-transform-origin: 50% 50%;
	   -moz-transform-origin: 50% 50%;
			transform-origin: 50% 50%;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
			transition: all .3s ease;
}

.item-image-wrap a:hover img {
	-webkit-transform: scale(1.15);
	   -moz-transform: scale(1.15);
	    -ms-transform: scale(1.15);
		 -o-transform: scale(1.15);
			transform: scale(1.15);
}

.item-image-wrap .item-image-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: #000000;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
			transition: all .3s ease;
}

.item-image-wrap a:hover .item-image-backdrop {
	visibility: visible;
	opacity: 0.80;
}

.item-image-wrap .item-image-backdrop:before {
	content: "";
	z-index: 11;
	display: block;
	width: 25px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -12px;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
			transition: all .3s ease;
	-webkit-transform: translateX(-150px);
	   -moz-transform: translateX(-150px);
			transform: translateX(-150px);
}

.item-image-wrap .item-image-backdrop:after {
	content: "";
	z-index: 12;
	display: block;
	width: 1px;
	height: 25px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
			transition: all .3s ease;
	-webkit-transform: translateY(-150px);
	   -moz-transform: translateY(-150px);
			transform: translateY(-150px);
}

.item-image-wrap a:hover .item-image-backdrop:before {
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

.item-image-wrap a:hover .item-image-backdrop:after {
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

/* images with caption inside article content
-----------------------------------------------------------------------------------*/
