UNPKG

tailwindcss

Version:

A utility-first CSS framework for rapidly building custom user interfaces.

3,699 lines (2,817 loc) • 403 kB
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: .67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: .35em .75em .625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } /** * Manually forked from SUIT CSS Base: https://github.com/suitcss/base * A thin layer on top of normalize.css that provides a starting point more * suitable for web applications. */ /** * 1. Prevent padding and border from affecting element width * https://goo.gl/pYtbK7 * 2. Change the default font family in all browsers (opinionated) */ html { box-sizing: border-box; /* 1 */ font-family: sans-serif; /* 2 */ } *, *::before, *::after { box-sizing: inherit; } /** * Removes the default spacing and border for appropriate elements. */ blockquote, dl, dd, h1, h2, h3, h4, h5, h6, figure, p, pre { margin: 0; } button { background: transparent; padding: 0; } /** * Work around a Firefox/IE bug where the transparent `button` background * results in a loss of the default `button` focus styles. */ button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; } fieldset { margin: 0; padding: 0; } ol, ul { margin: 0; } /** * Tailwind custom reset styles */ /** * Allow adding a border to an element by just adding a border-width. * * By default, the way the browser specifies that an element should have no * border is by setting it's border-style to `none` in the user-agent * stylesheet. * * In order to easily add borders to elements by just setting the `border-width` * property, we change the default border-style for all elements to `solid`, and * use border-width to hide them instead. This way our `border` utilities only * need to set the `border-width` property instead of the entire `border` * shorthand, making our border utilities much more straightforward to compose. * * https://github.com/tailwindcss/tailwindcss/pull/116 */ *, *::before, *::after { border-width: 0; border-style: solid; border-color: #dae1e7; } /** * Undo the `border-style: none` reset that Normalize applies to images so that * our `border-{width}` utilities have the expected effect. * * The Normalize reset is unnecessary for us since we default the border-width * to 0 on all elements. * * https://github.com/tailwindcss/tailwindcss/issues/362 */ img { border-style: solid; } textarea { resize: vertical; } img { max-width: 100%; height: auto; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: inherit; opacity: .5; } input::-ms-input-placeholder, textarea::-ms-input-placeholder { color: inherit; opacity: .5; } input::placeholder, textarea::placeholder { color: inherit; opacity: .5; } button, [role="button"] { cursor: pointer; } table { border-collapse: collapse; } .container { width: 100%; } @media (min-width: 576px) { .container { max-width: 576px; } } @media (min-width: 768px) { .container { max-width: 768px; } } @media (min-width: 992px) { .container { max-width: 992px; } } @media (min-width: 1200px) { .container { max-width: 1200px; } } .list-reset { list-style: none; padding: 0; } .appearance-none { -webkit-appearance: none; -moz-appearance: none; appearance: none; } .bg-fixed { background-attachment: fixed; } .bg-local { background-attachment: local; } .bg-scroll { background-attachment: scroll; } .bg-transparent { background-color: transparent; } .bg-black { background-color: #22292f; } .bg-grey-darkest { background-color: #3d4852; } .bg-grey-darker { background-color: #606f7b; } .bg-grey-dark { background-color: #8795a1; } .bg-grey { background-color: #b8c2cc; } .bg-grey-light { background-color: #dae1e7; } .bg-grey-lighter { background-color: #f1f5f8; } .bg-grey-lightest { background-color: #f8fafc; } .bg-white { background-color: #fff; } .bg-red-darkest { background-color: #3b0d0c; } .bg-red-darker { background-color: #621b18; } .bg-red-dark { background-color: #cc1f1a; } .bg-red { background-color: #e3342f; } .bg-red-light { background-color: #ef5753; } .bg-red-lighter { background-color: #f9acaa; } .bg-red-lightest { background-color: #fcebea; } .bg-orange-darkest { background-color: #462a16; } .bg-orange-darker { background-color: #613b1f; } .bg-orange-dark { background-color: #de751f; } .bg-orange { background-color: #f6993f; } .bg-orange-light { background-color: #faad63; } .bg-orange-lighter { background-color: #fcd9b6; } .bg-orange-lightest { background-color: #fff5eb; } .bg-yellow-darkest { background-color: #453411; } .bg-yellow-darker { background-color: #684f1d; } .bg-yellow-dark { background-color: #f2d024; } .bg-yellow { background-color: #ffed4a; } .bg-yellow-light { background-color: #fff382; } .bg-yellow-lighter { background-color: #fff9c2; } .bg-yellow-lightest { background-color: #fcfbeb; } .bg-green-darkest { background-color: #0f2f21; } .bg-green-darker { background-color: #1a4731; } .bg-green-dark { background-color: #1f9d55; } .bg-green { background-color: #38c172; } .bg-green-light { background-color: #51d88a; } .bg-green-lighter { background-color: #a2f5bf; } .bg-green-lightest { background-color: #e3fcec; } .bg-teal-darkest { background-color: #0d3331; } .bg-teal-darker { background-color: #20504f; } .bg-teal-dark { background-color: #38a89d; } .bg-teal { background-color: #4dc0b5; } .bg-teal-light { background-color: #64d5ca; } .bg-teal-lighter { background-color: #a0f0ed; } .bg-teal-lightest { background-color: #e8fffe; } .bg-blue-darkest { background-color: #12283a; } .bg-blue-darker { background-color: #1c3d5a; } .bg-blue-dark { background-color: #2779bd; } .bg-blue { background-color: #3490dc; } .bg-blue-light { background-color: #6cb2eb; } .bg-blue-lighter { background-color: #bcdefa; } .bg-blue-lightest { background-color: #eff8ff; } .bg-indigo-darkest { background-color: #191e38; } .bg-indigo-darker { background-color: #2f365f; } .bg-indigo-dark { background-color: #5661b3; } .bg-indigo { background-color: #6574cd; } .bg-indigo-light { background-color: #7886d7; } .bg-indigo-lighter { background-color: #b2b7ff; } .bg-indigo-lightest { background-color: #e6e8ff; } .bg-purple-darkest { background-color: #21183c; } .bg-purple-darker { background-color: #382b5f; } .bg-purple-dark { background-color: #794acf; } .bg-purple { background-color: #9561e2; } .bg-purple-light { background-color: #a779e9; } .bg-purple-lighter { background-color: #d6bbfc; } .bg-purple-lightest { background-color: #f3ebff; } .bg-pink-darkest { background-color: #451225; } .bg-pink-darker { background-color: #6f213f; } .bg-pink-dark { background-color: #eb5286; } .bg-pink { background-color: #f66d9b; } .bg-pink-light { background-color: #fa7ea8; } .bg-pink-lighter { background-color: #ffbbca; } .bg-pink-lightest { background-color: #ffebef; } .hover\:bg-transparent:hover { background-color: transparent; } .hover\:bg-black:hover { background-color: #22292f; } .hover\:bg-grey-darkest:hover { background-color: #3d4852; } .hover\:bg-grey-darker:hover { background-color: #606f7b; } .hover\:bg-grey-dark:hover { background-color: #8795a1; } .hover\:bg-grey:hover { background-color: #b8c2cc; } .hover\:bg-grey-light:hover { background-color: #dae1e7; } .hover\:bg-grey-lighter:hover { background-color: #f1f5f8; } .hover\:bg-grey-lightest:hover { background-color: #f8fafc; } .hover\:bg-white:hover { background-color: #fff; } .hover\:bg-red-darkest:hover { background-color: #3b0d0c; } .hover\:bg-red-darker:hover { background-color: #621b18; } .hover\:bg-red-dark:hover { background-color: #cc1f1a; } .hover\:bg-red:hover { background-color: #e3342f; } .hover\:bg-red-light:hover { background-color: #ef5753; } .hover\:bg-red-lighter:hover { background-color: #f9acaa; } .hover\:bg-red-lightest:hover { background-color: #fcebea; } .hover\:bg-orange-darkest:hover { background-color: #462a16; } .hover\:bg-orange-darker:hover { background-color: #613b1f; } .hover\:bg-orange-dark:hover { background-color: #de751f; } .hover\:bg-orange:hover { background-color: #f6993f; } .hover\:bg-orange-light:hover { background-color: #faad63; } .hover\:bg-orange-lighter:hover { background-color: #fcd9b6; } .hover\:bg-orange-lightest:hover { background-color: #fff5eb; } .hover\:bg-yellow-darkest:hover { background-color: #453411; } .hover\:bg-yellow-darker:hover { background-color: #684f1d; } .hover\:bg-yellow-dark:hover { background-color: #f2d024; } .hover\:bg-yellow:hover { background-color: #ffed4a; } .hover\:bg-yellow-light:hover { background-color: #fff382; } .hover\:bg-yellow-lighter:hover { background-color: #fff9c2; } .hover\:bg-yellow-lightest:hover { background-color: #fcfbeb; } .hover\:bg-green-darkest:hover { background-color: #0f2f21; } .hover\:bg-green-darker:hover { background-color: #1a4731; } .hover\:bg-green-dark:hover { background-color: #1f9d55; } .hover\:bg-green:hover { background-color: #38c172; } .hover\:bg-green-light:hover { background-color: #51d88a; } .hover\:bg-green-lighter:hover { background-color: #a2f5bf; } .hover\:bg-green-lightest:hover { background-color: #e3fcec; } .hover\:bg-teal-darkest:hover { background-color: #0d3331; } .hover\:bg-teal-darker:hover { background-color: #20504f; } .hover\:bg-teal-dark:hover { background-color: #38a89d; } .hover\:bg-teal:hover { background-color: #4dc0b5; } .hover\:bg-teal-light:hover { background-color: #64d5ca; } .hover\:bg-teal-lighter:hover { background-color: #a0f0ed; } .hover\:bg-teal-lightest:hover { background-color: #e8fffe; } .hover\:bg-blue-darkest:hover { background-color: #12283a; } .hover\:bg-blue-darker:hover { background-color: #1c3d5a; } .hover\:bg-blue-dark:hover { background-color: #2779bd; } .hover\:bg-blue:hover { background-color: #3490dc; } .hover\:bg-blue-light:hover { background-color: #6cb2eb; } .hover\:bg-blue-lighter:hover { background-color: #bcdefa; } .hover\:bg-blue-lightest:hover { background-color: #eff8ff; } .hover\:bg-indigo-darkest:hover { background-color: #191e38; } .hover\:bg-indigo-darker:hover { background-color: #2f365f; } .hover\:bg-indigo-dark:hover { background-color: #5661b3; } .hover\:bg-indigo:hover { background-color: #6574cd; } .hover\:bg-indigo-light:hover { background-color: #7886d7; } .hover\:bg-indigo-lighter:hover { background-color: #b2b7ff; } .hover\:bg-indigo-lightest:hover { background-color: #e6e8ff; } .hover\:bg-purple-darkest:hover { background-color: #21183c; } .hover\:bg-purple-darker:hover { background-color: #382b5f; } .hover\:bg-purple-dark:hover { background-color: #794acf; } .hover\:bg-purple:hover { background-color: #9561e2; } .hover\:bg-purple-light:hover { background-color: #a779e9; } .hover\:bg-purple-lighter:hover { background-color: #d6bbfc; } .hover\:bg-purple-lightest:hover { background-color: #f3ebff; } .hover\:bg-pink-darkest:hover { background-color: #451225; } .hover\:bg-pink-darker:hover { background-color: #6f213f; } .hover\:bg-pink-dark:hover { background-color: #eb5286; } .hover\:bg-pink:hover { background-color: #f66d9b; } .hover\:bg-pink-light:hover { background-color: #fa7ea8; } .hover\:bg-pink-lighter:hover { background-color: #ffbbca; } .hover\:bg-pink-lightest:hover { background-color: #ffebef; } .focus\:bg-transparent:focus { background-color: transparent; } .focus\:bg-black:focus { background-color: #22292f; } .focus\:bg-grey-darkest:focus { background-color: #3d4852; } .focus\:bg-grey-darker:focus { background-color: #606f7b; } .focus\:bg-grey-dark:focus { background-color: #8795a1; } .focus\:bg-grey:focus { background-color: #b8c2cc; } .focus\:bg-grey-light:focus { background-color: #dae1e7; } .focus\:bg-grey-lighter:focus { background-color: #f1f5f8; } .focus\:bg-grey-lightest:focus { background-color: #f8fafc; } .focus\:bg-white:focus { background-color: #fff; } .focus\:bg-red-darkest:focus { background-color: #3b0d0c; } .focus\:bg-red-darker:focus { background-color: #621b18; } .focus\:bg-red-dark:focus { background-color: #cc1f1a; } .focus\:bg-red:focus { background-color: #e3342f; } .focus\:bg-red-light:focus { background-color: #ef5753; } .focus\:bg-red-lighter:focus { background-color: #f9acaa; } .focus\:bg-red-lightest:focus { background-color: #fcebea; } .focus\:bg-orange-darkest:focus { background-color: #462a16; } .focus\:bg-orange-darker:focus { background-color: #613b1f; } .focus\:bg-orange-dark:focus { background-color: #de751f; } .focus\:bg-orange:focus { background-color: #f6993f; } .focus\:bg-orange-light:focus { background-color: #faad63; } .focus\:bg-orange-lighter:focus { background-color: #fcd9b6; } .focus\:bg-orange-lightest:focus { background-color: #fff5eb; } .focus\:bg-yellow-darkest:focus { background-color: #453411; } .focus\:bg-yellow-darker:focus { background-color: #684f1d; } .focus\:bg-yellow-dark:focus { background-color: #f2d024; } .focus\:bg-yellow:focus { background-color: #ffed4a; } .focus\:bg-yellow-light:focus { background-color: #fff382; } .focus\:bg-yellow-lighter:focus { background-color: #fff9c2; } .focus\:bg-yellow-lightest:focus { background-color: #fcfbeb; } .focus\:bg-green-darkest:focus { background-color: #0f2f21; } .focus\:bg-green-darker:focus { background-color: #1a4731; } .focus\:bg-green-dark:focus { background-color: #1f9d55; } .focus\:bg-green:focus { background-color: #38c172; } .focus\:bg-green-light:focus { background-color: #51d88a; } .focus\:bg-green-lighter:focus { background-color: #a2f5bf; } .focus\:bg-green-lightest:focus { background-color: #e3fcec; } .focus\:bg-teal-darkest:focus { background-color: #0d3331; } .focus\:bg-teal-darker:focus { background-color: #20504f; } .focus\:bg-teal-dark:focus { background-color: #38a89d; } .focus\:bg-teal:focus { background-color: #4dc0b5; } .focus\:bg-teal-light:focus { background-color: #64d5ca; } .focus\:bg-teal-lighter:focus { background-color: #a0f0ed; } .focus\:bg-teal-lightest:focus { background-color: #e8fffe; } .focus\:bg-blue-darkest:focus { background-color: #12283a; } .focus\:bg-blue-darker:focus { background-color: #1c3d5a; } .focus\:bg-blue-dark:focus { background-color: #2779bd; } .focus\:bg-blue:focus { background-color: #3490dc; } .focus\:bg-blue-light:focus { background-color: #6cb2eb; } .focus\:bg-blue-lighter:focus { background-color: #bcdefa; } .focus\:bg-blue-lightest:focus { background-color: #eff8ff; } .focus\:bg-indigo-darkest:focus { background-color: #191e38; } .focus\:bg-indigo-darker:focus { background-color: #2f365f; } .focus\:bg-indigo-dark:focus { background-color: #5661b3; } .focus\:bg-indigo:focus { background-color: #6574cd; } .focus\:bg-indigo-light:focus { background-color: #7886d7; } .focus\:bg-indigo-lighter:focus { background-color: #b2b7ff; } .focus\:bg-indigo-lightest:focus { background-color: #e6e8ff; } .focus\:bg-purple-darkest:focus { background-color: #21183c; } .focus\:bg-purple-darker:focus { background-color: #382b5f; } .focus\:bg-purple-dark:focus { background-color: #794acf; } .focus\:bg-purple:focus { background-color: #9561e2; } .focus\:bg-purple-light:focus { background-color: #a779e9; } .focus\:bg-purple-lighter:focus { background-color: #d6bbfc; } .focus\:bg-purple-lightest:focus { background-color: #f3ebff; } .focus\:bg-pink-darkest:focus { background-color: #451225; } .focus\:bg-pink-darker:focus { background-color: #6f213f; } .focus\:bg-pink-dark:focus { background-color: #eb5286; } .focus\:bg-pink:focus { background-color: #f66d9b; } .focus\:bg-pink-light:focus { background-color: #fa7ea8; } .focus\:bg-pink-lighter:focus { background-color: #ffbbca; } .focus\:bg-pink-lightest:focus { background-color: #ffebef; } .bg-bottom { background-position: bottom; } .bg-center { background-position: center; } .bg-left { background-position: left; } .bg-left-bottom { background-position: left bottom; } .bg-left-top { background-position: left top; } .bg-right { background-position: right; } .bg-right-bottom { background-position: right bottom; } .bg-right-top { background-position: right top; } .bg-top { background-position: top; } .bg-repeat { background-repeat: repeat; } .bg-no-repeat { background-repeat: no-repeat; } .bg-repeat-x { background-repeat: repeat-x; } .bg-repeat-y { background-repeat: repeat-y; } .bg-auto { background-size: auto; } .bg-cover { background-size: cover; } .bg-contain { background-size: contain; } .border-collapse { border-collapse: collapse; } .border-separate { border-collapse: separate; } .border-transparent { border-color: transparent; } .border-black { border-color: #22292f; } .border-grey-darkest { border-color: #3d4852; } .border-grey-darker { border-color: #606f7b; } .border-grey-dark { border-color: #8795a1; } .border-grey { border-color: #b8c2cc; } .border-grey-light { border-color: #dae1e7; } .border-grey-lighter { border-color: #f1f5f8; } .border-grey-lightest { border-color: #f8fafc; } .border-white { border-color: #fff; } .border-red-darkest { border-color: #3b0d0c; } .border-red-darker { border-color: #621b18; } .border-red-dark { border-color: #cc1f1a; } .border-red { border-color: #e3342f; } .border-red-light { border-color: #ef5753; } .border-red-lighter { border-color: #f9acaa; } .border-red-lightest { border-color: #fcebea; } .border-orange-darkest { border-color: #462a16; } .border-orange-darker { border-color: #613b1f; } .border-orange-dark { border-color: #de751f; } .border-orange { border-color: #f6993f; } .border-orange-light { border-color: #faad63; } .border-orange-lighter { border-color: #fcd9b6; } .border-orange-lightest { border-color: #fff5eb; } .border-yellow-darkest { border-color: #453411; } .border-yellow-darker { border-color: #684f1d; } .border-yellow-dark { border-color: #f2d024; } .border-yellow { border-color: #ffed4a; } .border-yellow-light { border-color: #fff382; } .border-yellow-lighter { border-color: #fff9c2; } .border-yellow-lightest { border-color: #fcfbeb; } .border-green-darkest { border-color: #0f2f21; } .border-green-darker { border-color: #1a4731; } .border-green-dark { border-color: #1f9d55; } .border-green { border-color: #38c172; } .border-green-light { border-color: #51d88a; } .border-green-lighter { border-color: #a2f5bf; } .border-green-lightest { border-color: #e3fcec; } .border-teal-darkest { border-color: #0d3331; } .border-teal-darker { border-color: #20504f; } .border-teal-dark { border-color: #38a89d; } .border-teal { border-color: #4dc0b5; } .border-teal-light { border-color: #64d5ca; } .border-teal-lighter { border-color: #a0f0ed; } .border-teal-lightest { border-color: #e8fffe; } .border-blue-darkest { border-color: #12283a; } .border-blue-darker { border-color: #1c3d5a; } .border-blue-dark { border-color: #2779bd; } .border-blue { border-color: #3490dc; } .border-blue-light { border-color: #6cb2eb; } .border-blue-lighter { border-color: #bcdefa; } .border-blue-lightest { border-color: #eff8ff; } .border-indigo-darkest { border-color: #191e38; } .border-indigo-darker { border-color: #2f365f; } .border-indigo-dark { border-color: #5661b3; } .border-indigo { border-color: #6574cd; } .border-indigo-light { border-color: #7886d7; } .border-indigo-lighter { border-color: #b2b7ff; } .border-indigo-lightest { border-color: #e6e8ff; } .border-purple-darkest { border-color: #21183c; } .border-purple-darker { border-color: #382b5f; } .border-purple-dark { border-color: #794acf; } .border-purple { border-color: #9561e2; } .border-purple-light { border-color: #a779e9; } .border-purple-lighter { border-color: #d6bbfc; } .border-purple-lightest { border-color: #f3ebff; } .border-pink-darkest { border-color: #451225; } .border-pink-darker { border-color: #6f213f; } .border-pink-dark { border-color: #eb5286; } .border-pink { border-color: #f66d9b; } .border-pink-light { border-color: #fa7ea8; } .border-pink-lighter { border-color: #ffbbca; } .border-pink-lightest { border-color: #ffebef; } .hover\:border-transparent:hover { border-color: transparent; } .hover\:border-black:hover { border-color: #22292f; } .hover\:border-grey-darkest:hover { border-color: #3d4852; } .hover\:border-grey-darker:hover { border-color: #606f7b; } .hover\:border-grey-dark:hover { border-color: #8795a1; } .hover\:border-grey:hover { border-color: #b8c2cc; } .hover\:border-grey-light:hover { border-color: #dae1e7; } .hover\:border-grey-lighter:hover { border-color: #f1f5f8; } .hover\:border-grey-lightest:hover { border-color: #f8fafc; } .hover\:border-white:hover { border-color: #fff; } .hover\:border-red-darkest:hover { border-color: #3b0d0c; } .hover\:border-red-darker:hover { border-color: #621b18; } .hover\:border-red-dark:hover { border-color: #cc1f1a; } .hover\:border-red:hover { border-color: #e3342f; } .hover\:border-red-light:hover { border-color: #ef5753; } .hover\:border-red-lighter:hover { border-color: #f9acaa; } .hover\:border-red-lightest:hover { border-color: #fcebea; } .hover\:border-orange-darkest:hover { border-color: #462a16; } .hover\:border-orange-darker:hover { border-color: #613b1f; } .hover\:border-orange-dark:hover { border-color: #de751f; } .hover\:border-orange:hover { border-color: #f6993f; } .hover\:border-orange-light:hover { border-color: #faad63; } .hover\:border-orange-lighter:hover { border-color: #fcd9b6; } .hover\:border-orange-lightest:hover { border-color: #fff5eb; } .hover\:border-yellow-darkest:hover { border-color: #453411; } .hover\:border-yellow-darker:hover { border-color: #684f1d; } .hover\:border-yellow-dark:hover { border-color: #f2d024; } .hover\:border-yellow:hover { border-color: #ffed4a; } .hover\:border-yellow-light:hover { border-color: #fff382; } .hover\:border-yellow-lighter:hover { border-color: #fff9c2; } .hover\:border-yellow-lightest:hover { border-color: #fcfbeb; } .hover\:border-green-darkest:hover { border-color: #0f2f21; } .hover\:border-green-darker:hover { border-color: #1a4731; } .hover\:border-green-dark:hover { border-color: #1f9d55; } .hover\:border-green:hover { border-color: #38c172; } .hover\:border-green-light:hover { border-color: #51d88a; } .hover\:border-green-lighter:hover { border-color: #a2f5bf; } .hover\:border-green-lightest:hover { border-color: #e3fcec; } .hover\:border-teal-darkest:hover { border-color: #0d3331; } .hover\:border-teal-darker:hover { border-color: #20504f; } .hover\:border-teal-dark:hover { border-color: #38a89d; } .hover\:border-teal:hover { border-color: #4dc0b5; } .hover\:border-teal-light:hover { border-color: #64d5ca; } .hover\:border-teal-lighter:hover { border-color: #a0f0ed; } .hover\:border-teal-lightest:hover { border-color: #e8fffe; } .hover\:border-blue-darkest:hover { border-color: #12283a; } .hover\:border-blue-darker:hover { border-color: #1c3d5a; } .hover\:border-blue-dark:hover { border-color: #2779bd; } .hover\:border-blue:hover { border-color: #3490dc; } .hover\:border-blue-light:hover { border-color: #6cb2eb; } .hover\:border-blue-lighter:hover { border-color: #bcdefa; } .hover\:border-blue-lightest:hover { border-color: #eff8ff; } .hover\:border-indigo-darkest:hover { border-color: #191e38; } .hover\:border-indigo-darker:hover { border-color: #2f365f; } .hover\:border-indigo-dark:hover { border-color: #5661b3; } .hover\:border-indigo:hover { border-color: #6574cd; } .hover\:border-indigo-light:hover { border-color: #7886d7; } .hover\:border-indigo-lighter:hover { border-color: #b2b7ff; } .hover\:border-indigo-lightest:hover { border-color: #e6e8ff; } .hover\:border-purple-darkest:hover { border-color: #21183c; } .hover\:border-purple-darker:hover { border-color: #382b5f; } .hover\:border-purple-dark:hover { border-color: #794acf; } .hover\:border-purple:hover { border-color: #9561e2; } .hover\:border-purple-light:hover { border-color: #a779e9; } .hover\:border-purple-lighter:hover { border-color: #d6bbfc; } .hover\:border-purple-lightest:hover { border-color: #f3ebff; } .hover\:border-pink-darkest:hover { border-color: #451225; } .hover\:border-pink-darker:hover { border-color: #6f213f; } .hover\:border-pink-dark:hover { border-color: #eb5286; } .hover\:border-pink:hover { border-color: #f66d9b; } .hover\:border-pink-light:hover { border-color: #fa7ea8; } .hover\:border-pink-lighter:hover { border-color: #ffbbca; } .hover\:border-pink-lightest:hover { border-color: #ffebef; } .focus\:border-transparent:focus { border-color: transparent; } .focus\:border-black:focus { border-color: #22292f; } .focus\:border-grey-darkest:focus { border-color: #3d4852; } .focus\:border-grey-darker:focus { border-color: #606f7b; } .focus\:border-grey-dark:focus { border-color: #8795a1; } .focus\:border-grey:focus { border-color: #b8c2cc; } .focus\:border-grey-light:focus { border-color: #dae1e7; } .focus\:border-grey-lighter:focus { border-color: #f1f5f8; } .focus\:border-grey-lightest:focus { border-color: #f8fafc; } .focus\:border-white:focus { border-color: #fff; } .focus\:border-red-darkest:focus { border-color: #3b0d0c; } .focus\:border-red-darker:focus { border-color: #621b18; } .focus\:border-red-dark:focus { border-color: #cc1f1a; } .focus\:border-red:focus { border-color: #e3342f; } .focus\:border-red-light:focus { border-color: #ef5753; } .focus\:border-red-lighter:focus { border-color: #f9acaa; } .focus\:border-red-lightest:focus { border-color: #fcebea; } .focus\:border-orange-darkest:focus { border-color: #462a16; } .focus\:border-orange-darker:focus { border-color: #613b1f; } .focus\:border-orange-dark:focus { border-color: #de751f; } .focus\:border-orange:focus { border-color: #f6993f; } .focus\:border-orange-light:focus { border-color: #faad63; } .focus\:border-orange-lighter:focus { border-color: #fcd9b6; } .focus\:border-orange-lightest:focus { border-color: #fff5eb; } .focus\:border-yellow-darkest:focus { border-color: #453411; } .focus\:border-yellow-darker:focus { border-color: #684f1d; } .focus\:border-yellow-dark:focus { border-color: #f2d024; } .focus\:border-yellow:focus { border-color: #ffed4a; } .focus\:border-yellow-light:focus { border-color: #fff382; } .focus\:border-yellow-lighter:focus { border-color: #fff9c2; } .focus\:border-yellow-lightest:focus { border-color: #fcfbeb; } .focus\:border-green-darkest:focus { border-color: #0f2f21; } .focus\:border-green-darker:focus { border-color: #1a4731; } .focus\:border-green-dark:focus { border-color: #1f9d55; } .focus\:border-green:focus { border-color: #38c172; } .focus\:border-green-light:focus { border-color: #51d88a; } .focus\:border-green-lighter:focus { border-color: #a2f5bf; } .focus\:border-green-lightest:focus { border-color: #e3fcec; } .focus\:border-teal-darkest:focus { border-color: #0d3331; } .focus\:border-teal-darker:focus { border-color: #20504f; } .focus\:border-teal-dark:focus { border-color: #38a89d; } .focus\:border-teal:focus { border-color: #4dc0b5; } .focus\:border-teal-light:focus { border-color: #64d5ca; } .focus\:border-teal-lighter:focus { border-color: #a0f0ed; } .focus\:border-teal-lightest:focus { border-color: #e8fffe; } .focus\:border-blue-darkest:focus { border-color: #12283a; } .focus\:border-blue-darker:focus { border-color: #1c3d5a; } .focus\:border-blue-dark:focus { border-color: #2779bd; } .focus\:border-blue:focus { border-color: #3490dc; } .focus\:border-blue-light:focus { border-color: #6cb2eb; } .focus\:border-blue-lighter:focus { border-color: #bcdefa; } .focus\:border-blue-lightest:focus { border-color: #eff8ff; } .focus\:border-indigo-darkest:focus { border-color: #191e38; } .focus\:border-indigo-darker:focus { border-color: #2f365f; } .focus\:border-indigo-dark:focus { border-color: #5661b3; } .focus\:border-indigo:focus { border-color: #6574cd; } .focus\:border-indigo-light:focus { border-color: #7886d7; } .focus\:border-indigo-lighter:focus { border-color: #b2b7ff; } .focus\:border-indigo-lightest:focus { border-color: #e6e8ff; } .focus\:border-purple-darkest:focus { border-color: #21183c; } .focus\:border-purple-darker:focus { border-color: #382b5f; } .focus\:border-purple-dark:focus { border-color: #794acf; } .focus\:border-purple:focus { border-color: #9561e2; } .focus\:border-purple-light:focus { border-color: #a779e9; } .focus\:border-purple-lighter:focus { border-color: #d6bbfc; } .focus\:border-purple-lightest:focus { border-color: #f3ebff; } .focus\:border-pink-darkest:focus { border-color: #451225; } .focus\:border-pink-darker:focus { border-color: #6f213f; } .focus\:border-pink-dark:focus { border-color: #eb5286; } .focus\:border-pink:focus { border-color: #f66d9b; } .focus\:border-pink-light:focus { border-color: #fa7ea8; } .focus\:border-pink-lighter:focus { border-color: #ffbbca; } .focus\:border-pink-lightest:focus { border-color: #ffebef; } .rounded-none { border-radius: 0; } .rounded-sm { border-radius: .125rem; } .rounded { border-radius: .25rem; } .rounded-lg { border-radius: .5rem; } .rounded-full { border-radius: 9999px; } .rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; } .rounded-r-none { border-top-right-radius: 0; border-bottom-right-radius: 0; } .rounded-b-none { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .rounded-l-none { border-top-left-radius: 0; border-bottom-left-radius: 0; } .rounded-t-sm { border-top-left-radius: .125rem; border-top-right-radius: .125rem; } .rounded-r-sm { border-top-right-radius: .125rem; border-bottom-right-radius: .125rem; } .rounded-b-sm { border-bottom-right-radius: .125rem; border-bottom-left-radius: .125rem; } .rounded-l-sm { border-top-left-radius: .125rem; border-bottom-left-radius: .125rem; } .rounded-t { border-top-left-radius: .25rem; border-top-right-radius: .25rem; } .rounded-r { border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; } .rounded-b { border-bottom-right-radius: .25rem; border-bottom-left-radius: .25rem; } .rounded-l { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; } .rounded-t-lg { border-top-left-radius: .5rem; border-top-right-radius: .5rem; } .rounded-r-lg { border-top-right-radius: .5rem; border-bottom-right-radius: .5rem; } .rounded-b-lg { border-bottom-right-radius: .5rem; border-bottom-left-radius: .5rem; } .rounded-l-lg { border-top-left-radius: .5rem; border-bottom-left-radius: .5rem; } .rounded-t-full { border-top-left-radius: 9999px; border-top-right-radius: 9999px; } .rounded-r-full { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; } .rounded-b-full { border-bottom-right-radius: 9999px; border-bottom-left-radius: 9999px; } .rounded-l-full { border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; } .rounded-tl-none { border-top-left-radius: 0; } .rounded-tr-none { border-top-right-radius: 0; } .rounded-br-none { border-bottom-right-radius: 0; } .rounded-bl-none { border-bottom-left-radius: 0; } .rounded-tl-sm { border-top-left-radius: .125rem; } .rounded-tr-sm { border-top-right-radius: .125rem; } .rounded-br-sm { border-bottom-right-radius: .125rem; } .rounded-bl-sm { border-bottom-left-radius: .125rem; } .rounded-tl { border-top-left-radius: .25rem; } .rounded-tr { border-top-right-radius: .25rem; } .rounded-br { border-bottom-right-radius: .25rem; } .rounded-bl { border-bottom-left-radius: .25rem; } .rounded-tl-lg { border-top-left-radius: .5rem; } .rounded-tr-lg { border-top-right-radius: .5rem; } .rounded-br-lg { border-bottom-right-radius: .5rem; } .rounded-bl-lg { border-bottom-left-radius: .5rem; } .rounded-tl-full { border-top-left-radius: 9999px; } .rounded-tr-full { border-top-right-radius: 9999px; } .rounded-br-full { border-bottom-right-radius: 9999px; } .rounded-bl-full { border-bottom-left-radius: 9999px; } .border-solid { border-style: solid; } .border-dashed { border-style: dashed; } .border-dotted { border-style: dotted; } .border-none { border-style: none; } .border-0 { border-width: 0; } .border-2 { border-width: 2px; } .border-4 { border-width: 4px; } .border-8 { border-width: 8px; } .border { border-width: 1px; } .border-t-0 { border-top-width: 0; } .border-r-0 { border-right-width: 0; } .border-b-0 { border-bottom-width: 0; } .border-l-0 { border-left-width: 0; } .border-t-2 { border-top-width: 2px; } .border-r-2 { border-right-width: 2px; } .border-b-2 { border-bottom-width: 2px; } .border-l-2 { border-left-width: 2px; } .border-t-4 { border-top-width: 4px; } .border-r-4 { border-right-width: 4px; } .border-b-4 { border-bottom-width: 4px; } .border-l-4 { border-left-width: 4px; } .border-t-8 { border-top-width: 8px; } .border-r-8 { border-right-width: 8px; } .border-b-8 { border-bottom-width: 8px; } .border-l-8 { border-left-width: 8px; } .border-t { border-top-width: 1px; } .border-r { border-right-width: 1px; } .border-b { border-bottom-width: 1px; } .border-l { border-left-width: 1px; } .cursor-auto { cursor: auto; } .cursor-default { cursor: default; } .cursor-pointer { cursor: pointer; } .cursor-wait { cursor: wait; } .cursor-move { cursor: move; } .cursor-not-allowed { cursor: not-allowed; } .block { display: block; } .inline-block { display: inline-block; } .inline { display: inline; } .table { display: table; } .table-row { display: table-row; } .table-cell { display: table-cell; } .hidden { display: none; } .flex { display: flex; } .inline-flex { display: inline-flex; } .flex-row { flex-direction: row; } .flex-row-reverse { flex-direction: row-reverse; } .flex-col { flex-direction: column; } .flex-col-reverse { flex-direction: column-reverse; } .flex-wrap { flex-wrap: wrap; } .flex-wrap-reverse { flex-wrap: wrap-reverse; } .flex-no-wrap { flex-wrap: nowrap; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; } .items-center { align-items: center; } .items-baseline { align-items: baseline; } .items-stretch { align-items: stretch; } .self-auto { align-self: auto; } .self-start { align-self: flex-start; } .self-end { align-self: flex-end; } .self-center { align-self: center; } .self-stretch { align-self: stretch; } .justify-start { justify-content: flex-start; } .justify-end { justify-content: flex-end; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .justify-around { justify-content: space-around; } .content-center { align-content: center; } .content-start { align-content: flex-start; } .content-end { align-content: flex-end; } .content-between { align-content: space-between; } .content-around { align-content: space-around; } .flex-1 { flex: 1 1 0%; } .flex-auto { flex: 1 1 auto; } .flex-initial { flex: 0 1 auto; } .flex-none { flex: none; } .flex-grow { flex-grow: 1; } .flex-shrink { flex-shrink: 1; } .flex-no-grow { flex-grow: 0; } .flex-no-shrink { flex-shrink: 0; } .float-right { float: right; } .float-left { float: left; } .float-none { float: none; } .clearfix:after { content: ""; display: table; clear: both; } .font-sans { font-family: system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; } .font-serif { font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif; } .font-mono { font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; } .font-hairline { font-weight: 100; } .font-thin { font-weight: 200; } .font-light { font-weight: 300; } .font-normal { font-weight: 400; } .font-medium { font-weight: 500; } .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; } .font-extrabold { font-weight: 800; } .font-black { font-weight: 900; } .hover\:font-hairline:hover { font-weight: 100; } .hover\:font-thin:hover { font-weight: 200; } .hover\:font-light:hover { font-weight: 300; } .hover\:font-normal:hover { font-weight: 400; } .hover\:font-medium:hover { font-weight: 500; } .hover\:font-semibold:hover { font-weight: 600; } .hover\:font-bold:hover { font-weight: 700; } .hover\:font-extrabold:hover { font-weight: 800; } .hover\:font-black:hover { font-weight: 900; } .focus\:font-hairline:focus { font-weight: 100; } .focus\:font-thin:focus { font-weight: 200; } .focus\:font-light:focus { font-weight: 300; } .focus\:font-normal:focus { font-weight: 400; } .focus\:font-medium:focus { font-weight: 500; } .focus\:font-semibold:focus { font-weight: 600; } .focus\:font-bold:focus { font-weight: 700; } .focus\:font-extrabold:focus { font-weight: 800; } .focus\:font-black:focus { font-weight: 900; } .h-1 { height: .25rem; } .h-2 { height: .5rem; } .h-3 { height: .75rem; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-8 { height: 2rem; } .h-10 { height: 2.5rem; } .h-12 { height: 3rem; } .h-16 { height: 4rem; } .h-24 { height: 6rem; } .h-32 { height: 8rem; } .h-48 { height: 12rem; } .h-64 { height: 16rem; } .h-auto { height: auto; } .h-px { height: 1px; } .h-full { height: 100%; } .h-screen { height: 100vh; } .leading-none { line-height: 1; } .leading-tight { line-height: 1.25; } .leading-normal { line-height: 1.5; } .leading-loose { line-height: 2; } .m-0 { margin: 0; } .m-1 { margin: .25rem; } .m-2 { margin: .5rem; } .m-3 { margin: .75rem; } .m-4 { margin: 1rem; } .m-5 { margin: 1.25rem; } .m-6 { margin: 1.5rem; } .m-8 { margin: 2rem; } .m-10 { margin: 2.5rem; } .m-12 { margin: 3rem; } .m-16 { margin: 4rem; } .m-20 { margin: 5rem; } .m-24 { margin: 6rem; } .m-32 { margin: 8rem; } .m-auto { margin: auto; } .m-px { margin: 1px; } .my-0 { margin-top: 0; margin-bottom: 0; } .mx-0 { margin-left: 0; margin-right: 0; } .my-1 { margin-top: .25rem; margin-bottom: .25rem; } .mx-1 { margin-left: .25rem; margin-right: .25rem; } .my-2 { margin-top: .5rem; margin-bottom: .5rem; } .mx-2 { margin-left: .5rem; margin-right: .5rem; } .my-3 { margin-top: .75rem; margin-bottom: .75rem; } .mx-3 { margin-left: .75rem; margin-right: .75rem; } .my-4 { margin-top: 1rem; margin-bottom: 1rem; } .mx-4 { margin-left: 1rem; margin-right: 1rem; } .my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; } .mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } .my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; } .mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } .my-8 { margin-top: 2rem; margin-bottom: 2rem; } .mx-8 { margin-left: 2rem; margin-right: 2rem; } .my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; } .mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } .my-12 { margin-top: 3rem; margin-bottom: 3rem; } .mx-12 { margin-left: 3rem; margin-right: 3rem; } .my-16 { margin-top: 4rem; margin-bottom: 4rem; } .mx-16 { margin-left: 4rem; margin-right: 4rem; } .my-20 { margin-top: 5rem; margin-bottom: 5rem; } .mx-20 { margin-left: 5rem; margin-right: 5rem; } .my-24 { margin-top: 6rem; margin-bottom: 6rem; } .mx-24 { margin-left: 6rem; margin-right: 6rem; } .my-32 { margin-top: 8rem; margin-bottom: 8rem; } .mx-32 { margin-left: 8rem; margin-right: 8rem; } .my-auto { margin-top: auto; margin-bottom: auto; } .mx-auto { margin-left: auto; margin-right: auto; } .my-px { margin-top: 1px; margin-bottom: 1px; } .mx-px { margin-left: 1px; margin-right: 1px; } .mt-0 { margin-top: 0; } .mr-0 { margin-right: 0; } .mb-0 { margin-bottom: 0; } .ml-0 { margin-left: 0; } .mt-1 { margin-top: .25rem; } .mr-1 { margin-right: .25rem; } .mb-1 { margin-bottom: .25rem; } .ml-1 { margin-left: .25rem; } .mt-2 { margin-top: .5rem; } .mr-2 { margin-right: .5rem; } .mb-2 { margin-bottom: .5rem; } .ml-2 { margin-left: .5rem; } .mt-3 { margin-top: .75rem; } .mr-3 { margin-right: .75rem; } .mb-3 { margin-bottom: .75rem; } .ml-3 { margin-left: .75rem; } .mt-4 { margin-top: 1rem; } .mr-4 { margin-right: 1rem; } .mb-4 { margin-bottom: 1rem; } .ml-4 { margin-left: 1rem; } .mt-5 { margin-top: 1.25rem; } .mr-5 { margin-right: 1.25rem; } .mb-5 { margin-bottom: 1.25rem; } .ml-5 { margin-left: 1.25rem; } .mt-6 { margin-top: 1.5rem; } .mr-6 { margin-right: 1.5rem; } .mb-6 { margin-bottom: 1.5rem; } .ml-6 { margin-left: 1.5rem; } .mt-8 { margin-top: 2rem; } .mr-8 { margin-right: 2rem; } .mb-8 { margin-bottom: 2rem; } .ml-8 { margin-left: 2rem; } .mt-10 { margin-top: 2.5rem; } .mr-10 { margin-right: 2.5rem; } .mb-10 { margin-bottom: 2.5rem; } .ml-10 { margin-left: 2.5rem; } .mt-12 { margin-top: 3rem; } .mr-12 { margin-right: 3rem; } .mb-12 { margin-bottom: 3rem; } .ml-12 { margin-left: 3rem; } .mt-16 { margin-top: 4rem; } .mr-16 { margin-right: 4rem; } .mb-16 { margin-bottom: 4rem; } .ml-16 { margin-left: 4rem; } .mt-20 { margin-top: 5rem; } .mr-20 { margin-right: 5rem; } .mb-20 { margin-bottom: 5rem; } .ml-20 { margin-left: 5rem; } .mt-24 { margin-top: 6rem; } .mr-24 { margin-right: 6rem; } .mb-24 { margin-bottom: 6rem; } .ml-24 { margin-left: 6rem; } .mt-32 { margin-top: 8rem; } .mr-32 { margin-right: 8rem; } .mb-32 { margin-bottom: 8rem; } .ml-32 { margin-left: 8rem; } .mt-auto { margin-top: auto; } .mr-auto { margin-right: auto; } .mb-auto { margin-bottom: auto; } .ml-auto { margin-left: auto; } .mt-px { margin-top: 1px; } .mr-px { margin-right: 1px; } .mb-px { margin-bottom: 1px; } .ml-px { margin-left: 1px; } .max-h-full { max-height: 100%; } .max-h-screen { max-height: 100vh; } .max-w-xs { max-width: 20rem; } .max-w-sm { max-width: 30rem; } .max-w-md { max-width: 40rem; } .max-w-lg { max-width: 50rem; } .max-w-xl { max-width: 60rem; } .max-w-2xl { max-width: 70rem; } .max-w-3xl { max-width: 80rem; } .max-w-4xl { max-width: 90rem; } .max-w-5xl { max-width: 100rem; } .max-w-full { max-width: 100%; } .min-h-0 { min-height: 0; } .min-h-full { min-height: 100%; } .min-h-screen { min-height: 100vh; } .min-w-0 { min-width: 0; } .min-w-full { min-width: 100%; } .-m-0 { margin: 0; } .-m-1 { margin: -0.25rem; } .-m-2 { margin: -0.5rem; } .-m-3 { margin: -0.75rem; } .-m-4 { margin: -1rem; } .-m-5 { margin: -1.25rem; } .-m-6 { margin: -1.5rem; } .-m-8 { margin: -2rem; } .-m-10 { margin: -2.5rem; }