.block { display: block; } .inline { display: inline; } .flex { display: flex; } .flex-column { display: flex; flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .justify-around { justify-content: space-around; } .justify-between { justify-content: space-between; } .justify-center { justify-content: center; } .justify-start { justify-content:flex-start } .justify-end { justify-content:flex-end } .items-center { align-items: center; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; } .flex-1 { flex: 1 1 0%; } .w-full { width: 100%; } .w-screen { width: 100vw; } .gap-0 { gap: 0px; } .gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; }