/* ============================================
   Google Maps-Style Redesign for Tropical Map
   ============================================ */

/* === Full Viewport Map === */
.gmaps-page { margin: 0; padding: 0; height: 100%; overflow: hidden; }
.gmaps-page #mapRoot {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100vh;
  z-index: 1;
}

/* === Hide default topbar on map page === */
.gmaps-page .topbar { display: none !important; }
.gmaps-page .mobileHeader { display: none !important; }
.gmaps-page .mobileMenu { display: none !important; }
.gmaps-page .mobileBottomNav { display: none !important; }

/* === Hide default Leaflet controls === */
.gmaps-page .leaflet-control-zoom { display: none !important; }
.gmaps-page .leaflet-control-layers { display: none !important; }

/* === Ensure place pins render above map layers (fix gray overlay when switching views) === */
.gmaps-page .leaflet-placePinsPane-pane { z-index: 650 !important; }

/* === Map logo watermark (full-screen map) === */
.gmaps-page #mapLogoWrap { position: fixed; bottom: 12px; left: 12px; top: auto; z-index: 400; }
.gmaps-page #mapLogoWrap .tm-map-logo { position: static; }

/* === Floating Search Section (wraps search bar + chips) === */
.gm-search-section {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: calc(100vw - 120px);
}

/* === Floating Search Bar === */
.gm-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  width: 408px;
  min-width: 408px;
  height: 48px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.gm-search-bar:focus-within {
  box-shadow: 0 2px 6px rgba(0,0,0,.3), 0 0 0 2px rgba(66,133,244,.3);
}
.gm-search-bar .gm-hamburger {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  transition: color 0.2s;
}
.gm-search-bar .gm-hamburger:hover { color: #202124; }
.gm-search-bar .gm-hamburger .material-icons { font-size: 24px; }
.gm-search-bar .gm-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: Roboto, Arial, sans-serif;
  color: #202124;
  padding: 0;
  height: 100%;
  background: transparent;
}
.gm-search-bar .gm-search-input::placeholder { color: #9aa0a6; }
.gm-search-bar .gm-search-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4285f4;
  transition: color 0.2s;
}
.gm-search-bar .gm-search-icon:hover { color: #1a73e8; }
.gm-search-bar .gm-search-icon .material-icons { font-size: 22px; }

/* === Category Chips (next to search bar) === */
.gm-category-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(.4,0,.2,1);
}
.gmaps-page.panel-open .gm-category-bar {
  opacity: 0;
  pointer-events: none;
}
.gm-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gm-chips-row::-webkit-scrollbar { display: none; }
.gm-chips-hidden { display: none !important; }
.gm-chips-toggle {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: none;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1FAF6A;
  transition: background 0.15s, transform 0.2s;
}
.gm-chips-toggle:hover { background: #f1f3f4; }
.gm-chips-toggle .material-icons { font-size: 20px; }
.gm-chips-toggle.active {
  transform: rotate(45deg);
  color: #dc2626;
}
.gm-category-bar .categoryChip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  font-size: 13px;
  font-weight: 500;
  font-family: Roboto, Arial, sans-serif;
  color: #3c4043;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.gm-category-bar .categoryChip:hover {
  background: #f1f3f4;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.gm-category-bar .categoryChip.active {
  background: #e8f0fe;
  color: #1a73e8;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.gm-category-bar .categoryChip .material-icons { font-size: 18px; }

.gm-category-bar .reportChip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: #fff;
  color: #5f6368;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  transition: background .2s, box-shadow .2s;
}
.gm-category-bar .reportChip:hover {
  background: #f1f3f4;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.gm-category-bar .reportChip.active {
  background: #e8f0fe;
  color: #1a73e8;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.gm-category-bar .reportChip .material-icons { font-size: 18px; }

/* === Custom Map Controls (right side) === */
.gm-controls {
  position: fixed;
  right: 16px;
  bottom: 200px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gm-controls .gm-ctrl-group {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 40px;
}
.gm-controls .gm-ctrl-btn {
  width: 40px;
  height: 28px;
  min-height: 28px;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.gm-controls .gm-ctrl-btn:hover { background: #f5f5f5; color: #333; }
.gm-controls .gm-ctrl-btn:active { background: #e8e8e8; }
.gm-controls .gm-ctrl-btn .material-icons { font-size: 18px; }
.gm-controls .gm-ctrl-divider {
  height: 1px;
  background: #e8eaed;
  margin: 0;
}
/* Standalone buttons (my location, layers, add place) */
.gm-controls .gm-ctrl-single {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background 0.15s, color 0.15s;
}
.gm-controls .gm-ctrl-single:hover { background: #f5f5f5; color: #333; }
.gm-controls .gm-ctrl-single:active { background: #e8e8e8; }
.gm-controls .gm-ctrl-single .material-icons { font-size: 20px; }
.gm-add-dropdown { position: relative; }
.gm-controls .gm-ctrl-single.gm-add-place { color: #1FAF6A; }
.gm-controls .gm-ctrl-single.gm-add-place:hover { background: rgba(31,175,106,.08); }
.gm-controls .gm-ctrl-single.gm-add-place.active {
  background: #DC2626;
  color: #fff;
}
.gm-add-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 6px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.06);
  padding: 6px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.gm-add-menu.open { display: flex; }
.gm-add-menu button,
.gm-add-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: none;
  background: none;
  font: inherit;
  color: #1e293b;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
  text-align: left;
  width: 100%;
}
.gm-add-menu button:hover,
.gm-add-menu a:hover {
  background: #f1f5f9;
}
.gm-add-menu .material-icons {
  font-size: 20px;
  color: #64748b;
}
.gm-add-menu button[data-action="delete-pin"] .material-icons,
.gm-add-menu a[href*="report"] .material-icons { color: #DC2626; }

/* === Pin right-click context menu === */
.gm-pin-context-menu {
  position: fixed;
  z-index: 1000;
  min-width: 160px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  padding: 4px 0;
  overflow: hidden;
}
.gm-pin-context-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #DC2626;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.gm-pin-context-item:hover {
  background: rgba(220, 38, 38, 0.08);
}
.gm-pin-context-item .material-icons {
  font-size: 20px;
}

.gm-controls .gm-ctrl-single#gmSatelliteClearBtn.active {
  background: #e8f0fe;
  color: #1a73e8;
}
.gm-controls .gm-ctrl-single.gm-home-btn {
  text-decoration: none;
  color: #DC2626;
}
.gm-controls .gm-ctrl-single.gm-home-btn:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #B91C1C;
}

/* === Live Clock (top-right) === */
.gm-clock {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  padding: 6px 10px;
  cursor: pointer;
}
.gm-clock:hover {
  background: rgba(22, 163, 74, 0.95);
}
.gm-clock-icon {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}
.gm-clock-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
#gmClockTime {
  font-size: 13px;
  font-weight: 600;
  font-family: Roboto, Arial, sans-serif;
  color: #fff;
  letter-spacing: .02em;
}
.gm-clock-label {
  font-size: 11px;
  font-weight: 600;
  font-family: Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.gm-clock-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 160px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  padding: 4px 0;
  z-index: 501;
  max-height: 240px;
  overflow-y: auto;
}
.gm-clock-dropdown[hidden] {
  display: none !important;
}
.gm-clock-dropdown-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  text-align: left;
  font-size: 13px;
  font-family: Roboto, Arial, sans-serif;
  color: #202124;
  cursor: pointer;
}
.gm-clock-dropdown-option:hover {
  background: rgba(34, 197, 94, 0.12);
}
.gm-clock-dropdown-option.active {
  background: rgba(34, 197, 94, 0.2);
  font-weight: 600;
}
.gm-clock-wrapper {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 500;
}
.gm-clock-wrapper .gm-clock {
  position: relative;
  top: auto;
  right: auto;
}

/* === Side Panel (slide from left) === */
.gmaps-page .sidePanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 2px 0 8px rgba(0,0,0,.15);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 600;
  transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}
.gmaps-page .sidePanel.open {
  transform: translateX(0);
}
.gmaps-page .sidePanel .panel {
  padding: 14px 16px;
  padding-bottom: 100px;
  min-height: 100vh;
}

/* Panel header */
.gm-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8eaed;
  margin-bottom: 12px;
}
.gm-panel-header .gm-back-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  transition: background 0.15s;
}
.gm-panel-header .gm-back-btn:hover { background: #f1f3f4; }
.gm-panel-header .gm-back-btn .material-icons { font-size: 22px; }
.gm-panel-header .gm-panel-close {
  color: #000;
  flex-shrink: 0;
}
.gm-panel-header .gm-panel-close:hover { color: #1a73e8; }
.gm-panel-header .gm-panel-title {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
  flex: 1;
}
.gm-panel-header .gm-brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #202124;
  flex: 1;
}
.gm-panel-header .gm-brand-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.gm-panel-header .gm-brand-link span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.gmaps-page .sidePanel #clearSelectionBtn {
  margin-left: auto;
}

