/* @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap'); */

#mapwrapper {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 0;
	background-color: transparent;
	min-width: 220px;
}
#city-names text {
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 11px;
	cursor: default;
}
#map_base svg {
	max-height: 100%;
	width: 100%;
	margin: 0;
}
@media screen and (max-width: 320px){
	#map_base svg {
		height:220px;
	}
}
@media screen and (max-width: 400px) and (min-width: 321px) {
	#map_base svg {
		height:300px;
	}
}
@media screen and (max-width: 480px) and (min-width: 401px) {
	#map_base svg {
		height:360px;
	}
}
@media screen and (max-width: 568px) and (min-width: 481px) {
	#map_base svg {
		height:350px;
	}
}
@media screen and (max-width: 685px) and (min-width: 569px) {
	#map_base svg {
		height:465px;
	}
}
@media screen and (max-width: 767px) and (min-width: 686px) {
	#map_base svg {
		height: 470px;
	}
}
@media screen and (min-width: 768px) {
	#map_base svg {
		height:500px;
	}
}
#map-tip {
	font-family: 'Work Sans', sans-serif !important;
	font-size: 12px;
    display: none;
    padding: 3px 8px;
    border: 1px solid #fee3df;
    /* border: 1px solid #EBECED; */
    color: #ffffff;
    z-index: 1000;
    float: left;
    position: absolute;
    /*gradient color*/
    /* background: rgb(73, 73, 73); */
	background: rgb(73, 73, 73);
background: linear-gradient(
  to top left,
  rgba(255, 202, 5, 0.80) 0%,
  rgba(237, 50, 55, 0.80) 60%
);
    /* background: -moz-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(73, 73, 73, 1)), color-stop(100%, rgba(101, 101, 101, 1)));
    background: -webkit-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
    background: -o-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
    background: -ms-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
    background: linear-gradient(to bottom, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%); */
    word-break: keep-all;
    white-space: nowrap;
		box-shadow:1px 2px 4px rgba(84, 83, 83, 0.5);
	-moz-box-shadow:2px 3px 6px rgba(84, 83, 83, 0.5);
	-webkit-box-shadow:2px 3px 6px rgba(84, 83, 83, 0.5);
}
#map-tip p {
	margin: 0!important;
}
#map-tip img {
	float: left;
	padding: 3px;
}