@import url(https://js.arcgis.com/4.26/@arcgis/core/assets/esri/themes/light/main.css);
.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #09d3ac;
}

.highlight-esri-widget-blink {
  outline: 5px solid white;
  animation: blink 1.5s;
  animation-iteration-count: 3;
}

@keyframes blink {
  100% {
    outline-color: white
  }

  75% {
    outline-color: #FFEBEE;
  }

  0% {
    outline-color: #FF0000
  }
}
