@import url("./globalModal.css");

.multiLoginAddServee .delete-close-btn.delete {
  top: 20px;
  right: 20px;
}

.AddAgencyInputs_content {
  gap: 1rem;
}

.multiLoginAddServee .modal_content {
  height: 84%;
}

.multiLoginAddServee .loaderCircle {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  color: #3e8ed0;
  position: relative;
  background: radial-gradient(10px, currentColor 94%, #0000);
}

.multiLoginAddServee .loaderCircle:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(9px at bottom right, #0000 94%, currentColor) top
      left,
    radial-gradient(9px at bottom left, #0000 94%, currentColor) top right,
    radial-gradient(9px at top right, #0000 94%, currentColor) bottom left,
    radial-gradient(9px at top left, #0000 94%, currentColor) bottom right;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  animation: l18 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l18 {
  33% {
    inset: -10px;
    transform: rotate(0deg);
  }
  66% {
    inset: -10px;
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}