/* When panel is open, shift search section right */
.gmaps-page.panel-open .gm-search-section {
  left: 376px;
  max-width: calc(100vw - 432px);
}

/* Compact filters section */
.gmaps-page .sidePanel .filter-toggle {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.gmaps-page .sidePanel .filter-toggle .sectionTitle {
  margin: 0 !important;
  font-size: 12px !important;
}
.gmaps-page .sidePanel #filterPanel {
  margin-top: 8px !important;
}
.gmaps-page .sidePanel #filterPanel .field {
  margin-top: 0;
  gap: 4px;
}
.gmaps-page .sidePanel #filterPanel .field + .field {
  margin-top: 8px;
}
.gmaps-page .sidePanel #filterPanel .label {
  font-size: 11px;
}
.gmaps-page .sidePanel #filterPanel .select,
.gmaps-page .sidePanel #filterPanel .input {
  padding: 8px 10px;
  padding-right: 36px;
  font-size: 13px;
  min-height: 36px;
}
.gmaps-page .sidePanel #filterPanel .select {
  background-position: right 10px center;
}
.gmaps-page .sidePanel #filterPanel .input[style*="margin-top"] {
  margin-top: 6px !important;
}
.gmaps-page .sidePanel #filterPanel #resetFilters {
  margin-top: 10px !important;
  padding: 8px 12px;
  font-size: 13px;
}
.gmaps-page .sidePanel .panel-category-chips .categoryChip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: none;
  border-radius: 16px;
  background: #f1f3f4;
  color: #5f6368;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.gmaps-page .sidePanel .panel-category-chips .categoryChip:hover {
  background: #e8eaed;
}
.gmaps-page .sidePanel .panel-category-chips .categoryChip.active {
  background: #e8f0fe;
  color: #1a73e8;
}
.gmaps-page .sidePanel .panel-category-chips .categoryChip .material-icons {
  font-size: 16px;
}
.gmaps-page .sidePanel #resultCount {
  margin-bottom: 12px !important;
  padding: 3px 6px !important;
  font-size: 11px !important;
}
.gmaps-page .sidePanel #searchResults {
  margin-top: 12px !important;
}
.gmaps-page .sidePanel #activeFilters {
  margin-top: 10px !important;
  gap: 4px !important;
}
.gmaps-page .sidePanel .sectionTitle {
  margin: 14px 0 8px !important;
  font-size: 12px !important;
}
.gmaps-page .sidePanel .pinLegend {
  margin-top: 8px !important;
  gap: 6px !important;
}
.gmaps-page .sidePanel .pinLegend .badge {
  font-size: 12px !important;
  padding: 6px 10px !important;
}
.gmaps-page .sidePanel .cityLegend .cityLegendBtn {
  transition: background 0.2s, color 0.2s;
}
.gmaps-page .sidePanel .cityLegend .cityLegendBtn:hover {
  background: #e8eaed !important;
  color: #202124;
}
.gmaps-page .sidePanel .cityLegend .cityLegendBtn .material-icons {
  transition: color 0.2s;
}
.gmaps-page .sidePanel .cityLegend .cityLegendBtn:hover .material-icons {
  color: #1a73e8 !important;
}

