.map-container {
	border-bottom: 20px solid #00005C;
}
.map-col {
	padding: 10px 50px;
}
.map-svg {
	overflow: hidden;
	position: relative;
	/* max-height: 100vh;
	min-height: 100vh; */
	max-height: calc(100vw * 0.53842);
	min-height: calc(100vw * 0.53842);
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
	.map-svg {
		max-height: calc(100vw * 0.53842 * 1.2);
		min-height: calc(100vw * 0.53842 * 1.2);	
	}
}
.select-tip {
	font-family: var(--font-family-exo);
	font-size: var(--font-size-16);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-18);
	color: var(--medGray);
	padding: 25px;
	text-align: center;
	opacity: 1;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	transition: opacity 0.5s ease-in-out;
	pointer-events: none;
}
.map-svg .select-tip.inactive {
	opacity: 0;
}
/* .map-svg.focus svg {
	transform: scale(1.5);
	cursor: grab;
} */
.map-svg {
	cursor: grab;
}
.map-svg svg text {
	pointer-events: none;
}
.map-svg[zoomLevel="1"] svg {
	/* transform: scale(1.2); */
	width: 100vw;
	height: 771px;
}
.map-svg[zoomLevel="2"] svg {
	/* transform: scale(1.5); */
	width: calc(100vw * 1.2);
	height: calc(771px * 1.2);
	transform-origin: bottom right;
	/* transform: translateX(calc(100vw * -0.1)); */
}
.map-svg[zoomLevel="3"] svg {
	/* transform: scale(1.8); */
	width: calc(100vw * 1.5);
	height: calc(771px * 1.5);
	/* transform: translateX(calc(100vw * -0.25)); */
}
.map-svg[zoomLevel="4"] svg {
	width: calc(100vw * 1.8);
	height: calc(771px * 1.8);
}
.map-svg[zoomLevel="5"] svg {
	width: calc(100vw * 2.1);
	height: calc(771px * 2.1);
}
.map-svg[zoomLevel="6"] svg {
	/* width: calc(100vw * 2.4);
	height: calc(771px * 2.4); */
	transform: scale(2.4);
}
.map-svg[zoomLevel="7"] svg {
	/* width: calc(100vw * 2.7);
	height: calc(771px * 2.7); */
	transform: scale(2.7);
}
.map-svg[zoomLevel="8"] svg {
	/* width: calc(100vw * 3);
	height: calc(771px * 3); */
	transform: scale(3);
}
.map-svg[zoomLevel="9"] svg {
	/* width: calc(100vw * 3.3);
	height: calc(771px * 3.3); */
	transform: scale(3.3);
}
.map-svg[zoomLevel="10"] svg {
	width: calc(100vw * 3.6);
	height: calc(771px * 3.6);
}
/* .map-svg[zoomLevel="1"].zoomOut svg {
	transform: scale(1);
}
.map-svg[zoomLevel="2"].zoomOut svg {
	transform: scale(1.2);
}
.map-svg[zoomLevel="3"].zoomOut svg {
	transform: scale(1.5);
} */
.map-svg svg {
	width: 100%;
	transition: width 2s ease-in-out, height 2s ease-in-out, transform 1s ease-in-out;
	transform-origin: center center;
}
svg > g {
	opacity: 0.7;
}
.spot { 
	fill: #00005C; 
	cursor: pointer;
}
.spot.dc {
	fill: #000000;
}
.spot.selected { 
	fill: #FF0000 !important;
	pointer-events: auto;
	stroke: none;
	r: 1.8px;
}
.spot2 { 
	fill: #ff0000; 
	display: none; 
}

