.warp_mid_outer {
	width: 100%;
	margin: 0px auto;
	padding: 2% 0%;
}
.warp_mid_inner {
	width:70%;
	margin:0 auto;
	padding:0;
}
#map-area .left-section {
	float: left;
	width: 100%;
	margin: -3% 5% 0% 0%;
	padding:0%;
}
.map-image-section {
	position: relative;
	overflow: visible;
}
.map-image-section.map img {
	width: 100%;
}
img.responsive-img, video.responsive-video {
	max-width: 100%;
	height: auto;
}
.map .pin {
	position: absolute;
	animation-name: pin-overflow;
	animation-duration: 0s;
	animation-timing-function: ease;
	animation-delay: 0.8s;
	animation-direction: normal;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-play-state: running;
}
.map .pin .pin-circle {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	border-radius: 100%;
	z-index: 1;
	margin: 2px;
	border: 1px solid #fff;
	width: 10px;
	height: 10px;
	position: relative;
	background: rgba(19, 37, 54, 0.9);
	cursor: pointer;
	transition: all 0.3s ease;
}
.map .pin .pin-info {
	width: 230px;
	position: absolute;
	z-index: 0;
	top: 0;
	overflow: hidden;
	left: 80px;
	pointer-events: none;
}
.map .pin .pin-info .place {
	color:#FFF;
	width: auto;
	margin-left: -20px;
	background: #034ea2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	margin-bottom: 5px;
	position: absolute;
	/*left: 100%;*/
	transition: left 0.3s ease;
	text-transform: uppercase;
	padding: 10px 20px;
	opacity: 0;
	animation-name: place-bounce;
	animation-duration: 0.4s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-direction: alternate;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-play-state: running;
	font-size:17px;
}
.map .pin .pin-info .place .triangle {
	position: absolute;
	left: -20px;
	top: 10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 20px solid #034ea2;
	border-left: 20px solid transparent;
}
.map .pin.pin-hover {
	z-index: 10 !important;
	overflow: visible !important;
	animation-name: pin-overflow-hover;
	animation-duration: 0s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-direction: normal;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-play-state: running;
}
.map .pin.pin-hover .pin-circle {
	width: 40px;
	height: 40px;
	margin-left: -10px;
	margin-top: -10px;
	background:rgba(19, 37, 54, 0.9);
	transition: all 0.3s ease;
}
.map .pin.pin-hover .pin-info {
	pointer-events: all;
	overflow: visible;
}
.map .pin.pin-hover .place {
	animation-name: place;
	animation-duration: 0.4s;
	animation-timing-function: ease;
	animation-delay: 0.4s;
	animation-direction: alternate;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-play-state: running;
	border-radius: 0px 4px 4px 4px;
}