/* square */

.elasto-container .elasto-square {
	cursor: pointer;
}


/* square background */

.elasto-container .elasto-square-bg {
	opacity: 1;
	-webkit-transition: box-shadow 0.15s ease-out;
	transition: box-shadow 0.15s ease-out;
}


/* square text overlay */

.elasto-container .elasto-square-wrap {
	bottom: -110px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.elasto-container .elasto-square-title {
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
}

.elasto-container .elasto-square-description {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 12px;
}


/* hover/active effects */

.elasto-container .elasto-square:hover .elasto-square-wrap {
	bottom: 0;
}