.loading-container {
  width: 100px;
  height: 50px;
  margin: 10px auto;
  text-align: center;
  display: none; }

.square-box-container {
  display: inline-block; }
  .square-box-container .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    float: left; }

.c1 {
  background-color: #F25F5C;
  transform: scale(0.5);
  animation: rise 0.5s ease-in-out infinite alternate; }

.c2 {
  background-color: #00A8E8;
  transform: scale(1);
  animation: rise 0.5s ease-in-out -0.5s infinite alternate; }

@keyframes rise {
  0% {
    transform: scale(0.5); }
  100% {
    transform: scale(1); } }

/*# sourceMappingURL=favcy-loading.css.map */
