.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));
}
.sm\:grid-cols-2 {
    @media (width >= 40rem) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.md\:grid-cols-3 {
    @media (width >= 48rem) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.lg\:grid-cols-3 {
    @media (width >= 64rem) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.col-span-2 {
    grid-column: span 2 / span 2;
}
.gap-1 {
    gap: 0.25rem; /* 4px */
}
.gap-2 {
    gap: 0.5rem; /* 8px */
}
.gap-4 {
    gap: 1rem; /* 16px */
}
.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;
}
/* padding */
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
/* margin */
.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 / 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: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}
.text-base,
.text-base * {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
}
.text-lg,
.text-lg * {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}
.text-xl,
.text-xl * {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}
.whitespace-nowrap {
    white-space: nowrap;
}
