.fix-float {
  float: left;
  width: 100%
}
.grid {
  display: grid
}
.grid-cols-1 {
  grid-template-columns: repeat(1,minmax(0,1fr))
}
.grid-cols-2 {
  grid-template-columns: repeat(2,minmax(0,1fr))
}
.grid-cols-3 {
  grid-template-columns: repeat(3,minmax(0,1fr))
}
.grid-cols-6 {
  grid-template-columns: repeat(6,minmax(0,1fr))
}
.gap-1 {
  gap: .25rem
}
.gap-2 {
  gap: .5rem
}
.gap-4 {
  gap: 1rem
}
.flex {
  display: flex
}
.flex-row {
  flex-direction: row
}
.flex-col {
  flex-direction: column
}
.flex-wrap {
  flex-wrap: wrap
}
.flex-nowrap {
  flex-wrap: nowrap
}
.grow {
  flex-grow: 1
}
.shrink {
  flex-shrink: 1
}
.shrink-0 {
  flex-shrink: 0
}
.justify-end {
  justify-content: flex-end
}
.justify-between {
  justify-content: space-between
}
.justify-center {
  justify-content: center
}
.place-items-start {
  place-items: start
}
.item-center {
  align-items: center
}
.items-end {
  align-items: flex-end
}
.justify-items-center {
  justify-items: center
}
.p-1 {
  padding: .25rem
}
.p-2 {
  padding: .5rem
}
.mx-auto {
  margin-left: auto;
  margin-right: auto
}
.max-w-screen-lg {
  max-width: 1024px
}
.drop-shadow-sm {
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / .05))
}
.font-light {
  font-weight: 300
}
.font-normal {
  font-weight: 400
}
.font-semibold {
  font-weight: 600
}
.font-bold {
  font-weight: 700
}
.text-sm,
.text-sm * {
  font-size: .875rem;
  line-height: 1.25rem
}
.text-base,
.text-base * {
  font-size: 1rem;
  line-height: 1.5rem
}
.text-lg,
.text-lg * {
  font-size: 1.125rem;
  line-height: 1.75rem
}
.text-xl,
.text-xl * {
  font-size: 1.25rem;
  line-height: 1.75rem
}
.whitespace-nowrap {
  white-space: nowrap
}