.map-with-sidebar {
	background-color: #ebf0f3;
}

.map-with-sidebar .main-area-map {
	background-color: #ebf0f3;
	height: 325px;
	margin: -60px -20px 0;
}

.map-with-sidebar aside {
	position: relative;
	margin-top: -30px;
	padding: 40px;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(21, 70, 100, 0.1);
	border-radius: 5px;
}

.map-with-sidebar aside hr {
	margin-bottom: 25px;
}

.map-with-sidebar article {
	display: flex;
	justify-content: space-between;
}

.map-with-sidebar article .icon-container {
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #EFF4F7;
	border-radius: 5px;
	margin-top: 5px;
}

.map-with-sidebar article .content {
	width: calc(100% - 35px - 20px);
}

.map-with-sidebar aside .button {
	margin-top: 10px;
}

@media screen and (min-width: 768px) {
	.map-with-sidebar.map-with-sidebar {
		padding-right: 0;
	}
	
	.map-with-sidebar > .container {
		display: flex;
	}
	
	.map-with-sidebar .main-area-map {
		margin: -80px 0 -80px -30px;
		height: auto;
		width: calc(100% - 334px + 30px);
	}
	
	.map-with-sidebar aside {
		width: 334px;
		margin: 0;
		transform: translateX(-30px);
	}
}

@media screen and (min-width: 1024px) {
	.map-with-sidebar.map-with-sidebar {
		padding-right: 0;
	}
	
	.map-with-sidebar > .container {
		display: flex;
	}
	
	.map-with-sidebar .main-area-map {
		margin: -100px 0 -100px -60px;
		height: auto;
		width: calc(100% - 432px + 60px);
	}
	
	.map-with-sidebar aside {
		width: 432px;
		padding: 60px;
		margin: 0;
		transform: translateX(-60px);
	}
}

@media screen and (min-width: 1400px) {
	.map-with-sidebar > .container {
		display: flex;
	}
	
	.map-with-sidebar .main-area-map {
		margin: -120px 0 -120px -100px;
		height: auto;
		width: calc(100% - 432px + 100px);
	}
	
	.map-with-sidebar aside {
		transform: translateX(-100px);
	}
}