.loader_body {
  position: fixed;
  z-index: 99999999999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.custom_loader {
  width: 65px;
  height: 65px;
  border: 3px solid #575757;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: relative;
}

.custom_loader::after {
  content: "";
  left: 6px;
  right: 6px;
  top: 6px;
  bottom: 6px;
  background-color: white;
  position: absolute;
  border-radius: 50%;
}

.loader_body>img {
  width: 30px;
  height: 30px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}