.scheme {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.scheme svg {
	position: absolute;
	top: 0px;
	left: 0px;

	width: 100%;
}
.scheme polygon {
	fill: #ffffff;
	opacity: 0;
	cursor: pointer;

}

.scheme polygon.recolor {
	fill: #30b214;
	opacity: 0.7;
	cursor: pointer;

}

.scheme svg polygon {
		pointer-events: all;
}
.scheme-item {
	position: absolute;
	cursor: pointer;
}
.scheme-popup {
	display: none;
	border: 1px solid #777;
	padding: 10px;
	width: 200px;
	position: absolute;
	font-size: 12px;
	line-height: 14px;
	background: #fff;
	z-index: 9999;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	text-align: left;
}
.scheme polygon:hover, #hover {
	fill: #ffc70b;
	opacity: 0.5;
	animation: hoverElement 2s linear infinite;
}

@keyframes hoverElement { /* Сама анимация */
    0% {
        stroke: #000000;
    }
    50% {
        stroke: #fc0000;
    }
    100% {
        stroke: #000000; 
    }
}

.scheme polygon.active {
	fill: #FF8C0B !important;
	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;
    width: 500px;
}