span.find-beer {
	cursor: pointer;
	margin-bottom: 15px;
}
.toggle-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	cursor: pointer;
}
.toggle-wrap h4 {
	margin: 0;
	font-family: Anton,sans-serif;
	font-size: 24px;
}
.location-toggle {
	display: block;
	height: 5px;
	width: 30px;
	background-color: #000;
	position:relative;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: ease all .25s;
}
.location-toggle::after {
	content: "";
	position: absolute;
	height: 5px;
	width: 30px;
	transform: rotate(-90deg);
	background-color: #000;
}
.toggle-wrap.closed .location-toggle {
	transform: translateY(-50%) rotate(0);
}
.location-grid-wrap {
	position: relative;
	background-color: #f1f1f1;
	margin-bottom: 15px;
}
.location-grid {
	display: flex;
	flex-wrap: wrap;
}

.location-grid > div {
	margin: 15px;
	width: calc(50% - 30px);
}

.location-grid > div p {
	margin: 0;
}