.loadinig-wrap {
  position: fixed;
  _position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* display:none; */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loadinig-wrap .loading-container {
  width: 500px;
  height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loadinig-wrap .loading-container .logo {
  width: 262px;
  height: 141px;
  scale: 0.8;
}

.loadinig-wrap .loading-container .text {
  padding-top: 10px;
  font-size: 18px;
  color: #1f56b0;
  font-family: Impact;
  letter-spacing: 4px;
}

.loadinig-wrap .loading-container .text.loadinganimate {
  animation: loading 0.5s linear infinite;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}