/*
 * Table of Contents
 *
 *
 ********/

/* Map */
#eastvillage-map {
	width: 100%;
	height: 500px;
}

/* Map elements */
.gmap-window-copy h2 {
    font-size: 1.25em;
    margin-top: 0.25em;
    margin-bottom: 0;
}

/* Map Filter Options */
.interactive-map-options--wrapper {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.interactive-map-options--item {
    width: 25%;
    text-align: center;
    padding: 1em;
    background-color: #f26835;
    border: 1px solid white;
    position: relative;
}

.interactive-map-options--item input[type="checkbox"] {
	position: relative;
	top: -2px;
}

.interactive-map-options--item span {
	margin-left: 10px;
    font-weight: 700;
    color: white;
}

@media only screen and (max-width: 767px) {
	.interactive-map--wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	#eastvillage-map {
		order: 1;
	}

	form#interactive-map-filters {
		order: 2;
	}

	.interactive-map-options--item {
		width: 50%;
	}

	.interactive-map-options--item input[type="checkbox"] {
		top: 0px;
	}
}

@media only screen and (max-width: 530px) {
	.interactive-map-options--item {
		width: 100%;
		padding: 0.5em;
	}
}
