.site-root {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box !important;
  height: auto;
  min-height: 100vh;
}

.site-root *,
.site-root *::before,
.site-root *::after {
  box-sizing: inherit;
}

i {
  pointer-events: none;
}

.backdrop-blur {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.backdrop-blur-dark {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.backdrop-blur-darker {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.backdrop-blur-darkest {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.backdrop-blur-light {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.backdrop-blur-lighter {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.backdrop-blur-lightest {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.backdrop-dark {
  background-color: rgba(0, 0, 0, 0.3);
}

.backdrop-darker {
  background-color: rgba(0, 0, 0, 0.5);
}

.backdrop-darkest {
  background-color: rgba(0, 0, 0, 0.8);
}

.backdrop-light {
  background-color: rgba(255, 255, 255, 0.3);
}

.backdrop-lighter {
  background-color: rgba(255, 255, 255, 0.5);
}

.backdrop-lightest {
  background-color: rgba(255, 255, 255, 0.8);
}

.full-screen-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s 0.2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

.dark-mode .page-loading {
  background-color: #0b0f19;
}

.page-loading.active {
  opacity: 1;
  visibility: visible;
}

.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}

.page-loading.active > .page-loading-inner {
  opacity: 1;
}

.page-loading-inner > span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #9397ad;
}

.dark-mode .page-loading-inner > span {
  color: #fff;
  opacity: 0.6;
}

.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  vertical-align: text-bottom;
  border: 0.15em solid #b4b7c9;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner 0.75s linear infinite;
}

.dark-mode .page-spinner {
  border-color: rgba(255, 255, 255, 0.4);
  border-right-color: transparent;
}

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

