/* web app styling overrides */

a,
a:visited {
  color: #338574;
}

a:hover {
  text-decoration: none;
  color: #317f6f;
}

@keyframes blinkBorder {
  0% { box-shadow: inset 0 0 0 3px transparent; }
  50% { box-shadow: inset 0 0 0 3px #b20016; }
  100% { box-shadow: inset 0 0 0 3px transparent; }
}

.animated-blink-border {
  animation: blinkBorder 1.5s infinite ease-in-out;
}
