.msg-loading > span > strong {
  font-family: tahoma;
  font-size: 22px;
  font-weight: 600;
}

.spinning {
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  animation: spinning-anim 1.3s infinite;
}

.logosaf {
  width: 120px;
  height: 120px;
  width: inherit;
  height: inherit;
}

@keyframes spinning-anim {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(-900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    transform: rotate(-1800deg);
  }
  100% {
    transform: rotate(-1800deg);
  }
}