.map-info {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
	border-right: 1px solid #000;
	min-width: 200px;
	background-color: rgba(0,0,0,0.75);
	z-index: 2;
	opacity: 0;
	/* transition: all 0.2s ease-in-out;  */
	border-radius: 15px;
	pointer-events: none;
}
.map-info.active {
	opacity: 1;
	pointer-events: auto;
}
.map-info .info-wrapper {
	width: 380px;
}
.map-info .info-header {
	padding: 15px 20px;
	color: #00CBFE;
	font-size: var(--font-size-18); 
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-22);
	border-bottom: 1px solid #fff;	
}
.map-info .info-header .closebtn {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	z-index: 3;
}
.map-info .info-header .closebtn img {
	width: 15px;
}
.map-info .info-location {
	display: flex;
}
.map-info .info-thumb {
	flex-basis: 45%;
	padding: 20px;
}
.map-info .info-thumb-dummy {
	padding: 10px;
}
.map-info .info-address-box {
	flex-basis: 55%;
	padding: 20px 20px 20px 0px;
}
.map-info .info-address {
	font-size: var(--font-size-14);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-18);
	color: #fff;
	margin-bottom: 20px;
}
.map-info .info-desc {
	font-size: var(--font-size-14);
	line-height: var(--line-height-18);
	color: #fff;
}
.map-info .info-specs {
	display: flex;
	background-color: rgba(255,255,255,0.5);
}
.map-info .info-specs .detail-wrapper {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: relative;
}
.map-info .info-specs > div {
	flex-basis: 50%;
	color: #fff;
	text-align: center;
	padding: 20px;
	height: 100px;
	position: relative;
}
.map-info .info-specs > div:first-child::after {
	  content: '';
	  position: absolute;
	  top: 20%;
	  right: 0px;
	  width: 1px;
	  height: 60%;
	  border-right: 1px solid #fff;
	  display: inline-block;
}
.map-info .info-specs .metric {
	font-family: var(--font-family-exo);
	font-size: var(--font-size-26);
	font-weight: var(--font-weight-extrabold);
	line-height: var(--line-height-26);
}
.map-info .info-specs .metric span {
	font-size: var(--font-size-16);
}
.map-info .info-cta {
	background-color: #000;
	display: flex;
	padding: 15px 20px;
	justify-content: end;
	border-radius: 15px;
}
.map-info .info-cta a {
	color: #fff;
	font-family: var(--font-family-exo);
	font-size: var(--font-size-18);
	font-weight: var(--font-weight-extrabold);	
	line-height: var(--line-height-18);
}
.map-info .info-cta img {
	width: 15px;
	margin-left: 10px;
}
#map-tour-float {
	transition: all 0.5s ease-in-out;
}
#map-tour-float.inactive {
	opacity: 0;
	pointer-events: none;
}
.map-tour {
	display: flex;
	/* display: none; */
	width: 280px;
	position: absolute;
	top: 20px;
	right: 40px;
	cursor: pointer;
}
.map-tour .tour-text {
	background-color: #00005C;
	color: #fff;
	text-align: center;
	padding: 15px 20px;
	flex-basis: 85%;
}
.map-tour .tour-arrow {
	background-color: #00CBFE;
	position: relative;
	flex-basis: 15%;
}
.map-tour .tour-arrow img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 22px;
	height: 22px;
}

.map-tour-controls {
	display: flex;
	width: 200px;
	position: absolute;
	top: 20px;
	right: 50px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease-in-out;
}
.map-tour-controls.active {
	opacity: 1;
	pointer-events: auto;
}
.map-tour-controls .pause-tour,
.map-tour-controls .stop-tour {
	pointer-events: none;
	padding: 10px;
	border: 1px solid #000;
}
.map-tour-controls.active .pause-tour,
.map-tour-controls.active .stop-tour {
	cursor: pointer;
	pointer-events: auto;
	display: flex;
}
.map-tour-controls .pause-tour::after {
	content:'';
	position: relative;
	top: 2px;
	background-image: url(/wp-content/themes/restly-child/assets/image/icons/pause-icon.svg);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
	margin-left: 5px;	
}
.map-tour-controls .pause-tour.paused::after {
	background-image: url(/wp-content/themes/restly-child/assets/image/icons/play-icon.svg);
}
.map-tour-controls .stop-tour::after {
	content:'';
	position: relative;
	top: 2px;
	background-image: url(/wp-content/themes/restly-child/assets/image/icons/stop-icon.svg);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
	margin-left: 5px;	
}

