.caritas-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.caritas-page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.caritas-page-loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.caritas-page-loader__mark {
  position: relative;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caritas-page-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid rgba(123, 5, 0, 0.14);
  border-top-color: #7b0500;
  border-right-color: #7b0500;
  animation: caritas-loader-spin 0.95s linear infinite;
  box-sizing: border-box;
}

.caritas-page-loader__logo {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.caritas-page-loader__text {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b0500;
}

@keyframes caritas-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}