
html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #FFFFFF;
}

body.theme-dark {
    background-color: #111;
}


/* Loader */
.preloader {
  position: fixed;
  inline-size: 100%;
  block-size: 100%;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(60% 35% at 50% 100%, rgba(11, 147, 246, 0.11) 0%, rgba(11, 147, 246, 0) 100%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  display: grid;
  place-items: center;
}

.theme-dark .preloader {
  background:
    radial-gradient(60% 35% at 50% 100%, rgba(22, 178, 255, 0.18) 0%, rgba(22, 178, 255, 0) 100%),
    linear-gradient(180deg, #090c12 0%, #05070b 100%);
  color: #FFF;
}

@media (max-width: 1199px) {.header {display: none}}

.preloader-img {
  position: relative;
  z-index: 2;
  animation: animloaderimg 2200ms ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(2, 94, 159, 0.25));
}
.preloader-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  inline-size: min(320px, calc(100vw - 2rem));
  padding: 2rem 1.5rem 1.4rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(75, 145, 216, 0.15);
  backdrop-filter: blur(14px);
  box-shadow:
    0 20px 60px rgba(6, 53, 99, 0.1),
    0 2px 12px rgba(6, 53, 99, 0.06);
}

.theme-dark .preloader-container {
  background: rgba(13, 18, 30, 0.74);
  border-color: rgba(132, 191, 255, 0.2);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 2px 14px rgba(0, 0, 0, 0.35);
}

.loader-orb {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 16px;
  inline-size: 80px;
  block-size: 80px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9) 0 10%, rgba(255, 255, 255, 0) 52%),
    conic-gradient(from 0deg, #0ea5e9, #0369a1, #38bdf8, #0ea5e9);
  filter: blur(1.5px) saturate(1.1);
  animation: spin360 1800ms linear infinite;
  opacity: 0.22;
}

.theme-dark .loader-orb {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.7) 0 10%, rgba(255, 255, 255, 0) 52%),
    conic-gradient(from 0deg, #38bdf8, #0ea5e9, #7dd3fc, #38bdf8);
  opacity: 0.3;
}
.preloader .loader {
  width: 154px;
  height: 6px;
  display: block;
  position: relative;
  background: rgba(3, 64, 112, 0.12);
  overflow: hidden;
  border-radius: 50rem;
  isolation: isolate;
}
.theme-dark .preloader .loader {
  background: rgba(179, 225, 255, 0.18);
}
.preloader .loader::after {
  content: "";
  width: 42px;
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9 0%, #0369a1 55%, #38bdf8 100%);
  position: absolute;
  inset-block-start: 0;
  left: 0;
  animation: animloader 1400ms cubic-bezier(0.32, 0, 0.19, 1) infinite;
  border-radius: 50rem;
  box-shadow: 0 0 14px rgba(14, 165, 233, 0.55);
}
.theme-dark .preloader .loader::after {
  background: linear-gradient(90deg, #67d4ff 0%, #21b4f6 55%, #9de4ff 100%);
}

.preloader-text {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #36506a;
  text-align: center;
}

.theme-dark .preloader-text {
  color: #c8eaff;
}
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
}
.theme-dark .header {
  background-color: #222;
  color: #FFF;
}
.header-container {
  max-inline-size: 1200px;
  margin-inline: auto;
  padding: 1.28rem 1.6rem;
  background-color: #fff;
  box-shadow: 0px 6px 12px -3px rgba(4, 97, 165, 0.1);
  border-radius: 0 0 0.625rem 0.625rem;
}

.theme-dark .header-container {
  background-color: #222;
  color: #FFF;
}
.header .logo {
  max-height: 30px;
}
.placeholder {
  block-size: 0.825rem;
  inline-size: 3rem;
  background-color: #F5F5F5;
  border-radius: 0.3rem;
}
.theme-dark .placeholder {
  background-color: #555;
}
.placeholder-wide {
  inline-size: 12rem;
}

.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}
@keyframes animloader {
  0% {
    left: 0;
    transform: translateX(-100%);
  }
  100% {
    left: 100%;
    transform: translateX(0%);
  }
}
@keyframes animloaderimg {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.04);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes spin360 {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

/*
html,
body {
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.continuous-4 {
  width: 120px;
  height: 22px;
  border-radius: 40px;
  color: #039D55;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.continuous-4::before {
  content: "";
  position: absolute;
  margin: 2px;
  width: 14px;
  top: 0;
  bottom: 0;
  left: -20px;
  border-radius: inherit;
  background: currentColor;
  box-shadow: -10px 0 12px 3px currentColor;
  clip-path: polygon(0 5%, 100% 0,100% 100%,0 95%,-30px 50%);
  animation: ct4 1s infinite linear;
}

@keyframes ct4 {
  100% {left: calc(100% + 20px)}
}

body {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  grid-auto-rows: 130px;
  place-items:center;
}

* {
  box-sizing: border-box;
}
*/
