1
0

tailwind.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228
  1. /*
  2. ! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
  3. */
  4. /*
  5. 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  6. 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
  7. */
  8. *,
  9. ::before,
  10. ::after {
  11. box-sizing: border-box;
  12. /* 1 */
  13. border-width: 0;
  14. /* 2 */
  15. border-style: solid;
  16. /* 2 */
  17. border-color: #e5e7eb;
  18. /* 2 */
  19. }
  20. ::before,
  21. ::after {
  22. --tw-content: '';
  23. }
  24. /*
  25. 1. Use a consistent sensible line-height in all browsers.
  26. 2. Prevent adjustments of font size after orientation changes in iOS.
  27. 3. Use a more readable tab size.
  28. 4. Use the user's configured `sans` font-family by default.
  29. 5. Use the user's configured `sans` font-feature-settings by default.
  30. 6. Use the user's configured `sans` font-variation-settings by default.
  31. */
  32. html {
  33. line-height: 1.5;
  34. /* 1 */
  35. -webkit-text-size-adjust: 100%;
  36. /* 2 */
  37. -moz-tab-size: 4;
  38. /* 3 */
  39. -o-tab-size: 4;
  40. tab-size: 4;
  41. /* 3 */
  42. 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";
  43. /* 4 */
  44. font-feature-settings: normal;
  45. /* 5 */
  46. font-variation-settings: normal;
  47. /* 6 */
  48. }
  49. /*
  50. 1. Remove the margin in all browsers.
  51. 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
  52. */
  53. body {
  54. margin: 0;
  55. /* 1 */
  56. line-height: inherit;
  57. /* 2 */
  58. }
  59. /*
  60. 1. Add the correct height in Firefox.
  61. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  62. 3. Ensure horizontal rules are visible by default.
  63. */
  64. hr {
  65. height: 0;
  66. /* 1 */
  67. color: inherit;
  68. /* 2 */
  69. border-top-width: 1px;
  70. /* 3 */
  71. }
  72. /*
  73. Add the correct text decoration in Chrome, Edge, and Safari.
  74. */
  75. abbr:where([title]) {
  76. -webkit-text-decoration: underline dotted;
  77. text-decoration: underline dotted;
  78. }
  79. /*
  80. Remove the default font size and weight for headings.
  81. */
  82. h1,
  83. h2,
  84. h3,
  85. h4,
  86. h5,
  87. h6 {
  88. font-size: inherit;
  89. font-weight: inherit;
  90. }
  91. /*
  92. Reset links to optimize for opt-in styling instead of opt-out.
  93. */
  94. a {
  95. color: inherit;
  96. text-decoration: inherit;
  97. }
  98. /*
  99. Add the correct font weight in Edge and Safari.
  100. */
  101. b,
  102. strong {
  103. font-weight: bolder;
  104. }
  105. /*
  106. 1. Use the user's configured `mono` font family by default.
  107. 2. Correct the odd `em` font sizing in all browsers.
  108. */
  109. code,
  110. kbd,
  111. samp,
  112. pre {
  113. font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  114. /* 1 */
  115. font-size: 1em;
  116. /* 2 */
  117. }
  118. /*
  119. Add the correct font size in all browsers.
  120. */
  121. small {
  122. font-size: 80%;
  123. }
  124. /*
  125. Prevent `sub` and `sup` elements from affecting the line height in all browsers.
  126. */
  127. sub,
  128. sup {
  129. font-size: 75%;
  130. line-height: 0;
  131. position: relative;
  132. vertical-align: baseline;
  133. }
  134. sub {
  135. bottom: -0.25em;
  136. }
  137. sup {
  138. top: -0.5em;
  139. }
  140. /*
  141. 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)
  142. 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)
  143. 3. Remove gaps between table borders by default.
  144. */
  145. table {
  146. text-indent: 0;
  147. /* 1 */
  148. border-color: inherit;
  149. /* 2 */
  150. border-collapse: collapse;
  151. /* 3 */
  152. }
  153. /*
  154. 1. Change the font styles in all browsers.
  155. 2. Remove the margin in Firefox and Safari.
  156. 3. Remove default padding in all browsers.
  157. */
  158. button,
  159. input,
  160. optgroup,
  161. select,
  162. textarea {
  163. font-family: inherit;
  164. /* 1 */
  165. font-size: 100%;
  166. /* 1 */
  167. font-weight: inherit;
  168. /* 1 */
  169. line-height: inherit;
  170. /* 1 */
  171. color: inherit;
  172. /* 1 */
  173. margin: 0;
  174. /* 2 */
  175. padding: 0;
  176. /* 3 */
  177. }
  178. /*
  179. Remove the inheritance of text transform in Edge and Firefox.
  180. */
  181. button,
  182. select {
  183. text-transform: none;
  184. }
  185. /*
  186. 1. Correct the inability to style clickable types in iOS and Safari.
  187. 2. Remove default button styles.
  188. */
  189. button,
  190. [type='button'],
  191. [type='reset'],
  192. [type='submit'] {
  193. -webkit-appearance: button;
  194. /* 1 */
  195. background-color: transparent;
  196. /* 2 */
  197. background-image: none;
  198. /* 2 */
  199. }
  200. /*
  201. Use the modern Firefox focus style for all focusable elements.
  202. */
  203. :-moz-focusring {
  204. outline: auto;
  205. }
  206. /*
  207. Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
  208. */
  209. :-moz-ui-invalid {
  210. box-shadow: none;
  211. }
  212. /*
  213. Add the correct vertical alignment in Chrome and Firefox.
  214. */
  215. progress {
  216. vertical-align: baseline;
  217. }
  218. /*
  219. Correct the cursor style of increment and decrement buttons in Safari.
  220. */
  221. ::-webkit-inner-spin-button,
  222. ::-webkit-outer-spin-button {
  223. height: auto;
  224. }
  225. /*
  226. 1. Correct the odd appearance in Chrome and Safari.
  227. 2. Correct the outline style in Safari.
  228. */
  229. [type='search'] {
  230. -webkit-appearance: textfield;
  231. /* 1 */
  232. outline-offset: -2px;
  233. /* 2 */
  234. }
  235. /*
  236. Remove the inner padding in Chrome and Safari on macOS.
  237. */
  238. ::-webkit-search-decoration {
  239. -webkit-appearance: none;
  240. }
  241. /*
  242. 1. Correct the inability to style clickable types in iOS and Safari.
  243. 2. Change font properties to `inherit` in Safari.
  244. */
  245. ::-webkit-file-upload-button {
  246. -webkit-appearance: button;
  247. /* 1 */
  248. font: inherit;
  249. /* 2 */
  250. }
  251. /*
  252. Add the correct display in Chrome and Safari.
  253. */
  254. summary {
  255. display: list-item;
  256. }
  257. /*
  258. Removes the default spacing and border for appropriate elements.
  259. */
  260. blockquote,
  261. dl,
  262. dd,
  263. h1,
  264. h2,
  265. h3,
  266. h4,
  267. h5,
  268. h6,
  269. hr,
  270. figure,
  271. p,
  272. pre {
  273. margin: 0;
  274. }
  275. fieldset {
  276. margin: 0;
  277. padding: 0;
  278. }
  279. legend {
  280. padding: 0;
  281. }
  282. ol,
  283. ul,
  284. menu {
  285. list-style: none;
  286. margin: 0;
  287. padding: 0;
  288. }
  289. /*
  290. Prevent resizing textareas horizontally by default.
  291. */
  292. textarea {
  293. resize: vertical;
  294. }
  295. /*
  296. 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
  297. 2. Set the default placeholder color to the user's configured gray 400 color.
  298. */
  299. input::-moz-placeholder, textarea::-moz-placeholder {
  300. opacity: 1;
  301. /* 1 */
  302. color: #9ca3af;
  303. /* 2 */
  304. }
  305. input::placeholder,
  306. textarea::placeholder {
  307. opacity: 1;
  308. /* 1 */
  309. color: #9ca3af;
  310. /* 2 */
  311. }
  312. /*
  313. Set the default cursor for buttons.
  314. */
  315. button,
  316. [role="button"] {
  317. cursor: pointer;
  318. }
  319. /*
  320. Make sure disabled buttons don't get the pointer cursor.
  321. */
  322. :disabled {
  323. cursor: default;
  324. }
  325. /*
  326. 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  327. 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
  328. This can trigger a poorly considered lint error in some tools but is included by design.
  329. */
  330. img,
  331. svg,
  332. video,
  333. canvas,
  334. audio,
  335. iframe,
  336. embed,
  337. object {
  338. display: block;
  339. /* 1 */
  340. vertical-align: middle;
  341. /* 2 */
  342. }
  343. /*
  344. Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
  345. */
  346. img,
  347. video {
  348. max-width: 100%;
  349. height: auto;
  350. }
  351. /* Make elements with the HTML hidden attribute stay hidden by default */
  352. [hidden] {
  353. display: none;
  354. }
  355. *, ::before, ::after {
  356. --tw-border-spacing-x: 0;
  357. --tw-border-spacing-y: 0;
  358. --tw-translate-x: 0;
  359. --tw-translate-y: 0;
  360. --tw-rotate: 0;
  361. --tw-skew-x: 0;
  362. --tw-skew-y: 0;
  363. --tw-scale-x: 1;
  364. --tw-scale-y: 1;
  365. --tw-pan-x: ;
  366. --tw-pan-y: ;
  367. --tw-pinch-zoom: ;
  368. --tw-scroll-snap-strictness: proximity;
  369. --tw-gradient-from-position: ;
  370. --tw-gradient-via-position: ;
  371. --tw-gradient-to-position: ;
  372. --tw-ordinal: ;
  373. --tw-slashed-zero: ;
  374. --tw-numeric-figure: ;
  375. --tw-numeric-spacing: ;
  376. --tw-numeric-fraction: ;
  377. --tw-ring-inset: ;
  378. --tw-ring-offset-width: 0px;
  379. --tw-ring-offset-color: #fff;
  380. --tw-ring-color: rgb(59 130 246 / 0.5);
  381. --tw-ring-offset-shadow: 0 0 #0000;
  382. --tw-ring-shadow: 0 0 #0000;
  383. --tw-shadow: 0 0 #0000;
  384. --tw-shadow-colored: 0 0 #0000;
  385. --tw-blur: ;
  386. --tw-brightness: ;
  387. --tw-contrast: ;
  388. --tw-grayscale: ;
  389. --tw-hue-rotate: ;
  390. --tw-invert: ;
  391. --tw-saturate: ;
  392. --tw-sepia: ;
  393. --tw-drop-shadow: ;
  394. --tw-backdrop-blur: ;
  395. --tw-backdrop-brightness: ;
  396. --tw-backdrop-contrast: ;
  397. --tw-backdrop-grayscale: ;
  398. --tw-backdrop-hue-rotate: ;
  399. --tw-backdrop-invert: ;
  400. --tw-backdrop-opacity: ;
  401. --tw-backdrop-saturate: ;
  402. --tw-backdrop-sepia: ;
  403. }
  404. ::backdrop {
  405. --tw-border-spacing-x: 0;
  406. --tw-border-spacing-y: 0;
  407. --tw-translate-x: 0;
  408. --tw-translate-y: 0;
  409. --tw-rotate: 0;
  410. --tw-skew-x: 0;
  411. --tw-skew-y: 0;
  412. --tw-scale-x: 1;
  413. --tw-scale-y: 1;
  414. --tw-pan-x: ;
  415. --tw-pan-y: ;
  416. --tw-pinch-zoom: ;
  417. --tw-scroll-snap-strictness: proximity;
  418. --tw-gradient-from-position: ;
  419. --tw-gradient-via-position: ;
  420. --tw-gradient-to-position: ;
  421. --tw-ordinal: ;
  422. --tw-slashed-zero: ;
  423. --tw-numeric-figure: ;
  424. --tw-numeric-spacing: ;
  425. --tw-numeric-fraction: ;
  426. --tw-ring-inset: ;
  427. --tw-ring-offset-width: 0px;
  428. --tw-ring-offset-color: #fff;
  429. --tw-ring-color: rgb(59 130 246 / 0.5);
  430. --tw-ring-offset-shadow: 0 0 #0000;
  431. --tw-ring-shadow: 0 0 #0000;
  432. --tw-shadow: 0 0 #0000;
  433. --tw-shadow-colored: 0 0 #0000;
  434. --tw-blur: ;
  435. --tw-brightness: ;
  436. --tw-contrast: ;
  437. --tw-grayscale: ;
  438. --tw-hue-rotate: ;
  439. --tw-invert: ;
  440. --tw-saturate: ;
  441. --tw-sepia: ;
  442. --tw-drop-shadow: ;
  443. --tw-backdrop-blur: ;
  444. --tw-backdrop-brightness: ;
  445. --tw-backdrop-contrast: ;
  446. --tw-backdrop-grayscale: ;
  447. --tw-backdrop-hue-rotate: ;
  448. --tw-backdrop-invert: ;
  449. --tw-backdrop-opacity: ;
  450. --tw-backdrop-saturate: ;
  451. --tw-backdrop-sepia: ;
  452. }
  453. .container {
  454. width: 100%;
  455. }
  456. @media (min-width: 640px) {
  457. .container {
  458. max-width: 640px;
  459. }
  460. }
  461. @media (min-width: 768px) {
  462. .container {
  463. max-width: 768px;
  464. }
  465. }
  466. @media (min-width: 1024px) {
  467. .container {
  468. max-width: 1024px;
  469. }
  470. }
  471. @media (min-width: 1280px) {
  472. .container {
  473. max-width: 1280px;
  474. }
  475. }
  476. @media (min-width: 1536px) {
  477. .container {
  478. max-width: 1536px;
  479. }
  480. }
  481. .fixed {
  482. position: fixed;
  483. }
  484. .absolute {
  485. position: absolute;
  486. }
  487. .relative {
  488. position: relative;
  489. }
  490. .inset-0 {
  491. inset: 0px;
  492. }
  493. .bottom-0 {
  494. bottom: 0px;
  495. }
  496. .left-0 {
  497. left: 0px;
  498. }
  499. .right-0 {
  500. right: 0px;
  501. }
  502. .top-0 {
  503. top: 0px;
  504. }
  505. .top-1\/2 {
  506. top: 50%;
  507. }
  508. .z-50 {
  509. z-index: 50;
  510. }
  511. .m-0 {
  512. margin: 0px;
  513. }
  514. .m-2 {
  515. margin: 0.5rem;
  516. }
  517. .-mx-4 {
  518. margin-left: -1rem;
  519. margin-right: -1rem;
  520. }
  521. .mx-auto {
  522. margin-left: auto;
  523. margin-right: auto;
  524. }
  525. .mb-10 {
  526. margin-bottom: 2.5rem;
  527. }
  528. .mb-12 {
  529. margin-bottom: 3rem;
  530. }
  531. .mb-14 {
  532. margin-bottom: 3.5rem;
  533. }
  534. .mb-16 {
  535. margin-bottom: 4rem;
  536. }
  537. .mb-24 {
  538. margin-bottom: 6rem;
  539. }
  540. .mb-4 {
  541. margin-bottom: 1rem;
  542. }
  543. .mb-6 {
  544. margin-bottom: 1.5rem;
  545. }
  546. .mb-8 {
  547. margin-bottom: 2rem;
  548. }
  549. .ml-8 {
  550. margin-left: 2rem;
  551. }
  552. .mr-1 {
  553. margin-right: 0.25rem;
  554. }
  555. .mr-10 {
  556. margin-right: 2.5rem;
  557. }
  558. .mr-12 {
  559. margin-right: 3rem;
  560. }
  561. .mr-14 {
  562. margin-right: 3.5rem;
  563. }
  564. .mr-16 {
  565. margin-right: 4rem;
  566. }
  567. .mr-2 {
  568. margin-right: 0.5rem;
  569. }
  570. .mr-3 {
  571. margin-right: 0.75rem;
  572. }
  573. .mr-6 {
  574. margin-right: 1.5rem;
  575. }
  576. .mr-8 {
  577. margin-right: 2rem;
  578. }
  579. .mr-auto {
  580. margin-right: auto;
  581. }
  582. .mt-2 {
  583. margin-top: 0.5rem;
  584. }
  585. .block {
  586. display: block;
  587. }
  588. .inline-block {
  589. display: inline-block;
  590. }
  591. .flex {
  592. display: flex;
  593. }
  594. .inline-flex {
  595. display: inline-flex;
  596. }
  597. .hidden {
  598. display: none;
  599. }
  600. .h-2 {
  601. height: 0.5rem;
  602. }
  603. .h-40 {
  604. height: 10rem;
  605. }
  606. .h-6 {
  607. height: 1.5rem;
  608. }
  609. .h-8 {
  610. height: 2rem;
  611. }
  612. .h-9 {
  613. height: 2.25rem;
  614. }
  615. .h-full {
  616. height: 100%;
  617. }
  618. .w-1\/2 {
  619. width: 50%;
  620. }
  621. .w-1\/4 {
  622. width: 25%;
  623. }
  624. .w-1\/6 {
  625. width: 16.666667%;
  626. }
  627. .w-12 {
  628. width: 3rem;
  629. }
  630. .w-2 {
  631. width: 0.5rem;
  632. }
  633. .w-5\/6 {
  634. width: 83.333333%;
  635. }
  636. .w-6 {
  637. width: 1.5rem;
  638. }
  639. .w-8 {
  640. width: 2rem;
  641. }
  642. .w-full {
  643. width: 100%;
  644. }
  645. .max-w-2xl {
  646. max-width: 42rem;
  647. }
  648. .max-w-md {
  649. max-width: 28rem;
  650. }
  651. .max-w-sm {
  652. max-width: 24rem;
  653. }
  654. .max-w-xl {
  655. max-width: 36rem;
  656. }
  657. .flex-shrink-0 {
  658. flex-shrink: 0;
  659. }
  660. .transform {
  661. transform: translate(var(--tw-translate-x), 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));
  662. }
  663. .cursor-pointer {
  664. cursor: pointer;
  665. }
  666. .flex-row {
  667. flex-direction: row;
  668. }
  669. .flex-col {
  670. flex-direction: column;
  671. }
  672. .flex-wrap {
  673. flex-wrap: wrap;
  674. }
  675. .place-items-center {
  676. place-items: center;
  677. }
  678. .items-center {
  679. align-items: center;
  680. }
  681. .justify-between {
  682. justify-content: space-between;
  683. }
  684. .self-center {
  685. align-self: center;
  686. }
  687. .overflow-y-auto {
  688. overflow-y: auto;
  689. }
  690. .text-ellipsis {
  691. text-overflow: ellipsis;
  692. }
  693. .rounded {
  694. border-radius: 0.25rem;
  695. }
  696. .rounded-full {
  697. border-radius: 9999px;
  698. }
  699. .rounded-lg {
  700. border-radius: 0.5rem;
  701. }
  702. .rounded-md {
  703. border-radius: 0.375rem;
  704. }
  705. .border {
  706. border-width: 1px;
  707. }
  708. .border-0 {
  709. border-width: 0px;
  710. }
  711. .border-b {
  712. border-bottom-width: 1px;
  713. }
  714. .border-b-2 {
  715. border-bottom-width: 2px;
  716. }
  717. .border-l {
  718. border-left-width: 1px;
  719. }
  720. .border-r {
  721. border-right-width: 1px;
  722. }
  723. .border-gray-200 {
  724. --tw-border-opacity: 1;
  725. border-color: rgb(229 231 235 / var(--tw-border-opacity));
  726. }
  727. .border-transparent {
  728. border-color: transparent;
  729. }
  730. .bg-gray-100 {
  731. --tw-bg-opacity: 1;
  732. background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  733. }
  734. .bg-gray-50 {
  735. --tw-bg-opacity: 1;
  736. background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  737. }
  738. .bg-gray-800 {
  739. --tw-bg-opacity: 1;
  740. background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  741. }
  742. .bg-orange-300 {
  743. --tw-bg-opacity: 1;
  744. background-color: rgb(253 186 116 / var(--tw-bg-opacity));
  745. }
  746. .bg-white {
  747. --tw-bg-opacity: 1;
  748. background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  749. }
  750. .object-cover {
  751. -o-object-fit: cover;
  752. object-fit: cover;
  753. }
  754. .object-scale-down {
  755. -o-object-fit: scale-down;
  756. object-fit: scale-down;
  757. }
  758. .p-10 {
  759. padding: 2.5rem;
  760. }
  761. .p-2 {
  762. padding: 0.5rem;
  763. }
  764. .px-10 {
  765. padding-left: 2.5rem;
  766. padding-right: 2.5rem;
  767. }
  768. .px-12 {
  769. padding-left: 3rem;
  770. padding-right: 3rem;
  771. }
  772. .px-2 {
  773. padding-left: 0.5rem;
  774. padding-right: 0.5rem;
  775. }
  776. .px-4 {
  777. padding-left: 1rem;
  778. padding-right: 1rem;
  779. }
  780. .px-6 {
  781. padding-left: 1.5rem;
  782. padding-right: 1.5rem;
  783. }
  784. .px-8 {
  785. padding-left: 2rem;
  786. padding-right: 2rem;
  787. }
  788. .py-2 {
  789. padding-top: 0.5rem;
  790. padding-bottom: 0.5rem;
  791. }
  792. .py-20 {
  793. padding-top: 5rem;
  794. padding-bottom: 5rem;
  795. }
  796. .py-4 {
  797. padding-top: 1rem;
  798. padding-bottom: 1rem;
  799. }
  800. .py-5 {
  801. padding-top: 1.25rem;
  802. padding-bottom: 1.25rem;
  803. }
  804. .py-6 {
  805. padding-top: 1.5rem;
  806. padding-bottom: 1.5rem;
  807. }
  808. .py-8 {
  809. padding-top: 2rem;
  810. padding-bottom: 2rem;
  811. }
  812. .pb-10 {
  813. padding-bottom: 2.5rem;
  814. }
  815. .pl-4 {
  816. padding-left: 1rem;
  817. }
  818. .pl-6 {
  819. padding-left: 1.5rem;
  820. }
  821. .pr-10 {
  822. padding-right: 2.5rem;
  823. }
  824. .text-left {
  825. text-align: left;
  826. }
  827. .text-center {
  828. text-align: center;
  829. }
  830. .text-2xl {
  831. font-size: 1.5rem;
  832. line-height: 2rem;
  833. }
  834. .text-3xl {
  835. font-size: 1.875rem;
  836. line-height: 2.25rem;
  837. }
  838. .text-5xl {
  839. font-size: 3rem;
  840. line-height: 1;
  841. }
  842. .text-xs {
  843. font-size: 0.75rem;
  844. line-height: 1rem;
  845. }
  846. .font-bold {
  847. font-weight: 700;
  848. }
  849. .font-semibold {
  850. font-weight: 600;
  851. }
  852. .uppercase {
  853. text-transform: uppercase;
  854. }
  855. .text-blue-300 {
  856. --tw-text-opacity: 1;
  857. color: rgb(147 197 253 / var(--tw-text-opacity));
  858. }
  859. .text-gray-400 {
  860. --tw-text-opacity: 1;
  861. color: rgb(156 163 175 / var(--tw-text-opacity));
  862. }
  863. .text-gray-500 {
  864. --tw-text-opacity: 1;
  865. color: rgb(107 114 128 / var(--tw-text-opacity));
  866. }
  867. .text-gray-600 {
  868. --tw-text-opacity: 1;
  869. color: rgb(75 85 99 / var(--tw-text-opacity));
  870. }
  871. .text-white {
  872. --tw-text-opacity: 1;
  873. color: rgb(255 255 255 / var(--tw-text-opacity));
  874. }
  875. .placeholder-gray-400::-moz-placeholder {
  876. --tw-placeholder-opacity: 1;
  877. color: rgb(156 163 175 / var(--tw-placeholder-opacity));
  878. }
  879. .placeholder-gray-400::placeholder {
  880. --tw-placeholder-opacity: 1;
  881. color: rgb(156 163 175 / var(--tw-placeholder-opacity));
  882. }
  883. .opacity-25 {
  884. opacity: 0.25;
  885. }
  886. .shadow-2xl {
  887. --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  888. --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  889. box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  890. }
  891. .shadow-lg {
  892. --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  893. --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  894. box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  895. }
  896. .ring-1 {
  897. --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  898. --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  899. box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  900. }
  901. .transition {
  902. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  903. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  904. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  905. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  906. transition-duration: 150ms;
  907. }
  908. .transition-all {
  909. transition-property: all;
  910. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  911. transition-duration: 150ms;
  912. }
  913. .duration-200 {
  914. transition-duration: 200ms;
  915. }
  916. .hover\:bg-orange-400:hover {
  917. --tw-bg-opacity: 1;
  918. background-color: rgb(251 146 60 / var(--tw-bg-opacity));
  919. }
  920. .hover\:text-gray-600:hover {
  921. --tw-text-opacity: 1;
  922. color: rgb(75 85 99 / var(--tw-text-opacity));
  923. }
  924. .hover\:text-gray-700:hover {
  925. --tw-text-opacity: 1;
  926. color: rgb(55 65 81 / var(--tw-text-opacity));
  927. }
  928. .hover\:shadow-2xl:hover {
  929. --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  930. --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  931. box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  932. }
  933. .hover\:ring-4:hover {
  934. --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  935. --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  936. box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  937. }
  938. .focus\:border-blue-300:focus {
  939. --tw-border-opacity: 1;
  940. border-color: rgb(147 197 253 / var(--tw-border-opacity));
  941. }
  942. .focus\:outline-none:focus {
  943. outline: 2px solid transparent;
  944. outline-offset: 2px;
  945. }
  946. .focus\:ring-blue-300:focus {
  947. --tw-ring-opacity: 1;
  948. --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity));
  949. }
  950. .focus\:ring-transparent:focus {
  951. --tw-ring-color: transparent;
  952. }
  953. @media (min-width: 768px) {
  954. .md\:mb-0 {
  955. margin-bottom: 0px;
  956. }
  957. .md\:w-1\/2 {
  958. width: 50%;
  959. }
  960. .md\:w-auto {
  961. width: auto;
  962. }
  963. .md\:text-right {
  964. text-align: right;
  965. }
  966. .md\:text-6xl {
  967. font-size: 3.75rem;
  968. line-height: 1;
  969. }
  970. }
  971. @media (min-width: 1024px) {
  972. .lg\:pl-20 {
  973. padding-left: 5rem;
  974. }
  975. }
  976. @media (min-width: 1280px) {
  977. .xl\:mx-auto {
  978. margin-left: auto;
  979. margin-right: auto;
  980. }
  981. .xl\:mb-0 {
  982. margin-bottom: 0px;
  983. }
  984. .xl\:block {
  985. display: block;
  986. }
  987. .xl\:inline-block {
  988. display: inline-block;
  989. }
  990. .xl\:flex {
  991. display: flex;
  992. }
  993. .xl\:hidden {
  994. display: none;
  995. }
  996. .xl\:w-2\/3 {
  997. width: 66.666667%;
  998. }
  999. }