/* ==================================
  Room thumbnail
===================================== */
.v2-room-item-thumb-container {
	position: relative;
	margin: 0 10px 0 0;
	width: 110px;
	height: 110px;
	overflow: hidden;
}

@media (max-width: 660px) {
	.v2-room-item-thumb-container {
		width: 60px;
		height: 60px;
	}
}

.v2-room-item-img {
	position: absolute;
	height: 100%;
}

.v2-room-item-img.v2-rectangular {
	left: 50%;
	margin-left: -70px;
	width: 140px;
}

@media (max-width: 660px) {
	.v2-room-item-img.v2-rectangular {
		margin-left: -40px;
		width: 80px;
	}
}

.v2-room-item-img.v2-square {
	width: 100%;
}

.v2-room-item-img.v2-wide {
	left: 50%;
	margin-left: -90px;
	width: 180px;
}


/* ========================
  Magnifying glass icon
=========================== */
.v2-has-gallery:after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	content: '\e823';
	font-family: "fontello";
	display: block;
	font-size: 20px;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,.9);
	cursor: pointer;
	transition: all .3s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

@media (max-width: 660px) {
	.v2-has-gallery:after {
		right: 5px;
		bottom: 5px;
		font-size: 16px;
	}

	.v2-has-gallery:hover:after {
		font-size: 20px;
	} 
}

.v2-has-gallery:hover:after {
	font-size: 26px;
}

/* ==============================
  Removing "broken image" effect
================================= */
.noPhoto .v2-room-item-thumb-container {
	display: none
}
