/* bof */

/**
 * Listings
 */

.listing-container
{
	width: 20%;
	float: left;
	display: inline-block;
}
.listing
{
	margin: 20px;
	border: 1px solid #004259;
	overflow: hidden;
	cursor: pointer;
}
.listing .listing-image
{
	overflow: hidden;
}
.listing .listing-image img
{
	width: 100%;
	float: left;
}
.listing .listing-address
{
	padding: 10px;
	overflow: hidden;
}
.listing .listing-address span
{
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1px;
}
.listing .listing-infos
{
	border-top: 1px solid #004259;
	background-color: #004259;
	padding: 10px;
	overflow: hidden;
}
.listing .listing-infos .listing-price
{
	float: right;
	font-weight: 700;
	font-size: 24px;
	color: #fff;
}

#listing-overlay
{
	display: none;
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 66, 89, 0.85);
	text-align: center;
}
#listing
{
	display: none;
	/*position: fixed;*/
	top: 0;
	/*right: 0;*/
	width: 100%;
	max-width: 1200px;
	background-color: #fff;
	height: 100%;
	align: center;
	margin: 0 auto;
	text-align: left;
	overflow-y: scroll;
	/*-webkit-overflow-scrolling: touch;*/
}
#listing .one-close-bar
{
	position: fixed;
	z-index: 999999;
	width: 100%;
	max-width: 1200px;
	height: 70px;
	padding-top: 20px;
	padding-right: 20px;
}
#listing .one-close
{
	cursor: pointer;
	float: right;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #004259;
	color: #fff;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
}
#listing .one-title
{
	padding: 50px;
}
#listing .one-images
{
	overflow: hidden;
	width: 100%;
}
#listing .one-image
{
	width: 100%;
	overflow: hidden;
}
#listing .one-images img
{
	width: 100%;
	float: left;
}
#listing .one-description
{
	padding: 50px;
}

#listing span
{
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#listing h1
{
	font-size: 30px;
	font-weight: 700;
}
#listing h2
{
	font-size: 24px;
	font-weight: 500;
}

@media (max-width: 1600px)
{
	.listing-container
	{
		width: 25%;
	}
}

@media (max-width: 1200px)
{
	.listing-container
	{
		width: 33.333333%;
	}
}

@media (max-width: 800px)
{
	.listing-container
	{
		width: 50%;
	}
}

@media (max-width: 500px)
{
	.listing-container
	{
		width: 100%;
	}
}

/* eof */
