/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ /* Document ======== */ /** Use a better box model (opinionated). */ *, ::before, ::after { box-sizing: border-box; } /** Use a more readable tab size (opinionated). */ html { -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4; } /** 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; } /** Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */ body { font-family: system-ui, -apple-system, /* Firefox supports this but not yet `system-ui` */ 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; } /* Grouping content ================ */ /** 1. Add the correct height in Firefox. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) */ hr { height: 0; /* 1 */ color: inherit; /* 2 */ } /* Text-level semantics ==================== */ /** Add the correct text decoration in Chrome, Edge, and Safari. */ abbr[title] { -webkit-text-decoration: underline dotted; text-decoration: underline dotted; } /** Add the correct font weight in Edge and Safari. */ b, strong { font-weight: bolder; } /** 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) 2. Correct the odd 'em' font sizing in all browsers. */ code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, 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; } /* Tabular data ============ */ /** 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) */ table { text-indent: 0; /* 1 */ border-color: inherit; /* 2 */ } /* 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 */ } /** Remove the inheritance of text transform in Edge and Firefox. 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. */ ::-moz-focus-inner { border-style: none; padding: 0; } /** Restore the focus styles unset by the previous rule. */ :-moz-focusring { outline: 1px dotted ButtonText; } /** Remove the additional ':invalid' styles in Firefox. See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 */ :-moz-ui-invalid { box-shadow: none; } /** Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. */ legend { padding: 0; } /** Add the correct vertical alignment in Chrome and Firefox. */ progress { vertical-align: baseline; } /** Correct the cursor style of increment and decrement buttons in Safari. */ ::-webkit-inner-spin-button, ::-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. */ ::-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 Chrome and Safari. */ summary { display: list-item; }/** * 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. */ /** * Removes the default spacing and border for appropriate elements. */ blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; } button { background-color: transparent; background-image: none; } fieldset { margin: 0; padding: 0; } ol, ul { list-style: none; margin: 0; padding: 0; } /** * Tailwind custom reset styles */ /** * 1. Use the user's configured `sans` font-family (with Tailwind's default * sans-serif font stack as a fallback) as a sane default. * 2. Use Tailwind's default "normal" line-height so the user isn't forced * to override it to ensure consistency even when using the default theme. */ html { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */ line-height: 1.5; /* 2 */ } /** * Inherit font-family and line-height from `html` so users can set them as * a class directly on the `html` element. */ body { font-family: inherit; line-height: inherit; } /** * 1. Prevent padding and border from affecting element width. * * We used to set this in the html element and inherit from * the parent element for everything else. This caused issues * in shadow-dom-enhanced elements like
where the content * is wrapped by a div with box-sizing set to `content-box`. * * https://github.com/mozdevs/cssremedy/issues/4 * * * 2. 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 { box-sizing: border-box; /* 1 */ border-width: 0; /* 2 */ border-style: solid; /* 2 */ border-color: currentColor; /* 2 */ } /* * Ensure horizontal rules are visible by default */ hr { border-top-width: 1px; } /** * 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; } input::-moz-placeholder, textarea::-moz-placeholder { opacity: 1; color: #9bafa1; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { opacity: 1; color: #9bafa1; } input::placeholder, textarea::placeholder { opacity: 1; color: #9bafa1; } button, [role="button"] { cursor: pointer; } /** * Override legacy focus reset from Normalize with modern Firefox focus styles. * * This is actually an improvement over the new defaults in Firefox in our testing, * as it triggers the better focus styles even for links, which still use a dotted * outline in Firefox by default. */ :-moz-focusring { outline: auto; } table { border-collapse: collapse; } h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; } /** * Reset links to optimize for opt-in styling instead of * opt-out. */ a { color: inherit; text-decoration: inherit; } /** * Reset form element properties that are easy to forget to * style explicitly so you don't inadvertently introduce * styles that deviate from your design system. These styles * supplement a partial reset that is already applied by * normalize.css. */ button, input, optgroup, select, textarea { padding: 0; line-height: inherit; color: inherit; } /** * Use the configured 'mono' font family for elements that * are expected to be rendered with a monospace font, falling * back to the system monospace stack if there is no configured * 'mono' font family. */ pre, code, kbd, samp { font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace; } /** * 1. Make replaced elements `display: block` by default as that's * the behavior you want almost all of the time. Inspired by * CSS Remedy, with `svg` added as well. * * https://github.com/mozdevs/cssremedy/issues/14 * * 2. Add `vertical-align: middle` to align replaced elements more * sensibly by default when overriding `display` by adding a * utility like `inline`. * * This can trigger a poorly considered linting error in some * tools but is included by design. * * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210 */ img, svg, video, canvas, audio, iframe, embed, object { display: block; /* 1 */ vertical-align: middle; /* 2 */ } /** * Constrain images and videos to the parent width and preserve * their intrinsic aspect ratio. * * https://github.com/mozdevs/cssremedy/issues/14 */ img, video { max-width: 100%; height: auto; } /** * Ensure the default browser behavior of the `hidden` attribute. */ [hidden] { display: none; } *, ::before, ::after { --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); --tw-border-opacity: 1; border-color: rgba(229, 235, 231, var(--tw-border-opacity)); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(14, 165, 233, 0.5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-blur: var(--tw-empty,/*!*/ /*!*/); --tw-brightness: var(--tw-empty,/*!*/ /*!*/); --tw-contrast: var(--tw-empty,/*!*/ /*!*/); --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); --tw-invert: var(--tw-empty,/*!*/ /*!*/); --tw-saturate: var(--tw-empty,/*!*/ /*!*/); --tw-sepia: var(--tw-empty,/*!*/ /*!*/); --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } /* Headings */ h1, .h1 { margin-bottom: 0.5rem; font-size: 3rem; line-height: 1; font-weight: 700; line-height: 2.5rem; } h2, .h2 { margin-bottom: 0.5rem; font-size: 2.25rem; line-height: 2.5rem; font-weight: 700; line-height: 2rem; } h3, .h3 { margin-bottom: 0.5rem; font-size: 1.875rem; line-height: 2.25rem; font-weight: 700; line-height: 1.75rem; } h4, .h4 { margin-bottom: 0.5rem; font-size: 1.5rem; line-height: 2rem; font-weight: 700; line-height: 1.5rem; } h5, .h5 { margin-bottom: 0.5rem; font-size: 1.125rem; line-height: 1.75rem; font-weight: 700; line-height: 1.25rem; } h6, .h6 { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.5rem; font-weight: 700; line-height: 1rem; } /* Typography */ p { margin-bottom: 0.75rem; } p:last-child { margin-bottom: 0px; } a { word-break: break-all; --tw-text-opacity: 1; color: rgba(var(--color-primary), var(--tw-text-opacity)); } blockquote { margin-bottom: 1rem; border-left-width: 2px; --tw-border-opacity: 1; border-color: rgba(21, 128, 61, var(--tw-border-opacity)); --tw-bg-opacity: 1; background-color: rgba(220, 252, 231, var(--tw-bg-opacity)); } hr { margin-top: 0.75rem; margin-bottom: 0.75rem; } ul { margin-bottom: 0.75rem; } strong { font-weight: 700; } code { font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace; --tw-text-opacity: 1; color: rgba(219, 39, 119, var(--tw-text-opacity)); } .dark code { --tw-text-opacity: 1; color: rgba(249, 168, 212, var(--tw-text-opacity)); } pre { white-space: pre-wrap; /* Since CSS 2.1 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } /* Images */ img { display: inline; } @-webkit-keyframes pulse { 50% { opacity: .5; } } @keyframes pulse { 50% { opacity: .5; } } img[lazy=loading] { -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } img[width], img[height] { max-width: none; height: 24px; } /*Inputs*/ .label { margin-bottom: 0.25rem; display: block; font-size: 0.875rem; line-height: 1.25rem; font-weight: 700; line-height: 1.5; --tw-text-opacity: 1; color: rgba(55, 82, 62, var(--tw-text-opacity)); } .container { width: 100%; } @media (min-width: 640px) { .container { max-width: 640px; } } @media (min-width: 768px) { .container { max-width: 768px; } } @media (min-width: 1024px) { .container { max-width: 1024px; } } @media (min-width: 1280px) { .container { max-width: 1280px; } } @media (min-width: 1536px) { .container { max-width: 1536px; } } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } .pointer-events-none { pointer-events: none; } .visible { visibility: visible; } .fixed { position: fixed; } .absolute { position: absolute; } .relative { position: relative; } .sticky { position: -webkit-sticky; position: sticky; } .inset-y-0 { top: 0px; bottom: 0px; } .bottom-0 { bottom: 0px; } .left-0 { left: 0px; } .right-0 { right: 0px; } .top-0 { top: 0px; } .right-4 { right: 1rem; } .top-2 { top: 0.5rem; } .top-3 { top: 0.75rem; } .right-2 { right: 0.5rem; } .-top-1\.5 { top: -0.375rem; } .-right-3 { right: -0.75rem; } .-top-1 { top: -0.25rem; } .right-3 { right: 0.75rem; } .-right-2\.5 { right: -0.625rem; } .-right-2 { right: -0.5rem; } .bottom-3 { bottom: 0.75rem; } .left-3 { left: 0.75rem; } .-top-12 { top: -3rem; } .right-3\.5 { right: 0.875rem; } .top-3\.5 { top: 0.875rem; } .top-4 { top: 1rem; } .z-20 { z-index: 20; } .z-10 { z-index: 10; } .z-100 { z-index: 100; } .z-\[1000\] { z-index: 1000; } .col-span-full { grid-column: 1 / -1; } .float-right { float: right; } .m-0 { margin: 0px; } .m-5 { margin: 1.25rem; } .m-auto { margin: auto; } .m-0\.5 { margin: 0.125rem; } .my-auto { margin-top: auto; margin-bottom: auto; } .my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; } .my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; } .mx-0 { margin-left: 0px; margin-right: 0px; } .mx-auto { margin-left: auto; margin-right: auto; } .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } .mx-4 { margin-left: 1rem; margin-right: 1rem; } .my-0 { margin-top: 0px; margin-bottom: 0px; } .-mx-4 { margin-left: -1rem; margin-right: -1rem; } .my-4 { margin-top: 1rem; margin-bottom: 1rem; } .-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } .-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } .my-2\.5 { margin-top: 0.625rem; margin-bottom: 0.625rem; } .mx-8 { margin-left: 2rem; margin-right: 2rem; } .my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; } .my-8 { margin-top: 2rem; margin-bottom: 2rem; } .mb-5 { margin-bottom: 1.25rem; } .ml-2 { margin-left: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mr-2 { margin-right: 0.5rem; } .mr-1 { margin-right: 0.25rem; } .ml-3 { margin-left: 0.75rem; } .mb-0 { margin-bottom: 0px; } .ml-auto { margin-left: auto; } .mb-3 { margin-bottom: 0.75rem; } .mr-3 { margin-right: 0.75rem; } .mt-2 { margin-top: 0.5rem; } .ml-1 { margin-left: 0.25rem; } .mt-5 { margin-top: 1.25rem; } .mb-1 { margin-bottom: 0.25rem; } .mt-0 { margin-top: 0px; } .mt-1 { margin-top: 0.25rem; } .mr-auto { margin-right: auto; } .mr-4 { margin-right: 1rem; } .mt-4 { margin-top: 1rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mr-0 { margin-right: 0px; } .mb-2 { margin-bottom: 0.5rem; } .mt-auto { margin-top: auto; } .mb-auto { margin-bottom: auto; } .-mt-12 { margin-top: -3rem; } .mr-2\.5 { margin-right: 0.625rem; } .mt-\[-1px\] { margin-top: -1px; } .-ml-5 { margin-left: -1.25rem; } .-ml-4 { margin-left: -1rem; } .-mt-1 { margin-top: -0.25rem; } .ml-4 { margin-left: 1rem; } .mt-2\.5 { margin-top: 0.625rem; } .-mb-0\.5 { margin-bottom: -0.125rem; } .-mb-0 { margin-bottom: 0px; } .mb-1\.5 { margin-bottom: 0.375rem; } .mt-6 { margin-top: 1.5rem; } .mr-5 { margin-right: 1.25rem; } .block { display: block; } .inline-block { display: inline-block; } .flex { display: flex; } .inline-flex { display: inline-flex; } .table { display: table; } .grid { display: grid; } .hidden { display: none; } .h-64 { height: 16rem; } .h-32 { height: 8rem; } .h-20 { height: 5rem; } .h-12 { height: 3rem; } .h-full { height: 100%; } .h-14 { height: 3.5rem; } .h-9 { height: 2.25rem; } .h-screen { height: 100vh; } .h-10 { height: 2.5rem; } .h-16 { height: 4rem; } .h-6 { height: 1.5rem; } .h-\[10px\] { height: 10px; } .h-8 { height: 2rem; } .h-56 { height: 14rem; } .h-48 { height: 12rem; } .h-1 { height: 0.25rem; } .h-5 { height: 1.25rem; } .h-0\.5 { height: 0.125rem; } .h-0 { height: 0px; } .h-7 { height: 1.75rem; } .max-h-12 { max-height: 3rem; } .max-h-\[20rem\] { max-height: 20rem; } .min-h-full { min-height: 100%; } .w-20 { width: 5rem; } .w-12 { width: 3rem; } .w-1\/2 { width: 50%; } .w-full { width: 100%; } .w-14 { width: 3.5rem; } .w-9 { width: 2.25rem; } .w-\[1px\] { width: 1px; } .w-10 { width: 2.5rem; } .w-6 { width: 1.5rem; } .w-32 { width: 8rem; } .w-16 { width: 4rem; } .w-48 { width: 12rem; } .w-\[126px\] { width: 126px; } .w-80 { width: 20rem; } .w-\[14px\] { width: 14px; } .w-24 { width: 6rem; } .w-8 { width: 2rem; } .w-72 { width: 18rem; } .w-56 { width: 14rem; } .w-5 { width: 1.25rem; } .w-44 { width: 11rem; } .w-7 { width: 1.75rem; } .min-w-full { min-width: 100%; } .max-w-3xl { max-width: 48rem; } .max-w-screen-2xl { max-width: 1536px; } .max-w-2xl { max-width: 42rem; } .max-w-md { max-width: 28rem; } .max-w-xl { max-width: 36rem; } .flex-1 { flex: 1 1 0%; } .flex-shrink-0 { flex-shrink: 0; } .transform { transform: var(--tw-transform); } @keyframes pulse { 50% { opacity: .5; } } .animate-pulse { -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } @-webkit-keyframes spin { to { transform: rotate(360deg); } } @keyframes spin { to { transform: rotate(360deg); } } .animate-spin { -webkit-animation: spin 1s linear infinite; animation: spin 1s linear infinite; } .cursor-not-allowed { cursor: not-allowed; } .cursor-pointer { cursor: pointer; } .select-none { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .resize-y { resize: vertical; } .resize { resize: both; } .list-none { list-style-type: none; } .appearance-none { -webkit-appearance: none; -moz-appearance: none; appearance: none; } .grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); } .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .flex-row { flex-direction: row; } .flex-row-reverse { flex-direction: row-reverse; } .flex-col { flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .flex-nowrap { flex-wrap: nowrap; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; } .items-center { align-items: center; } .justify-end { justify-content: flex-end; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .justify-around { justify-content: space-around; } .gap-3 { gap: 0.75rem; } .gap-6 { gap: 1.5rem; } .gap-2 { gap: 0.5rem; } .gap-x-3 { -moz-column-gap: 0.75rem; column-gap: 0.75rem; } .gap-y-2 { row-gap: 0.5rem; } .space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); } .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } .space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } .space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); } .space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); } .space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(1rem * var(--tw-space-y-reverse)); } .space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } .space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } .space-y-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); } .divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } .divide-y > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 0; border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); } .divide-gray-900 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(17, 40, 23, var(--tw-divide-opacity)); } .divide-gray-400 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(155, 175, 161, var(--tw-divide-opacity)); } .divide-gray-300 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(209, 219, 213, var(--tw-divide-opacity)); } .divide-red-300 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } .divide-gray-400\/30 > :not([hidden]) ~ :not([hidden]) { border-color: rgba(155, 175, 161, 0.3); } .overflow-auto { overflow: auto; } .overflow-hidden { overflow: hidden; } .overflow-x-auto { overflow-x: auto; } .overflow-y-auto { overflow-y: auto; } .overflow-y-hidden { overflow-y: hidden; } .overflow-y-scroll { overflow-y: scroll; } .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .whitespace-nowrap { white-space: nowrap; } .break-words { overflow-wrap: break-word; } .rounded { border-radius: 0.25rem; } .rounded-lg { border-radius: 0.5rem; } .rounded-md { border-radius: 0.375rem; } .rounded-sm { border-radius: 0.125rem; } .rounded-full { border-radius: 9999px; } .rounded-b { border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } .rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } .rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; } .rounded-b-xl { border-bottom-right-radius: 0.75rem; border-bottom-left-radius: 0.75rem; } .rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; } .rounded-t-none { border-top-left-radius: 0px; border-top-right-radius: 0px; } .border-0 { border-width: 0px; } .border { border-width: 1px; } .border-2 { border-width: 2px; } .border-t { border-top-width: 1px; } .border-l { border-left-width: 1px; } .border-b { border-bottom-width: 1px; } .border-dashed { border-style: dashed; } .border-white { --tw-border-opacity: 1; border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } .border-gray-300 { --tw-border-opacity: 1; border-color: rgba(209, 219, 213, var(--tw-border-opacity)); } .border-gray-400 { --tw-border-opacity: 1; border-color: rgba(155, 175, 161, var(--tw-border-opacity)); } .border-gray-900 { --tw-border-opacity: 1; border-color: rgba(17, 40, 23, var(--tw-border-opacity)); } .border-gray-800 { --tw-border-opacity: 1; border-color: rgba(31, 55, 38, var(--tw-border-opacity)); } .border-gray-700 { --tw-border-opacity: 1; border-color: rgba(55, 82, 62, var(--tw-border-opacity)); } .border-red-900 { --tw-border-opacity: 1; border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } .border-green-900 { --tw-border-opacity: 1; border-color: rgba(20, 83, 45, var(--tw-border-opacity)); } .border-red-200 { --tw-border-opacity: 1; border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } .border-yellow-600 { --tw-border-opacity: 1; border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } .border-gray-500 { --tw-border-opacity: 1; border-color: rgba(106, 128, 115, var(--tw-border-opacity)); } .border-black { --tw-border-opacity: 1; border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } .border-opacity-10 { --tw-border-opacity: 0.1; } .bg-primary { --tw-bg-opacity: 1; background-color: rgba(var(--color-primary), var(--tw-bg-opacity)); } .bg-transparent { background-color: transparent; } .bg-gray-100 { --tw-bg-opacity: 1; background-color: rgba(244, 246, 244, var(--tw-bg-opacity)); } .bg-white { --tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } .bg-gray-500 { --tw-bg-opacity: 1; background-color: rgba(106, 128, 115, var(--tw-bg-opacity)); } .bg-gray-700 { --tw-bg-opacity: 1; background-color: rgba(55, 82, 62, var(--tw-bg-opacity)); } .bg-gray-300 { --tw-bg-opacity: 1; background-color: rgba(209, 219, 213, var(--tw-bg-opacity)); } .bg-gray-800 { --tw-bg-opacity: 1; background-color: rgba(31, 55, 38, var(--tw-bg-opacity)); } .bg-gray-900 { --tw-bg-opacity: 1; background-color: rgba(17, 40, 23, var(--tw-bg-opacity)); } .bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); } .bg-red-600 { --tw-bg-opacity: 1; background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } .bg-gray-200 { --tw-bg-opacity: 1; background-color: rgba(229, 235, 231, var(--tw-bg-opacity)); } .bg-gray-300\/50 { background-color: rgba(209, 219, 213, 0.5); } .bg-red-800 { --tw-bg-opacity: 1; background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } .bg-green-600 { --tw-bg-opacity: 1; background-color: rgba(22, 163, 74, var(--tw-bg-opacity)); } .bg-yellow-400 { --tw-bg-opacity: 1; background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } .bg-red-100 { --tw-bg-opacity: 1; background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } .bg-red-200 { --tw-bg-opacity: 1; background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } .bg-yellow-200 { --tw-bg-opacity: 1; background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } .bg-blue-100 { --tw-bg-opacity: 1; background-color: rgba(224, 242, 254, var(--tw-bg-opacity)); } .bg-yellow-500 { --tw-bg-opacity: 1; background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } .bg-gray-400 { --tw-bg-opacity: 1; background-color: rgba(155, 175, 161, var(--tw-bg-opacity)); } .bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); } .bg-gray-300\/40 { background-color: rgba(209, 219, 213, 0.4); } .bg-green-500 { --tw-bg-opacity: 1; background-color: rgba(34, 197, 94, var(--tw-bg-opacity)); } .bg-red-500 { --tw-bg-opacity: 1; background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } .bg-opacity-40 { --tw-bg-opacity: 0.4; } .bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); } .bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); } .from-red-200 { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } .from-gray-300 { --tw-gradient-from: #d1dbd5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 219, 213, 0)); } .from-gray-200 { --tw-gradient-from: #e5ebe7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 235, 231, 0)); } .from-gray-500 { --tw-gradient-from: #6a8073; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 128, 115, 0)); } .from-gray-800 { --tw-gradient-from: #1f3726; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 55, 38, 0)); } .from-red-700 { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } .from-green-700 { --tw-gradient-from: #15803d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 128, 61, 0)); } .from-yellow-600 { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } .from-red-800 { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } .to-gray-200 { --tw-gradient-to: #e5ebe7; } .to-gray-100 { --tw-gradient-to: #f4f6f4; } .to-gray-400 { --tw-gradient-to: #9bafa1; } .to-gray-700 { --tw-gradient-to: #37523e; } .to-red-600 { --tw-gradient-to: #dc2626; } .to-green-600 { --tw-gradient-to: #16a34a; } .to-yellow-500 { --tw-gradient-to: #f59e0b; } .to-red-700 { --tw-gradient-to: #b91c1c; } .bg-cover { background-size: cover; } .bg-center { background-position: center; } .object-contain { -o-object-fit: contain; object-fit: contain; } .object-cover { -o-object-fit: cover; object-fit: cover; } .p-0 { padding: 0px; } .p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; } .p-2 { padding: 0.5rem; } .p-5 { padding: 1.25rem; } .p-\[3px\] { padding: 3px; } .p-2\.5 { padding: 0.625rem; } .p-1 { padding: 0.25rem; } .p-0\.5 { padding: 0.125rem; } .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; } .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; } .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; } .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; } .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; } .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .py-0 { padding-top: 0px; padding-bottom: 0px; } .px-0 { padding-left: 0px; padding-right: 0px; } .py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; } .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; } .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; } .px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; } .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; } .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .py-24 { padding-top: 6rem; padding-bottom: 6rem; } .py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; } .py-36 { padding-top: 9rem; padding-bottom: 9rem; } .pt-3 { padding-top: 0.75rem; } .pb-0 { padding-bottom: 0px; } .pt-2 { padding-top: 0.5rem; } .pt-4 { padding-top: 1rem; } .pl-0 { padding-left: 0px; } .pr-1 { padding-right: 0.25rem; } .pl-1 { padding-left: 0.25rem; } .pl-2 { padding-left: 0.5rem; } .pr-2 { padding-right: 0.5rem; } .pr-0 { padding-right: 0px; } .pb-3 { padding-bottom: 0.75rem; } .pl-3 { padding-left: 0.75rem; } .pb-1 { padding-bottom: 0.25rem; } .pt-0 { padding-top: 0px; } .pt-16 { padding-top: 4rem; } .pr-7 { padding-right: 1.75rem; } .pt-28 { padding-top: 7rem; } .pb-12 { padding-bottom: 3rem; } .text-left { text-align: left; } .text-center { text-align: center; } .text-right { text-align: right; } .align-top { vertical-align: top; } .align-middle { vertical-align: middle; } .font-heading { font-family: Delius Swash Caps; } .font-serif { font-family: Georgia; } .text-lg { font-size: 1.125rem; line-height: 1.75rem; } .text-base { font-size: 1rem; line-height: 1.5rem; } .text-sm { font-size: 0.875rem; line-height: 1.25rem; } .text-xl { font-size: 1.25rem; line-height: 1.75rem; } .text-xs { font-size: 0.75rem; line-height: 1rem; } .text-2xl { font-size: 1.5rem; line-height: 2rem; } .font-bold { font-weight: 700; } .font-normal { font-weight: 400; } .font-medium { font-weight: 500; } .uppercase { text-transform: uppercase; } .capitalize { text-transform: capitalize; } .italic { font-style: italic; } .leading-normal { line-height: 1.5; } .leading-none { line-height: 1; } .leading-5 { line-height: 1.25rem; } .leading-4 { line-height: 1rem; } .tracking-wider { letter-spacing: 0.05em; } .text-white { --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .text-primary { --tw-text-opacity: 1; color: rgba(var(--color-primary), var(--tw-text-opacity)); } .text-black { --tw-text-opacity: 1; color: rgba(0, 0, 0, var(--tw-text-opacity)); } .text-gray-500 { --tw-text-opacity: 1; color: rgba(106, 128, 115, var(--tw-text-opacity)); } .text-gray-400 { --tw-text-opacity: 1; color: rgba(155, 175, 161, var(--tw-text-opacity)); } .text-gray-600 { --tw-text-opacity: 1; color: rgba(76, 99, 81, var(--tw-text-opacity)); } .text-gray-700 { --tw-text-opacity: 1; color: rgba(55, 82, 62, var(--tw-text-opacity)); } .text-red-600 { --tw-text-opacity: 1; color: rgba(220, 38, 38, var(--tw-text-opacity)); } .text-gray-900 { --tw-text-opacity: 1; color: rgba(17, 40, 23, var(--tw-text-opacity)); } .text-gray-200 { --tw-text-opacity: 1; color: rgba(229, 235, 231, var(--tw-text-opacity)); } .text-gray-100 { --tw-text-opacity: 1; color: rgba(244, 246, 244, var(--tw-text-opacity)); } .text-gray-300 { --tw-text-opacity: 1; color: rgba(209, 219, 213, var(--tw-text-opacity)); } .text-yellow-500 { --tw-text-opacity: 1; color: rgba(245, 158, 11, var(--tw-text-opacity)); } .text-red-900 { --tw-text-opacity: 1; color: rgba(127, 29, 29, var(--tw-text-opacity)); } .text-green-600 { --tw-text-opacity: 1; color: rgba(22, 163, 74, var(--tw-text-opacity)); } .text-red-500 { --tw-text-opacity: 1; color: rgba(239, 68, 68, var(--tw-text-opacity)); } .text-yellow-900 { --tw-text-opacity: 1; color: rgba(120, 53, 15, var(--tw-text-opacity)); } .text-blue-500 { --tw-text-opacity: 1; color: rgba(14, 165, 233, var(--tw-text-opacity)); } .text-red-700 { --tw-text-opacity: 1; color: rgba(185, 28, 28, var(--tw-text-opacity)); } .text-yellow-600 { --tw-text-opacity: 1; color: rgba(217, 119, 6, var(--tw-text-opacity)); } .text-green-500 { --tw-text-opacity: 1; color: rgba(34, 197, 94, var(--tw-text-opacity)); } .text-blue-200 { --tw-text-opacity: 1; color: rgba(186, 230, 253, var(--tw-text-opacity)); } .text-red-200 { --tw-text-opacity: 1; color: rgba(254, 202, 202, var(--tw-text-opacity)); } .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .opacity-25 { opacity: 0.25; } .opacity-50 { opacity: 0.5; } .opacity-\[\.16\] { opacity: .16; } .shadow-sm { --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-none { --tw-shadow: 0 0 #0000; box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-md { --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow { --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-inset-t-white-10 { --tw-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset; box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-lg { --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-inset-r-white-05 { --tw-shadow: 1px 0 0 rgba(255, 255, 255, 0.05) inset; box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-inset-t-white-05 { --tw-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset; box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-inner { --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .filter { filter: var(--tw-filter); } .transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } .text-shadow { text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12) } .text-shadow-t { text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12) } .text-shadow-light { text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) } .sub-header-shadow { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset, -1px -1px 0.5px rgba(17, 40, 19, 0.1) inset; } .gradient-mask { -webkit-mask-image: linear-gradient(180deg,#000 60%,transparent); mask-image: linear-gradient(180deg,#000 60%,transparent) } /* Chrome, Safari and Opera */ .no-scrollbar::-webkit-scrollbar { display: none; } .no-scrollbar { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } /* ----------------------- VARIABLES --------------------- */ :root { --color-primary: 220, 38, 38; } /* ---------------- RESPONSIVE UTILITIES ----------------- */ /* -------------------- BASE STYLING -------------------- */ /* ----------------------- INPUTS ----------------------- */ .form-input { display: block; width: 100%; -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0.25rem; border-width: 1px; --tw-border-opacity: 1; border-color: rgba(209, 219, 213, var(--tw-border-opacity)); --tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); padding: 0.5rem; font-size: 1.125rem; line-height: 1.75rem; --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .form-input:hover { --tw-border-opacity: 1; border-color: rgba(155, 175, 161, var(--tw-border-opacity)); } .form-input:focus { --tw-border-opacity: 1; border-color: rgba(125, 211, 252, var(--tw-border-opacity)); --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); --tw-ring-opacity: 1; --tw-ring-color: rgba(186, 230, 253, var(--tw-ring-opacity)); --tw-ring-opacity: 0.5; } @media (min-width: 640px) { .form-input { font-size: 1rem; line-height: 1.5rem; } } /* ---------------------- BUTTONS ----------------------- */ .btn { display: inline-block; border-radius: 0.375rem; border-width: 1px; padding-left: 1rem; padding-right: 1rem; padding-top: 0.5rem; padding-bottom: 0.5rem; font-size: 0.875rem; line-height: 1.25rem; font-weight: 700; --tw-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset; box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); } .btn:focus { outline: 2px solid transparent; outline-offset: 2px; } .btn:active { --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .btn:disabled { opacity: 0.5; } .btn-red { --tw-border-opacity: 1; border-color: rgba(127, 29, 29, var(--tw-border-opacity)); background-image: linear-gradient(to top, var(--tw-gradient-stops)); --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); --tw-gradient-to: #dc2626; --tw-text-opacity: 1; color: rgba(244, 246, 244, var(--tw-text-opacity)); } .btn-red:hover { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); --tw-gradient-to: #b91c1c; } .btn-red:focus { --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .btn-green { --tw-border-opacity: 1; border-color: rgba(20, 83, 45, var(--tw-border-opacity)); background-image: linear-gradient(to top, var(--tw-gradient-stops)); --tw-gradient-from: #15803d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 128, 61, 0)); --tw-gradient-to: #16a34a; --tw-text-opacity: 1; color: rgba(244, 246, 244, var(--tw-text-opacity)); } .btn-green:hover { --tw-gradient-from: #16a34a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 163, 74, 0)); --tw-gradient-to: #15803d; } .btn-green:focus { --tw-text-opacity: 1; color: rgba(229, 235, 231, var(--tw-text-opacity)); } .btn-gray { --tw-border-opacity: 1; border-color: rgba(209, 219, 213, var(--tw-border-opacity)); background-image: linear-gradient(to top, var(--tw-gradient-stops)); --tw-gradient-from: #e5ebe7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 235, 231, 0)); --tw-gradient-to: #f4f6f4; --tw-text-opacity: 1; color: rgba(55, 82, 62, var(--tw-text-opacity)); } .btn-gray:hover { --tw-gradient-from: #f4f6f4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 246, 244, 0)); --tw-gradient-to: #e5ebe7; } .btn-gray:focus { --tw-text-opacity: 1; color: rgba(17, 40, 23, var(--tw-text-opacity)); } /* ----------------------- BADGES ----------------------- */ .badge { border-radius: 0.25rem; background-image: linear-gradient(to top, var(--tw-gradient-stops)); padding-left: 0.25rem; padding-right: 0.25rem; padding-top: 0.125rem; padding-bottom: 0.125rem; font-size: 0.875rem; line-height: 1.25rem; font-weight: 700; line-height: 1.5; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); } .badge-pink { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); --tw-gradient-to: #ec4899; --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .badge-purple { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); --tw-gradient-to: #a855f7; --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .badge-red { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); --tw-gradient-to: #ef4444; --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .badge-yellow { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); --tw-gradient-to: #f59e0b; --tw-text-opacity: 1; color: rgba(120, 53, 15, var(--tw-text-opacity)); } .badge-blue { --tw-gradient-from: #0284c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 132, 199, 0)); --tw-gradient-to: #0ea5e9; --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .badge-green { --tw-gradient-from: #16a34a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 163, 74, 0)); --tw-gradient-to: #22c55e; --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .badge-primary { --tw-bg-opacity: 1; background-color: rgba(var(--color-primary), var(--tw-bg-opacity)); --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } /* ---------------------- TOOLTIPS ---------------------- */ .tooltip-inner { background-color: @apply text-black; color: @apply text-white; } /* ----------------------- EMOJI ------------------------ */ img.emoji { width: 30px; height: 30px; display: inline-block; -o-object-fit: contain; object-fit: contain} img.emoji-md { width: 60px; height: 60px; display: inline-block; -o-object-fit: contain; object-fit: contain} img.emoji-lg { max-width: 10rem; display: inline-block; -o-object-fit: contain; object-fit: contain} .odd\:bg-gray-200:nth-child(odd) { --tw-bg-opacity: 1; background-color: rgba(229, 235, 231, var(--tw-bg-opacity)); } .visited\:text-gray-700:visited { --tw-text-opacity: 1; color: rgba(55, 82, 62, var(--tw-text-opacity)); } .hover\:scale-\[1\.15\]:hover { --tw-scale-x: 1.15; --tw-scale-y: 1.15; transform: var(--tw-transform); } .hover\:border-gray-400:hover { --tw-border-opacity: 1; border-color: rgba(155, 175, 161, var(--tw-border-opacity)); } .hover\:border-gray-500:hover { --tw-border-opacity: 1; border-color: rgba(106, 128, 115, var(--tw-border-opacity)); } .hover\:bg-gray-300:hover { --tw-bg-opacity: 1; background-color: rgba(209, 219, 213, var(--tw-bg-opacity)); } .hover\:bg-gray-700:hover { --tw-bg-opacity: 1; background-color: rgba(55, 82, 62, var(--tw-bg-opacity)); } .hover\:bg-black\/30:hover { background-color: rgba(0, 0, 0, 0.3); } .hover\:bg-gray-400:hover { --tw-bg-opacity: 1; background-color: rgba(155, 175, 161, var(--tw-bg-opacity)); } .hover\:bg-gradient-to-t:hover { background-image: linear-gradient(to top, var(--tw-gradient-stops)); } .hover\:from-gray-100:hover { --tw-gradient-from: #f4f6f4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 246, 244, 0)); } .hover\:from-red-600:hover { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } .hover\:from-green-600:hover { --tw-gradient-from: #16a34a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 163, 74, 0)); } .hover\:from-yellow-500:hover { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } .hover\:from-red-800:hover { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } .hover\:from-red-700:hover { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } .hover\:from-yellow-600:hover { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } .hover\:from-green-800:hover { --tw-gradient-from: #166534; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 101, 52, 0)); } .hover\:to-gray-200:hover { --tw-gradient-to: #e5ebe7; } .hover\:to-red-700:hover { --tw-gradient-to: #b91c1c; } .hover\:to-green-700:hover { --tw-gradient-to: #15803d; } .hover\:to-yellow-600:hover { --tw-gradient-to: #d97706; } .hover\:to-red-800:hover { --tw-gradient-to: #991b1b; } .hover\:to-yellow-500:hover { --tw-gradient-to: #f59e0b; } .hover\:text-red-600:hover { --tw-text-opacity: 1; color: rgba(220, 38, 38, var(--tw-text-opacity)); } .hover\:text-gray-900:hover { --tw-text-opacity: 1; color: rgba(17, 40, 23, var(--tw-text-opacity)); } .hover\:text-gray-700:hover { --tw-text-opacity: 1; color: rgba(55, 82, 62, var(--tw-text-opacity)); } .hover\:text-gray-400:hover { --tw-text-opacity: 1; color: rgba(155, 175, 161, var(--tw-text-opacity)); } .hover\:text-gray-300:hover { --tw-text-opacity: 1; color: rgba(209, 219, 213, var(--tw-text-opacity)); } .hover\:text-gray-200:hover { --tw-text-opacity: 1; color: rgba(229, 235, 231, var(--tw-text-opacity)); } .hover\:text-white:hover { --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .hover\:text-green-700:hover { --tw-text-opacity: 1; color: rgba(21, 128, 61, var(--tw-text-opacity)); } .hover\:text-gray-500:hover { --tw-text-opacity: 1; color: rgba(106, 128, 115, var(--tw-text-opacity)); } .hover\:text-gray-600:hover { --tw-text-opacity: 1; color: rgba(76, 99, 81, var(--tw-text-opacity)); } .hover\:text-blue-600:hover { --tw-text-opacity: 1; color: rgba(2, 132, 199, var(--tw-text-opacity)); } .hover\:text-primary:hover { --tw-text-opacity: 1; color: rgba(var(--color-primary), var(--tw-text-opacity)); } .hover\:text-red-700:hover { --tw-text-opacity: 1; color: rgba(185, 28, 28, var(--tw-text-opacity)); } .hover\:text-yellow-900:hover { --tw-text-opacity: 1; color: rgba(120, 53, 15, var(--tw-text-opacity)); } .hover\:text-gray-800:hover { --tw-text-opacity: 1; color: rgba(31, 55, 38, var(--tw-text-opacity)); } .hover\:text-red-500:hover { --tw-text-opacity: 1; color: rgba(239, 68, 68, var(--tw-text-opacity)); } .hover\:underline:hover { text-decoration: underline; } .hover\:opacity-100:hover { opacity: 1; } .hover\:shadow-inner:hover { --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .focus\:border-blue-300:focus { --tw-border-opacity: 1; border-color: rgba(125, 211, 252, var(--tw-border-opacity)); } .focus\:bg-white:focus { --tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } .focus\:bg-gradient-to-t:focus { background-image: linear-gradient(to top, var(--tw-gradient-stops)); } .focus\:from-gray-700:focus { --tw-gradient-from: #37523e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 82, 62, 0)); } .focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } .focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } .focus\:from-gray-100:focus { --tw-gradient-from: #f4f6f4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 246, 244, 0)); } .focus\:from-green-800:focus { --tw-gradient-from: #166534; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 101, 52, 0)); } .focus\:to-gray-800:focus { --tw-gradient-to: #1f3726; } .focus\:to-red-700:focus { --tw-gradient-to: #b91c1c; } .focus\:to-yellow-500:focus { --tw-gradient-to: #f59e0b; } .focus\:to-gray-200:focus { --tw-gradient-to: #e5ebe7; } .focus\:to-green-700:focus { --tw-gradient-to: #15803d; } .focus\:font-bold:focus { font-weight: 700; } .focus\:text-black:focus { --tw-text-opacity: 1; color: rgba(0, 0, 0, var(--tw-text-opacity)); } .focus\:text-gray-900:focus { --tw-text-opacity: 1; color: rgba(17, 40, 23, var(--tw-text-opacity)); } .focus\:text-gray-500:focus { --tw-text-opacity: 1; color: rgba(106, 128, 115, var(--tw-text-opacity)); } .focus\:text-gray-400:focus { --tw-text-opacity: 1; color: rgba(155, 175, 161, var(--tw-text-opacity)); } .focus\:text-yellow-500:focus { --tw-text-opacity: 1; color: rgba(245, 158, 11, var(--tw-text-opacity)); } .focus\:text-gray-300:focus { --tw-text-opacity: 1; color: rgba(209, 219, 213, var(--tw-text-opacity)); } .focus\:text-gray-200:focus { --tw-text-opacity: 1; color: rgba(229, 235, 231, var(--tw-text-opacity)); } .focus\:shadow-inner:focus { --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; } .focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .focus\:ring:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .focus\:ring-inset:focus { --tw-ring-inset: inset; } .focus\:ring-white:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } .focus\:ring-blue-200:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(186, 230, 253, var(--tw-ring-opacity)); } .focus\:ring-opacity-50:focus { --tw-ring-opacity: 0.5; } .focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; } .focus\:ring-offset-gray-800:focus { --tw-ring-offset-color: #1f3726; } .focus\:text-shadow:focus { text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12) } .active\:text-gray-800:active { --tw-text-opacity: 1; color: rgba(31, 55, 38, var(--tw-text-opacity)); } .active\:shadow-inner:active { --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .active\:outline-none:active { outline: 2px solid transparent; outline-offset: 2px; } .peer:checked ~ .peer-checked\:bg-gray-400 { --tw-bg-opacity: 1; background-color: rgba(155, 175, 161, var(--tw-bg-opacity)); } .peer:checked ~ .peer-checked\:shadow-inner { --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } @media (min-width: 640px) { .sm\:static { position: static; } .sm\:inset-auto { top: auto; right: auto; bottom: auto; left: auto; } .sm\:my-0 { margin-top: 0px; margin-bottom: 0px; } .sm\:ml-6 { margin-left: 1.5rem; } .sm\:ml-4 { margin-left: 1rem; } .sm\:block { display: block; } .sm\:inline-block { display: inline-block; } .sm\:flex { display: flex; } .sm\:hidden { display: none; } .sm\:items-stretch { align-items: stretch; } .sm\:justify-start { justify-content: flex-start; } .sm\:overflow-y-auto { overflow-y: auto; } .sm\:px-0 { padding-left: 0px; padding-right: 0px; } .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; } .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .sm\:pr-0 { padding-right: 0px; } .sm\:text-base { font-size: 1rem; line-height: 1.5rem; } } @media (min-width: 768px) { .md\:col-span-1 { grid-column: span 1 / span 1; } .md\:m-0 { margin: 0px; } .md\:mt-6 { margin-top: 1.5rem; } .md\:mr-4 { margin-right: 1rem; } .md\:mr-3 { margin-right: 0.75rem; } .md\:ml-4 { margin-left: 1rem; } .md\:-ml-2 { margin-left: -0.5rem; } .md\:mt-0 { margin-top: 0px; } .md\:ml-20 { margin-left: 5rem; } .md\:mb-4 { margin-bottom: 1rem; } .md\:ml-\[4\.5rem\] { margin-left: 4.5rem; } .md\:mr-1 { margin-right: 0.25rem; } .md\:block { display: block; } .md\:inline-block { display: inline-block; } .md\:flex { display: flex; } .md\:hidden { display: none; } .md\:h-20 { height: 5rem; } .md\:w-4 { width: 1rem; } .md\:w-80 { width: 20rem; } .md\:w-44 { width: 11rem; } .md\:w-32 { width: 8rem; } .md\:w-64 { width: 16rem; } .md\:w-1\/2 { width: 50%; } .md\:max-w-xl { max-width: 36rem; } .md\:flex-row { flex-direction: row; } .md\:items-center { align-items: center; } .md\:justify-start { justify-content: flex-start; } .md\:justify-center { justify-content: center; } .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } .md\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(55, 82, 62, var(--tw-divide-opacity)); } .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(209, 219, 213, var(--tw-divide-opacity)); } .md\:border-t { border-top-width: 1px; } .md\:border-b { border-bottom-width: 1px; } .md\:border-gray-300 { --tw-border-opacity: 1; border-color: rgba(209, 219, 213, var(--tw-border-opacity)); } .md\:bg-gray-200 { --tw-bg-opacity: 1; background-color: rgba(229, 235, 231, var(--tw-bg-opacity)); } .md\:bg-transparent { background-color: transparent; } .md\:p-0 { padding: 0px; } .md\:p-3 { padding: 0.75rem; } .md\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; } .md\:px-4 { padding-left: 1rem; padding-right: 1rem; } .md\:px-0 { padding-left: 0px; padding-right: 0px; } .md\:py-48 { padding-top: 12rem; padding-bottom: 12rem; } .md\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; } .md\:pl-3 { padding-left: 0.75rem; } .md\:pl-0 { padding-left: 0px; } .md\:pb-4 { padding-bottom: 1rem; } .md\:pt-0 { padding-top: 0px; } .md\:pl-5 { padding-left: 1.25rem; } .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; } .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; } .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; } .md\:hover\:opacity-100:hover { opacity: 1; } } @media (min-width: 1024px) { .lg\:block { display: block; } .lg\:flex { display: flex; } .lg\:hidden { display: none; } .lg\:h-\[28rem\] { height: 28rem; } .lg\:w-1\/4 { width: 25%; } .lg\:w-1\/3 { width: 33.333333%; } .lg\:p-0 { padding: 0px; } .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } } @media (min-width: 1280px) { .xl\:col-span-9 { grid-column: span 9 / span 9; } .xl\:col-start-10 { grid-column-start: 10; } .xl\:col-end-13 { grid-column-end: 13; } .xl\:block { display: block; } .xl\:flex { display: flex; } .xl\:hidden { display: none; } .xl\:w-1\/5 { width: 20%; } }