.map-controls {
	position: absolute;
	top: 100px;
	right: 40px;
}	
.map-controls .resetBtn {
	cursor: pointer;
}
.map-controls .zoomIn, .map-controls .zoomOut {
	cursor: pointer;
	width: 50px;
}
.map-controls .zoomOut {
	margin-top: -8px;
}
#intermap {
	position: relative;
}
.dc-list-wrapper {
	display: flex;
}
.dc-list-wrapper .dc-list-nav {
	flex-basis: 30%;
}
.dc-list-wrapper .dc-list-content {
	flex-basis: 70%;
}
.dc-list-wrapper .npItem-header {
	background-color: #00005C;
	color: #fff;
	padding: 10px 30px 10px 50px;
	font-family: var(--font-family-exo);
	font-weight: var(--font-weight-bold);
	text-align: left;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid #999;
}
.dc-list-wrapper .npItem-header:after {
	content: '';
	position: absolute;
	top: 15px;
	right: 15px;
	background: url(/wp-content/themes/restly-child/assets/image/icons/arrow-down-white.svg);
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
	background-size: cover;	
}	
.dc-list-wrapper .npItem-header.expand:after {
	transform-origin: center center;
	transform: rotate(180deg);
}
.dc-list-wrapper .npItem-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding: 0px;
	margin-bottom: 0px;
	opacity: 0;
	height: 0;
	transition: opacity 0.1s ease-in-out, height 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.dc-list-wrapper .npItem-wrapper.expand {
	height: auto;
	opacity: 1;
	padding: 10px 30px 10px 50px;
	margin-bottom: 30px;
	font-style: italic;
	color: #333;
}
.dc-list-wrapper .npItem-wrapper .npItem {
	width: 100%;
	margin-top: 20px;
}
.dc-list-wrapper .npItem-wrapper.expand .npItem {
	opacity: 1;
	pointer-event: auto;
	cursor: pointer;
}
.dc-list-content {
	background-color: #DDDDDD;
	max-height: 100vh;
	overflow-y: scroll;
	overflow-x: hidden;	
}
.dc-list-content .dc-detail-item {
	background-color: #f2f2f2;
	display: flex;
	margin-bottom: 30px;
}
.dc-list-content .dc-detail-item .col-1 {
	flex-basis: 30%;
	font-size: var(--font-size-14);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-18);
	padding: 30px;
}
.dc-list-content .dc-detail-item .col-2 {
	flex-basis: 54%;
	padding: 30px 30px 30px 0px;
	position: relative;
}
.dc-list-content .dc-detail-item .col-2  .detail-title {
	font-weight: var(--font-weight-bold);
	margin-bottom: 10px;
}
.dc-list-content .dc-detail-item .col-3 {
	flex-basis: 15%;
}
.dc-list-content .dc-detail-item .col-1 img {
	width: 100%;
	margin-bottom: 5px;
}
.dc-list-content .dc-detail-item .col-3 .metric {
	font-family: var(--font-family-exo);
	font-size: var(--font-size-26);
	font-weight: var(--font-weight-extrabold);
	line-height: var(--line-height-26);
	padding: 30px;
	background-color: #aaa;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}
.dc-list-content .dc-detail-item .col-3 .metric span {
	font-size: var(--font-size-16);
}
.dc-list-content .dc-detail-item .col-3 .metric-param {
	background-color: #00005C;
	color: #fff;
	text-align: center;
	padding: 20px 30px;
	font-family: var(--font-family-exo);
	font-size: var(--font-size-14);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-16);
}
.dc-list-content .dc-detail-item .dc-detail-cta {
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.dc-list-content .dc-detail-item .dc-detail-cta a {
	font-family: var(--font-family-exo);
	font-size: var(--font-size-18);
	font-weight: var(--font-weight-extrabold);
	line-height: var(--line-height-18);
}
.dc-list-content .dc-detail-item .dc-detail-cta img {
	width: 15px;
	margin-left: 10px;
}

/* Media handling */
@media only screen and (min-width: 992px) {

}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (min-width: 1920px) {
}
@media only screen and (max-width: 1920px) {

}
@media only screen and (max-width: 1536px) {

}
@media only screen and (max-width: 1440px) {
	
}
@media only screen and (max-width: 1367px) {
}
@media only screen and (max-width: 1280px) {
	.dc-list-content .dc-detail-item .col-2{
		flex-basis: 51%;
	}
}
@media only screen and (max-width: 1080px) {
	.map-browse-title {
	  font-size: var(--font-size-18);
	  line-height: var(--line-height-22);
	}
	.map-browse-title .down-arrow {
	  margin-left: 10px;
	}
	.dc-list-content .dc-detail-item .col-2 {
	  flex-basis: 48%;
	}	
}
@media only screen and (max-width: 992px) {
 	    
}
@media only screen and (min-width: 767px) and (max-width: 940px) {
	.select-tip {
		left: 20%;
	}
	.map-info .info-wrapper {
		width: 350px;
	}
	.dc-list-content .dc-detail-item .col-1 {
		padding: 10px;
	}
	.dc-list-content .dc-detail-item .col-2 {
		padding: 10px 10px 10px 0px;
	}
	.dc-list-wrapper .npItem-header,
	.dc-list-wrapper .npItem-wrapper.expand {
		padding: 10px 20px 10px 20px;
	}
	.locations-pg .locations-tab .e-n-tabs-heading > div {
		padding: 20px !important;
	}
	.common-cta-box.elementor-section-full_width .elementor-column:first-child,
	.common-cta-box .elementor-column:last-child {
		padding-left: 20px;
	}
}

@media only screen and (max-width: 767px) {	
	.map-tour {
		top: unset;
		bottom: 33px;
		font-size: 12px;
		line-height: 12px;
		width: 200px;
		right: unset;
		left: 15px;
	}	
	.map-controls {
		right: 15px;
		bottom: 30px;
		display: none;
	}
	.map-controls .zoomIn {
		margin-right: -8px;
	}
	.map-controls .zoomOut {
		margin-top: 0px;
	}
	.map-controls .resetBtn {
		margin-top: 15px;
		margin-left: 5px;
	}
	.map-tour-controls {
		top: 80px;
		right: 0px;
	}	
	.map-svg {
		overflow: auto;
		max-width: 100vw;
		max-height: 100vh;
		min-height: 100vh;		
	}
	
	.map-svg[zoomLevel="1"] svg {
		width: 250vw;
		height: 771px;
	}
	.map-svg[zoomLevel="2"] svg {
		width: calc(250vw * 1.2);
		height: calc(771px * 1.2);
		transform: translateX(calc(250vw * -0.1));
	}
	.map-svg[zoomLevel="3"] svg {
		width: calc(250vw * 1.5);
		height: calc(771px * 1.5);
		transform: translateX(calc(250vw * -0.25));
	}

	.map-svg[zoomLevel="6"] svg {
		width: 250vw;
		height: 771px;
	}
	.map-svg[zoomLevel="7"] svg {
		width: calc(250vw * 1.2);
		height: calc(771px * 1.2);
		transform: translateX(calc(250vw * -0.1));
	}
	.map-svg[zoomLevel="8"] svg {
		width: calc(250vw * 1.5);
		height: calc(771px * 1.5);
		transform: translateX(calc(250vw * -0.25));
	}
	
	
	.select-tip {
		width: 100%;
	}
	
	.map-info {
		top: unset;
		bottom: 80px;
		left: 50%;
		transform: translateX(-50%);
		width: 90vw;
	}

	.map-info .info-wrapper {
		width: 100%;
	}	
	
	.dc-list-wrapper {
		flex-wrap: wrap;
	}
	.dc-list-wrapper .dc-list-nav {
		flex-basis: 100% !important;
	}
	.dc-list-wrapper .npItem-wrapper.expand {
		padding: 0px 20px !important;
	}
	.dc-list-wrapper .dc-list-content {
		flex-basis: 100% !important;
	}
	.dc-list-content .dc-detail-item {
		flex-wrap: wrap;
	}
	.dc-list-content .dc-detail-item .col-1 {
		flex-basis: 50%;
		font-size: var(--font-size-12);
		line-height: var(--line-height-16);
		padding: 15px;
	}
	.dc-list-content .dc-detail-item .col-2 {
		flex-basis: 50%;
		padding: 15px 15px 15px 0px;
		font-size: var(--font-size-12);
		line-height: var(--line-height-14);		
	}
	.dc-list-content .dc-detail-item .col-3 {
		flex-basis: 100%;
	}
	.dc-list-content .dc-detail-item .dc-detail-cta {
		bottom: 10px;
	}
	.dc-list-content .dc-detail-item .dc-detail-cta a {
		font-size: var(--font-size-12);
		line-height: var(--line-height-14);	
	}
	.dc-list-content .dc-detail-item .col-3 {
		display: flex;
		flex-wrap: wrap;	
	}
	.dc-list-content .dc-detail-item .col-3 > div {
		flex-basis: 50%;
	}
	.dc-list-content .dc-detail-item .col-3 > div:nth-child(1) {
		order: 1;
		border-right: 1px solid #fff;
	}
	.dc-list-content .dc-detail-item .col-3 > div:nth-child(2) {
		order: 3;
		border-right: 1px solid #fff;
	}
	.dc-list-content .dc-detail-item .col-3 > div:nth-child(3) {
		order: 2;
	}
	.dc-list-content .dc-detail-item .col-3 > div:nth-child(4) {
		order: 4;
	}
	.dc-list-content .dc-detail-item .col-3 .metric {
		padding: 10px;
		font-size: var(--font-size-18);
		line-height: var(--line-height-22);
	}
	.dc-list-content .dc-detail-item .col-3 .metric-param {
		padding: 10px;
		font-size: var(--font-size-12);
		line-height: var(--line-height-16);		
	}
}