#scroll_fel_btn {
	display: none !important;
}

footer {
padding-top: 16px !important;
}
	#layout {
		display: flex;
		height: 80vh;
	}

	#sidebar {
		width: 340px;
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		border-right: 1px solid #ddd;
	}

	#search-box {
		position: sticky;
		top: 0;
		z-index: 10;
		background: #fff;
		border-bottom: 1px solid #ddd;
		padding: 12px 16px;
		flex-shrink: 0;
	}

	#search-box input {
		width: 100%;
		padding: 8px 10px;
		font-size: 14px;
		border: 1px solid #ccc;
		border-radius: 4px;
	}

	#office-list {
		overflow-y: auto;
		flex: 1;
	}

	#map {
		flex: 1;
	}

	.office-item {
		padding: 12px 16px;
		border-bottom: 1px solid #eee;
		cursor: pointer;
	}

	.office-item:hover {
		background: #f5f5f5;
	}

	.office-item.selected {
		background: #eaf1ff;
	}

	.office-item h3 {
		margin: 0 0 4px 0;
		font-size: 15px;
		color: #1a4fd6;
	}

	.office-item p {
		margin: 2px 0;
		line-height: 1.4;
	}

	.marker-pin {
		width: 26px;
		height: 26px;
		border-radius: 50% 50% 50% 0;
		background: #1a4fd6;
		position: absolute;
		transform: rotate(-45deg);
		left: 50%;
		top: 50%;
		margin: -26px 0 0 -13px;
		border: 2px solid #fff;
		box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}

	.marker-pin.selected {
		background: #e2451c;
	}

	@media (max-width: 768px) {

		#layout {
			flex-direction: column;
		}

		#map {
			flex: none;
			height: 50vh;
			order: 1;
		}

		#sidebar {
			width: 100%;
			flex: none;
			height: 40vh;
			order: 2;
			border-right: none;
			border-top: 1px solid #ddd;
		}

	}
