div#informCustomer {
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: white;
  padding-top: 15rem;
  z-index: 90;
  position: fixed;
  top: 0;
  left: 0;
}

.animcircle {
  color: #000000;
  font-size: 2em;
}

span.connecttext {
  color: #9a9a9a;
  font-family: "Open Sans" !important;
  font-size: 2em;
}

.faa-burst.animated, .faa-burst.animated-hover:hover, .faa-parent.animated-hover:hover > .faa-burst {
  -webkit-animation: burst 1s infinite linear;
  animation: burst 1s infinite linear;
}

@keyframes burst {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .1;
  }
  100% {
    opacity: 1;
  }
}

