#map-wrapper {
	display: flex;
	position: relative;
	padding: 0 10px;
	justify-content: center;
}
#map-wrapper .left-side {
	max-width: 470px;
	position: relative;
}
#map-wrapper .left-side #state_map {
	height: 396px;
	position: absolute;
	z-index: 0;
	pointer-events: none;
	left: 50%;
	transform: translateX(-50%);
	top: 42px;
}
#map-wrapper .left-side .info {
	position: relative;
	z-index: 1;
	max-width: 475px;
	margin-top: 65px;
}
#map-wrapper .left-side .info h1 {
	font-size: 45px;
	line-height: 53px;
	font-weight: 700;
	margin-bottom: 14px;
}
#map-wrapper .left-side .info h3 {
	font-size: 26px;
	color: #f65631;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 12px;
	line-height: 28px;
}
#map-wrapper .left-side .info p {
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
}

/*Right side*/

#map-wrapper .right-side {
	position: relative;
	height: 456px;
	width: 633px;
}
#map-wrapper .right-side .desktop svg {
	height: 456px;
	width: 633px;
}
#map-wrapper .right-side #map {
	width: 100%;
	height:100%;
}
@media screen and (min-width: 64em) {
	.right-side .mobile {
		display: none;
	}
}
@media (orientation: landscape) and (min-width: 40em) and (max-width: 64em) {
	.right-side .desktop {
		display: flex!important;
	}
	.right-side .mobile {
		display: none!important;
	}
}
@media only screen and (max-width: 64em) {
	#map-wrapper {
		flex-direction:column;
	}
	#map-wrapper > div {
		align-self: center;
	}
	.right-side .desktop {
		display: none;
	}
}
@media only screen and (max-width: 40em) {
	#map-wrapper .right-side {
		width: 100%;
		height: auto;
	}
	#map-wrapper .right-side a {
		cursor: pointer;
	}
}
