
.js-map-location-navigate-back-button:before {
  content: "\1F519";
  font-size: 2rem;
  cursor: pointer;
}

.map-location-container polygon.polygon_block_enabled {
  opacity: 50%;
  cursor: pointer;
}

.map-location-container polygon.polygon_block_main {
  fill: red;
  animation: blink 1s;
  animation-iteration-count: infinite;
}

.map-location-container polygon.polygon_block_secondary {
  fill: orange;
}

.map-location-container polygon.polygon_seat_enabled {
  opacity: 100%;
}

.map-location-container polygon.polygon_seat_main {
  fill: red;
  animation: blink 1s;
  animation-iteration-count: infinite;
}

.map-location-container polygon.polygon_seat_secondary {
  fill: orange;
}

@keyframes blink { 50% { opacity: 0; }  }

