.loadAnim,
.inlayAnim {
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: rgba(50, 50, 50, 0.2);
}

.loader {
  z-index: 10000;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  border-bottom: 16px solid #3498db;
  width: 150px;
  height: 150px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: fixed;
  top: calc((100vh - 150px) / 2);
  left: calc((100vw - 150px) / 2);
}

.loaderImg {
  z-index: 10001;
  border: 16px solid transparent;
  border-radius: 50%;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  width: 150px;
  height: 150px;
  position: fixed;
  top: calc((100vh - 150px) / 2);
  left: calc((100vw - 150px) / 2);
  background-image: url('../img/mci_logo_180.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 70%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.inlayImg {
  z-index: 10001;
  border: 16px solid transparent;
  border-radius: 50%;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  width: 120px;
  height: 120px;
  position: fixed;
  top: calc((100vh - 150px) / 2);
  left: calc((100vw - 150px) / 2);
  background-image: url('https://s3-id-jkt-1.kilatstorage.id/cdn.mobies/images/animate/loader1.gif');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 70%;
}