﻿.gallery-container
{
	/*border:1px #ddd solid ;*/
	padding:10px;
}
.cover
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 1;
	display: block;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

	.cover img
	{
		position: absolute;
		display: block;
		width: 50px;
		height: 50px;
		margin-top: -25px;
		margin-left: -25px;
		top: 50%;
		left: 50%;
		color: #ffffff;
		border-radius: 35px;
		text-align: center;
	}
	.cover h5
	{
		position: absolute;
		display: block;
		width: 100px;
		margin-top: 30px;
		margin-left: -50px;
		top: 50%;
		left: 50%;
		color: #ffffff;
		text-align: center;
	}

		.cover span i
		{
			width: 70px;
			height: 70px;
			text-align: center;
			display: block;
			padding: 0;
			margin: 0;
			margin-left:10px;
			line-height: 70px;
			vertical-align: middle;
			font-size: 30px;
		}
		.gallery-container > div
{
	padding-left: 0;
	padding-right: 0;
}

	.gallery-container > div .panel
	{
		border-radius: 0;
	}

		.gallery-container > div .panel .panel-heading
		{
			position: relative;
		}

			.gallery-container > div .panel .panel-heading:before
			{
				content: "";
				width: 14px;
				height: 14px;
				display: block;
				background: whitesmoke;
				position: absolute;
				top: -7px;
				left: 50%;
				margin-left: -7px;
				-webkit-transform: rotate(-45deg);
				-moz-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

		.gallery-container > div .panel .panel-title
		{
			text-align:center;
		}

		.gallery-container > div .panel .panel-body
		{
			height: 200px;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			cursor: pointer;
			position: relative;
		}

			.gallery-container > div .panel .panel-body:hover .cover
			{
				opacity: 0.7;
			}

				.gallery-container > div .panel .panel-body:hover .cover span
				{
					-webkit-animation: zoomInUp 1s both ease-in-out;
					-moz-animation: zoomInUp 1s both ease-in-out;
					animation: zoomInUp 1s both ease-in-out;
				}

