#ParkMaps {
	display:flex;
	flex-wrap:wrap;
	position:relative;
	height:70vh;
	height:max(400px,40vh);
}

#ParkMaps > .fullscreen-bar {
	height:64px;
	width:20%;
	position:absolute;
	top:0;
	right:0;
	z-index:10;
	display:flex;
	flex-direction:row-reverse;
	align-items:center;
}
#ParkMaps > .fullscreen-bar > p {display:none;}
#ParkMaps > .fullscreen-bar > .fs-btn {
	margin-right:10px;
	width:48px;
	height:48px;
	background-color:white;
	display:block;
	font-size: 24px;
	text-align: center;
    line-height: 48px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
	cursor:pointer;
}

#ParkMaps > div:not(.fullscreen-bar) {
	height:100%;
	overflow:hidden;
}

#ParkMaps > .park-list {
	width:40%;
	overflow-y:scroll!important;
}
#ParkMaps > .map-parent {
	width:60%;
}

#ParkMaps > .map-parent > #map {
	height:100%;
	width:100%;
}

#ParkMaps:fullscreen {
	z-index:400;
	background-color:white;
}

.park-list {
    display:flex;
    flex-direction:column;
}

.park-list > .item-park:first-child {border-top:1px solid rgba(0,0,0,0.2)}


.park-list > .item-park {
    border-bottom:1px solid rgba(0,0,0,0.2);
	background-color:#0c294f;
	color:white;
}
.park-list > .item-park:nth-child(even) {background-color:#742e34;}

.park-list > .item-park > .item-park-header {
    min-height:42px;
    line-height:42px;
    padding-left:15px;
    font-size:20px;
    cursor:pointer;
}

.park-list > .item-park > .item-park-details {
    max-height:0;
    transition: max-height 0.3s;
    overflow:hidden;
}

.park-list > .item-park.active > .item-park-details {
    max-height:300px!important;
}

#ParkMaps:fullscreen > .fullscreen-bar > .fs-btn i:before {
	content:'\f066';
}


@media (max-width: 500px) {
	#ParkMaps {
		flex-direction:column;
		height:150vh;
		flex-wrap:nowrap;
	}
	
	#ParkMaps > div:not(.fullscreen-bar) {
		width:100%;
		height:50%;
	}
	
	#ParkMaps > .map-parent { order:1; }
	#ParkMaps > .park-list { order:2; }
}
/* IE fix */
@media screen\0 {
	.park-list > .item-park > .item-park-details {
    min-height:0;
    transition: min-height 0.3s;
}

.park-list > .item-park.active > .item-park-details {
    min-height:300px!important;
}
}