/* Hide toggle panel button when panel is open */
.gmaps-page .togglePanelBtn { display: none !important; }
.gmaps-page .addPlaceBtn { display: none !important; }

/* === Google Maps-style Popups === */
.gmaps-page .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 2px 7px 1px rgba(0,0,0,.3);
  padding: 0;
}
.gmaps-page .leaflet-popup-content {
  margin: 12px 16px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  color: #202124;
  line-height: 1.4;
}
.gmaps-page .leaflet-popup-tip {
  box-shadow: 0 2px 7px 1px rgba(0,0,0,.3);
}

/* === Icon Picker (add place modal) === */
.gm-icon-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.gm-icon-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: 2px solid #e8eaed;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s;
  color: #5f6368;
}
.gm-icon-option:hover {
  border-color: #bdc1c6;
  background: #f8f9fa;
}
.gm-icon-option.selected {
  border-color: #1a73e8;
  background: #e8f0fe;
  color: #1a73e8;
}
.gm-icon-option .material-icons { font-size: 24px; }

/* === Preview Card === */
.gmaps-page #preview {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: none;
  max-width: 400px;
  width: calc(100vw - 32px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 7px 1px rgba(0,0,0,.3);
  padding: 16px;
  border: none;
}

/* === Add Place Modal on gmaps page === */
.gmaps-page .addPlaceModal .modalContent {
  border-radius: 8px;
  box-shadow: 0 2px 7px 1px rgba(0,0,0,.3);
}

