#object-hover-container{
	position: absolute;
	display: block;
	text-decoration: none;
	
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	z-index: 3;

	padding-left: 19px;
	padding-top: 10px;
	padding-right: 19px;

	padding-bottom: 14px;

	color: white;
	background-color: rgba(0,0,0,0.4);
}

#object-hover-info {
	position: absolute;
	display: block;
	text-decoration: none;
	left: 50%;
	top: 50%;
	margin-left: -250px;
	width: 500px;
	height: 500px;
	box-sizing: border-box;
	z-index: 3;

	color: white;

	/*box-shadow: 3px 3px 6px rgba(0,0,0,0.3);*/

	pointer-events: none;
	opacity: 0;
	transition: 0.5s;

	-webkit-animation: bounce 0.5s 1 both;
	animation: bounce 0.5s 1 both;
	background: url(../img/hover-bg.png) 0 0 / 100% 100% no-repeat;
}

#object-hover-info .wrapper
{
	position: relative;
	padding: 20%;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	color: #fff;
}

@-webkit-keyframes bounce {
	0% { 
		transform: scale(1);
	}
	25% { 
		transform: scale(1.1);
	}
	50% { 
		transform: scale(0.95);
	}
	75% {
		transform: scale(1.025);
	}
	100% { 
		transform: scale(1);
	}
}

@keyframes bounce {
	0% { 
		transform: scale(1);
	}
	25% { 
		transform: scale(1.1);
	}
	50% { 
		transform: scale(0.95);
	}
	75% {
		transform: scale(1.025);
	}
	100% { 
		transform: scale(1);
	}
}

#object-hover-info:hover .object-hover-explore {
	-webkit-animation: bounce 0.5s 1 both;
	animation: bounce 0.5s 1 both;
}

#object-hover-info.visible {
	opacity: 1;
	pointer-events: all;
}

#object-hover-info > * {
	vertical-align: top;
}

.object-hover-title {
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 14px;
	width: 202px;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 4px;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.object-hover-text {
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 20px;
    max-height: 195px;
    overflow: hidden;
}

.object-hover-name{
	text-align: center;
	font-size: 14px;
	line-height: 1.8em;
	font-weight: bold;
	position: absolute;
	bottom: 100px;
	width: 100%;
	left: 0;
	
}

.object-hover-name span
{
	display: block;
	font-size: 12px;
	font-weight: normal;
	opacity: 0.7;
        width: 350px;
        margin: 0 auto;
}

.object-hover-date{
	font-size: 12px;
	text-align: center;
}
.object-hover-explore {
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 14px;

	display: inline-block;
	text-transform: uppercase;

	border: 1px solid white;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 3px;
	padding-bottom: 3px;
}

#object-hover-info .object-category-thumb {
	width: 170px;
	height: 100%;
	position: absolute;
	border: 0;
	top: 0px;
	right: 7px;
}

#object-hover-info .object-category-thumb img {
	border: 0;
}