.fakeLoader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999999999;
  }

.spinner1 {
  position: fixed;
  width: 50vmin;
  height: 35vmin;
  top: calc(50% - 50vmin/2);
  left: calc(50% - 35vmin/2);
  }
.spinner1 .double-bounce1,
.spinner1 .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent url(../img/fsv-logo-2022b.png) center center no-repeat;
  background-size: cover;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.5s infinite ease-in-out;
  animation: bounce 2.5s infinite ease-in-out;
  }
.spinner1 .double-bounce2 {
  -webkit-animation-delay: -1.25s;
  animation-delay: -1.25s;
  }

@-webkit-keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}