.regions_map {
	position: relative;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	background-color: #f1ebde;
	margin-bottom: 95px;
}

.regions_map .map {
	padding-bottom: 55.55555%;
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
}

.regions_map .map svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.regions_map .items {
	background-color: rgb(255, 255, 255);
  	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
	position: absolute;
    top: 60px;
    right: 70px;
	width: 285px;
	height: 80%;
    max-height: 682px;
    background-color: white;
    z-index: 20;
}

.regions_map .items .content {
	padding: 0 10px;
    height: calc(100% - 52px);
    background-color: white;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.regions_map .toggle-nav,
.regions_map .items .title {
  font-size: 18px;
  font-family: var(--pitch);
  color: rgb(255, 255, 255);
  font-weight: normal;
	text-transform: uppercase;
  line-height: 52px;
  background-color: #000;
  height: 52px;
  padding: 0 20px;
}

.regions_map .toggle-nav {
	display: flex;
	align-items: center;
	margin: 0;
	width: 100%;
	text-align: left;
}

.regions_map .toggle-nav i {
	margin-right: 15px;
}

.regions_map .items .item {
  font-size: 16px;
  font-family: var(--helvetica);
  color: var(--teal-link);
  font-weight: 700;
  margin-top: 20px;
}

.regions_map .items .item .item-inner a { padding: 0 15px; }

.regions_map .items ul{
	list-style-type: none;
	margin-left: 20px;
}

.regions_map .items ul li {
  font-size: 15px;
  font-family: var(--helvetica);
  font-weight: 700;
  color: var(--teal-link);
  line-height: 1.133;
}

.regions_map .items .item ul li a {
	padding-left: 15px;
	font-weight: normal;
}

.regions_map .items a{
  font-family: var(--helvetica);
  color: var(--black);
	font-weight: 700;
	display: block;
	height: 35px;
	line-height: 35px;
}

.regions_map .items a:hover,
.regions_map .items .item-inner.active a{
	background-color: rgb(242, 242, 242);
}
.regions_map #region_labels { pointer-events: none; }
.regions_map #regions .st2 { transition: fill 300ms ease; }

.regions_map #regions .st2.active,
.regions_map #regions .st2:hover,
.neighborhood_map #neighborhoods .active polygon,
.neighborhood_map #neighborhoods .active .st2 { fill: var(--teal); }

@media (max-width: 1024px) {
	.regions_map .items {
		top: 4%;
		right: 20px;
		height: 92%;
	}
}

@media (min-width: 881px) {
	.regions_map .toggle-nav { display: none; }
}

@media (max-width: 880px) {
	.regions_map .map {
		padding-bottom: 75%;
	}

	.regions_map .map svg {
		top: 50%;
		left: 50%;
		width: 215%;
		height: auto;
		transform: translate(-50%,-50%);
	}

	.regions_map .items-overlay {
		position: fixed;
		z-index: 900;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		pointer-events: none;
	}

	.regions_map.open-nav .items-overlay {
		pointer-events: all;
	}

	.regions_map .items {
		position: fixed;
		z-index: 1000;
		top: 0;
		right: 0;
		width: 100%;
		max-width: 300px;
		height: 100vh;
		max-height: none;
		box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
		background-color: white;
		transition: transform 200ms cubic-bezier(0, 0, .3, 1);
		transform: translateX(110%);
	}

	.regions_map.open-nav .items { transform: none; }

	.regions_map .items .content { padding-bottom: 30px; }
}

@media(min-width:64em) {
	.regions_map {
		margin-bottom: 200px;
	}
}
