@-webkit-keyframes innoAnimation {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
}

.lsd-inno {
  position: absolute;
  width: 200px !important;
  height: 200px !important;
  left: 50%;
  margin-left: -100px;
  top: 50%;
  margin-top: -139px;
  -webkit-animation: innoAnimation 1.3s linear infinite;
  animation: innoAnimation 1.3s linear infinite;
  background-image: url('/content/images/innocentrum-192.png');
  background-repeat: no-repeat;
}
.lsd-innoTxt {
  position: absolute;
  top: 50%;
  width: 200px;
  text-align: center;
  font-size: 1rem;
  color: #444444;
  font-family: 'Open Sans', sans-serif !important;
  margin-top: 90px;
  left: 50%;
  margin-left: -100px;
}
