.object-wppu-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: fixed;
  background-color: #009999;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  top: 0;
}
.wppu-object-logo {
  z-index: 1001;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.wppu-object-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
#wppu-object-wrapper {
  position: absolute;
  width: 300px;
  height: 300px;
}
.wpppu-object-wrap{
  display: flex;
  position: relative;
  top: 0%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: currentColor;
  -webkit-animation: wppu-object-spin 2s linear infinite;
  animation: wppu-object-spin 2s linear infinite;
  z-index: 1001;
  color: #FFFFFF;
}
.wpppu-object-wrap::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: currentColor;
  -webkit-animation: wppu-object-spin 1.5s linear infinite;
  animation: wppu-object-spin 1.5s linear infinite;
}
.wpppu-object-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: currentColor;
  -webkit-animation: wppu-object-spin 3s linear infinite;
  animation: wppu-object-spin 3s linear infinite;
}


@-webkit-keyframes wppu-object-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes wppu-object-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}