/* === Result count chip === */
.gmaps-page #resultCount {
  background: #f1f3f4;
  border: none;
  border-radius: 4px;
  color: #5f6368;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .gm-search-section {
    top: 12px;
    left: 12px;
    flex-direction: column;
    max-width: calc(100vw - 24px);
  }
  .gm-search-bar {
    width: 100%;
    min-width: 0;
    height: 44px;
  }
  .gm-category-bar {
    width: 100%;
    overflow: visible;
  }
  .gm-chips-row {
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .gm-chips-row .categoryChip,
  .gm-chips-row .reportChip {
    scroll-snap-align: start;
  }
  .gm-category-bar .categoryChip {
    padding: 6px;
    font-size: 0;
    min-width: 36px;
    width: 36px;
    height: 36px;
    justify-content: center;
    gap: 0;
  }
  .gm-category-bar .categoryChip .chip-label,
  .gm-category-bar .reportChip .chip-label {
    display: none;
  }
  .gm-category-bar .categoryChip .material-icons,
  .gm-category-bar .reportChip .material-icons {
    font-size: 20px;
  }
  .gm-category-bar .reportChip {
    padding: 6px;
    font-size: 0;
    min-width: 36px;
    width: 36px;
    height: 36px;
    justify-content: center;
    gap: 0;
  }
  .gm-chips-toggle {
    flex-shrink: 0;
  }
  .gmaps-page .sidePanel {
    width: 100vw;
    max-width: 100vw;
  }
  .gmaps-page.panel-open .gm-search-section {
    display: none;
  }
  .gm-controls {
    right: 12px;
    bottom: 120px;
  }
  .gm-controls .gm-ctrl-btn,
  .gm-controls .gm-ctrl-single {
    width: 36px;
    height: 36px;
  }
  .gm-controls .gm-ctrl-btn .material-icons,
  .gm-controls .gm-ctrl-single .material-icons {
    font-size: 18px;
  }
  .gm-clock {
    padding: 4px 8px;
  }
  #gmClockTime { font-size: 12px; }
  .gm-clock-label { font-size: 10px; }
  .gm-clock-icon { font-size: 16px; }
  .gmaps-page #preview {
    bottom: 16px;
    max-width: calc(100vw - 24px);
  }
}

/* === Very small phones: extra compact chips === */
@media (max-width: 400px) {
  .gm-category-bar .categoryChip {
    min-width: 32px;
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  .gm-category-bar .categoryChip .material-icons {
    font-size: 18px;
  }
  .gm-chips-row {
    gap: 6px;
  }
  .gm-chips-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
}

/* === Transition for search section shift === */
.gm-search-section {
  transition: left 0.25s cubic-bezier(.4,0,.2,1), max-width 0.25s cubic-bezier(.4,0,.2,1);
}

/* === Report pins (incident, accident, work_road, wild_animal, event) === */
.report-pin-wrapper { background: none !important; border: none !important; }
.report-pin { display: inline-block; }
.report-pin-incident .report-pin-flash,
.report-pin-accident.report-pin-incident .report-pin-flash,
.report-pin-animal.report-pin-incident .report-pin-flash {
  animation: report-pin-flash 1s ease-in-out infinite;
}
.report-pin-incident .report-pin-flash-outer,
.report-pin-accident.report-pin-incident .report-pin-flash-outer,
.report-pin-animal.report-pin-incident .report-pin-flash-outer {
  animation: report-pin-flash 1s ease-in-out infinite 0.15s;
}
.report-pin-selected .report-pin-incident .report-pin-flash,
.report-pin-selected .report-pin-accident.report-pin-incident .report-pin-flash,
.report-pin-selected .report-pin-animal.report-pin-incident .report-pin-flash {
  animation: report-pin-flash 0.7s ease-in-out infinite;
}
.report-pin-selected .report-pin-incident .report-pin-flash-outer,
.report-pin-selected .report-pin-accident.report-pin-incident .report-pin-flash-outer,
.report-pin-selected .report-pin-animal.report-pin-incident .report-pin-flash-outer {
  animation: report-pin-flash 0.7s ease-in-out infinite 0.1s;
}
@keyframes report-pin-flash {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}
