.map-stop-popup-table button.map-stop-grid-line {
  width: 100%;
  color: inherit;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}

.map-stop-popup-table button.map-stop-grid-line:hover,
.map-stop-popup-table button.map-stop-grid-line:focus-visible {
  z-index: 1;
  outline: 0;
  background: #e9f7f3;
  box-shadow: inset 3px 0 0 #00a896;
}

.map-stop-popup-table button.map-stop-grid-line:focus-visible {
  box-shadow: inset 3px 0 0 #00a896, inset 0 0 0 2px rgba(0, 168, 150, .28);
}

.map-stop-popup-table button.map-stop-grid-line:disabled {
  cursor: wait;
  opacity: .7;
}

.map-stop-line-arrow {
  margin-left: auto;
  color: #00a896;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity .18s ease, transform .18s ease;
}

.map-stop-grid-line:hover .map-stop-line-arrow,
.map-stop-grid-line:focus-visible .map-stop-line-arrow,
.map-stop-grid-line.is-loading .map-stop-line-arrow {
  opacity: 1;
  transform: translateX(0);
}

.map-stop-grid-line.is-loading .map-stop-line-arrow {
  animation: mapStopLineArrowPulse .7s ease-in-out infinite alternate;
}

@keyframes mapStopLineArrowPulse {
  to { transform: translateX(3px); }
}
