/*!
 * three-dots - v0.2.3
 * CSS loading animations made with single element
 * https://nzbin.github.io/three-dots/
 *
 * Copyright (c) 2018 nzbin
 * Released under MIT License
 */
/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
 .dot-pulse {
	position: relative;
	left: -9999px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: #193761;
	color: #193761;
	box-shadow: 9999px 0 0 -5px;
	-webkit-animation: dot-pulse 1.5s infinite linear;
	animation: dot-pulse 1.5s infinite linear;
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
  }
  .dot-pulse::before, .dot-pulse::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: #193761;
	color: #193761;
  }
  .dot-pulse::before {
	box-shadow: 9975px 0 0 -5px;
	-webkit-animation: dot-pulse-before 1.5s infinite linear;
	animation: dot-pulse-before 1.5s infinite linear;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
  }
  .dot-pulse::after {
	box-shadow: 10023px 0 0 -5px;
	-webkit-animation: dot-pulse-after 1.5s infinite linear;
	animation: dot-pulse-after 1.5s infinite linear;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
  }
  
  @-webkit-keyframes dot-pulse-before {
	0% {
	  box-shadow: 9975px 0 0 -5px;
	}
	30% {
	  box-shadow: 9975px 0 0 2px;
	}
	60%, 100% {
	  box-shadow: 9975px 0 0 -5px;
	}
  }
  
  @keyframes dot-pulse-before {
	0% {
	  box-shadow: 9975px 0 0 -5px;
	}
	30% {
	  box-shadow: 9975px 0 0 2px;
	}
	60%, 100% {
	  box-shadow: 9975px 0 0 -5px;
	}
  }
  @-webkit-keyframes dot-pulse {
	0% {
	  box-shadow: 9999px 0 0 -5px;
	}
	30% {
	  box-shadow: 9999px 0 0 2px;
	}
	60%, 100% {
	  box-shadow: 9999px 0 0 -5px;
	}
  }
  @keyframes dot-pulse {
	0% {
	  box-shadow: 9999px 0 0 -5px;
	}
	30% {
	  box-shadow: 9999px 0 0 2px;
	}
	60%, 100% {
	  box-shadow: 9999px 0 0 -5px;
	}
  }
  @-webkit-keyframes dot-pulse-after {
	0% {
	  box-shadow: 10023px 0 0 -5px;
	}
	30% {
	  box-shadow: 10023px 0 0 2px;
	}
	60%, 100% {
	  box-shadow: 10023px 0 0 -5px;
	}
  }
  @keyframes dot-pulse-after {
	0% {
	  box-shadow: 10023px 0 0 -5px;
	}
	30% {
	  box-shadow: 10023px 0 0 2px;
	}
	60%, 100% {
	  box-shadow: 10023px 0 0 -5px;
	}
  }
  
  /*# sourceMappingURL=three-dots.css.map */