/* Wrapper utama */
.loading-clock {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000000000000000000000000000000000000000000000000;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.5); */
    background: rgba(255, 255, 255, 0.751);
    justify-content: center;
    align-items: center;
}

/* Loader baru yang menggantikan tangan jam */
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #355ccc;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}

.logo-loader {
  width: 50px;
  height: 50px;
  /* background-image: url('../img/logo.png'); */
  background-image: url('../img/logoTpds.png');

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* animation: spin 1s linear infinite; */
  /* animation: bounce 1s linear infinite; */
  animation:l1 3s ease-in-out infinite;
}


@keyframes l1 {
  0%   {transform: perspective(150px) rotateY(0deg)}
  20%   {transform: perspective(150px) rotateY(180deg)}
  40% {transform: perspective(150px) rotateY(0deg)}
  60%   {transform: perspective(150px) rotateX(0deg)}
  80%   {transform: perspective(150px) rotateX(180deg)}
  100% {transform: perspective(150px) rotateX(0deg)}
}


@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

