html,
body {
	height: 100%;
}

.wrap {
	height: 100%;
}

.wrap > .container {
    padding: 51px 0px 0px;
}

.wrap .container{
	width: 100%;
	height: 100%
}

.wrap > .container > .row{
	margin: 0px;
	height: 100%;
}

.map-box{
	overflow: hidden;
	padding: 0px;
	float: none;
	height: 100%;
}

.map-container{
	position: relative;
	width: 100%;
	height: 100%;
}

.map-container #map_canvas{
	position: fixed !important;
	height: auto;
	top: 51px;
	bottom: 60px;
	width: 75%;
	margin-bottom: 0px;
	border-radius: 0px;
	border-left: 1px solid #ccc;
	box-shadow: 0px 0px 7px #ccc;
}

.map-container #map_canvas.expanded{
	position: fixed !important;
	height: auto;
	width: auto;
	top: 51px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1000;
}

.footer {
	height: 60px;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	padding-top: 20px;
}

@media (max-width: 767px) {

	body{
		overflow-x: hidden;
	}

	.map-container #map_canvas{
		width: 100%;
		height: 100%;
		position: relative !important;
		top: auto;
		bottom: auto;
	}

	.side-content{
		float: none;
		clear: both;
		width: 75%;
		position: absolute;
		top: 51px;
		right: -75%;
		bottom: 60px;
		z-index: 100;
		box-shadow: 0px 0px 10px #999;
		background-color: #fff;
		transition: all 0.3s ease-out;
	}

	.side-content.expanded{
		right: 0px;
	}

}

@media (max-height: 480px) {

	.map-btn-options{
		top: 95px;
		left: 10px;
	}

	.map-btn-options .expand-map{
		display: none;
	}
}




