.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  /*position: fixed;*/
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.w-screen {
  width: 100vw;
}

.gap-small {
  gap: var(--gap-8);
}

.gap-medium {
  gap: var(--gap-16);
}

.margin-auto-left {
  margin-inline-start: auto;
}

.margin-auto-right {
  margin-inline-end: auto;
}

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

/*# sourceMappingURL=classes.css.map */
