.section-map {
	position: relative;	
}

.map-toggle {
	font-size: 24px;
	color: #1B9CFC;
	position: absolute;
	right: 20px;
	top: 0;
	z-index: 10;
	cursor: pointer;
	-khtml-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.map-toggle.active {
	-khtml-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
	z-index: 20;
}

.toggle-item {
	width: 100%;
	display: none;
}

.toggle-item:first-of-type {
	display: block;
}

.map-toggle .svg-icon svg {
	width: 20px;
	max-height: 20px;
	margin-bottom: 3px;
}

.section-map .map-back {
	position: absolute;	
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ccc;
	overflow: hidden;
	z-index: 1;
}

.section-map .map-container {
	position: relative;	
	background-color: #fff;
	z-index: 5;	
}

.section-map .map-container .map-name{
	padding: 2rem;	
	font-size: 1.5rem;
	line-height: 1.2;	
}

.section-map .map-container .map-line{
	border-top: 1px solid #DDEDFF;	
	margin: 0 2rem;
}

.section-map .map-container .map-description{
	padding: 2rem;	
	padding-bottom: 4rem;
}

.section-map .map-container .map-description .map-item:not(:last-child){
	margin-bottom: 1.5rem;	
}

.section-map .map-container .map-description .map-item .svg-icon{
	margin-right: 1.25rem;	
	position: relative;
}

.section-map .map-container .map-description .map-item .svg-icon::after {
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
	background: #9AECDB;
	border-radius: 50%;
	width: .7rem;
	height: .7rem;
	z-index: 0;
}

.section-map .map-container .map-description .map-item .svg-icon svg {
	width: 1rem;
	max-height: 1rem;
	vertical-align: -.125em;
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	
	.section-map {
		margin-bottom: 3rem;
	}
	
	.map-container {
		-moz-box-shadow: 0px 10px 20px #D6E6EF;
		-webkit-box-shadow: 0px 10px 20px #D6E6EF;
		box-shadow: 0px 10px 20px #D6E6EF;
	}
	
	.map-toggle {
		top: 5px;
		font-size: 1rem;
	}
	
}