.content-banner {
    display: none;
}

.results-counter {
	color: #777;
	padding: 9px 0;

}

.top-archive {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}

.top-archive .sort {
	width: 50%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.top-archive .sort .label {
	display: none;
}


.map-container {
	margin-bottom: 25px;
	height: 320px;
	overflow: hidden;
}

.map-container.active {
	height: 400px;
}

.map-placeholder {
	height: 80px;
	background: url(../img/map.jpg) center/cover no-repeat;
	position: relative;
}

#map {
	height: 0;
	-webkit-transition: height .4s;
	-o-transition: height .4s;
	transition: height .4s;
}

#map.active {
	width: 100%;
	height: 290px;
	background: #ccc;
}

.map-placeholder:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.4);
}

#btn-show-on-map {
	position: absolute;
	width: 140px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#btn-hide-map {
	display: none;
	margin-top: -27px;
	opacity: .7;
}

.pagination {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}

.pagination a,
.pagination .current {
	display: block;
	padding: 4px 6px;
	margin: 0 6px;
	border: 1px solid #fccb46;
}

.pagination a.disabled,
.pagination .current {
	pointer-events: none;
	/*color: #fff;*/
	background: #fccb46;
}

.pagination a:not(.disabled):hover {
	background: rgba(45,111,156,.1);
}

@media (min-width: 768px) {
	.top-archive .sort .label {
		color: #777;
		padding-right: 10px;
		display: block;
	}

	#map.active {
		height: 500px;
	}

	#btn-hide-map {
		margin-top: -30px;
	}
}


@media (min-width:1199px) {
	.content-banner {
		display: block;
		margin-bottom: 25px;
	}

	.content-banner img {
		width: 100%;
		max-width: 100%;
	}

	#btn-show-on-map {
		width: 200px;
	}

	#map.active {
		height: 600px;
	}

	#btn-hide-map {
		margin-top: -46px;
	}

	.pagination a {
		padding: 4px 8px;
	}
}

.phone {
	margin: 7px 0;
}

