.loading_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  background-color: transparent;
  backdrop-filter: blur(5px);
  transition: all 0.7s ease;
  opacity: 1;
  background-color: #fff;
}

.smart-glass {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 288px;
  height: 388px;
}

.logo-circle {
  width: 288px;
  height: 288px;
  position: relative;
}

.circle {
  padding: 20px;
  border: none;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation:
    connect 2.5s linear infinite,
    fadeIn 1s ease-in;
}
.hold-x {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@keyframes connect {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loader-image {
  animation: fadeInOut 3s infinite;
}
