.loader-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 0;
  top: 0;
}
.loader-wrapper img {
  width: 270px;
  margin-bottom: 0;
}
.logo-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 270px;
}
.loader-contaniner {
  /* position: absolute;
  top: 4px;
  left: -4px; */
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
/* lighter: '#E9FCD4',
light: '#AAF27F',
main: '#54D62C',
dark: '#229A16',
darker: '#08660D', */

.loader {
  width: 50px;
  padding: 7.5px;
  /* padding: 2.5px; */
  aspect-ratio: 1;
  border-radius: 50%;
  background: #202123;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
  box-sizing: border-box;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

/* .loader {
  width: 90px;
  aspect-ratio: 1;
  padding: 10px;
  box-sizing: border-box;
  display: grid;
  background: #fff;
  filter: blur(5px) contrast(10) hue-rotate(300deg);
  mix-blend-mode: darken;
}
.loader:before,
.loader:after {
  content: '';
  grid-area: 1/1;
  width: 35px;
  height: 35px;
  background: #02120d;
  animation: l7 2s infinite;
}
.loader:after {
  animation-delay: -1s;
}
@keyframes l7 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, 0);
  }
  50% {
    transform: translate(100%, 100%);
  }
  75% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
} */
