.entry-title{
	text-align: center;
}
.map{
	position: relative;
	display: flex;
	justify-content: center;
	overflow-x: auto;
	max-width: 1600px;
	margin: 60px auto;
}
.map img{
	/*max-width: 1600px;*/
	/*min-width: 700px;*/
}
.map svg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*max-width: 1600px;*/
}
.map .object-map{
	fill: red;
	cursor: pointer;
	transition: all .2s;
	position: relative;
	opacity: 0.6;
}
.map .object-map:hover{
	opacity: 0.8;
}
.map .object-label{
	fill:  #d32f2f;
	opacity: 0.8;
	stroke: white;
	transition: all .2s;
	stroke-width: 4px;
}
.map .object-label:hover{
	opacity: 1;
}
.map .object-noactiv{
	fill: #0012eaff;
	opacity: 0.4;
}
.map .object-noactiv:hover{
	opacity: 0.5;
}
.tooltip {
    border-radius: 5px;
    padding: 5px;
    font-weight: 500;
    background: #fff;
    color: #000;
    font-size: 14px;
    position: absolute;
}
.info__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: 0.3s all;
    pointer-events: none;
    z-index: 10;
}
.info__bg.active {
    pointer-events: all;
    opacity: 1;
    transition: 0.3s all;
}
.info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    max-width: 500px;
}
.info-closed{
	position: absolute;
	width: 35px;
	height: 35px;
	top: -10px;
	right: -10px;
	background: white;
	border-radius: 50%;
	box-shadow: -2px 0px 23px 7px rgba(34, 60, 80, 0.2);
	cursor: pointer;
}
.info-closed:after,
.info-closed:before{
	display: block;
	content: '';
	width: 20px;
	height: 2px;
	background: black;
	position: absolute;
	
}
.info-closed:after{
	transform: rotate(45deg);
	top: 16px;
	left: 8px;
}
.info-closed:before{
	transform: rotate(-45deg);
	top: 16px;
	left: 8px;
}
.loader-wrap{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader {
  width: 100px;
  height: 100px;
  border: 5px solid;
  border-color: #FF3D00 transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.info__btn_more{
	display: inline-block;
	color: #666 !important;
	border: 2px solid #666;
	padding: 10px 15px;
	text-decoration: none;
	font-size: 1.1em;
	transition: all 0.2s;
}
.info__btn_more:hover{
	color: white !important;
	background: #666;
}
@media  screen and (max-width: 768px){
	/*.map img{
		height: 500px;
		width: auto;
	}
	.map svg{
	    height: 500px;
		width: auto;
	}*/
	.info {
	    position: absolute;
	    max-width: 400px;
	    width: 100%;
	}
	
}
@media  screen and (max-width: 576px){
	.info {
	    position: absolute;
	    max-width: 100%;
	    width: 90%;
	}
}



