.loading_modal {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3px);
  transition: 0.5s ease-in-out;
  z-index: 5000;
}

.loading_full {
  background-color: rgba(00, 00, 00, 0.6);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999;
}

.loading_placeholder {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.loading_img {
  position: absolute;
  left: 25%;
  transform-origin: 50%;
  height: 100px;
  width: 183px;
}

.loading_placeholder span {
  position: absolute;
  top: 110px;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0px;
  color: #fff;
  left: 25%;
  width: 100%;
}