.full-loader {
  display: flex;
  position: fixed;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 5000;
  width: 100%;
  min-height: 100vh;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

[data-bs-theme="dark"] .full-loader {
  background: rgba(11, 12, 16, 0.15);
}

.full-loader ~ body {
  overflow: hidden;
}

.full-loader .lds-ring {
  display: block;
}

.lds-ring {
  display: none;
  position: relative;
  width: 56px;
  height: 56px;
  margin: auto;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  margin: 4px;
  border: 4px solid rgba(91, 141, 239, 0.3);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-top-color: #5b8def;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ov-h {
  overflow: hidden;
}
