暫無描述

main.css 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  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. :root,
  356. [data-theme] {
  357. background-color: hsla(var(--b1) / var(--tw-bg-opacity, 1));
  358. color: hsla(var(--bc) / var(--tw-text-opacity, 1));
  359. }
  360. html {
  361. -webkit-tap-highlight-color: transparent;
  362. }
  363. :root {
  364. --p: 0 0% 0%;
  365. --pf: 0 0% 0%;
  366. --sf: 23.945 94.783% 36.078%;
  367. --af: 174 60% 40.784%;
  368. --nf: 219 14.085% 22.275%;
  369. --b2: 0 0% 90%;
  370. --b3: 0 0% 81%;
  371. --in: 198 93% 60%;
  372. --su: 158 64% 52%;
  373. --wa: 43 96% 56%;
  374. --er: 0 91% 71%;
  375. --bc: 0 0% 20%;
  376. --pc: 0 0% 80%;
  377. --sc: 23.945 100% 89.02%;
  378. --ac: 174 100% 10.196%;
  379. --nc: 219 59.783% 85.569%;
  380. --inc: 198 100% 12%;
  381. --suc: 158 100% 10%;
  382. --wac: 43 100% 11%;
  383. --erc: 0 100% 14%;
  384. --rounded-box: 1rem;
  385. --rounded-btn: 0.5rem;
  386. --rounded-badge: 1.9rem;
  387. --animation-btn: 0.25s;
  388. --animation-input: .2s;
  389. --btn-text-case: uppercase;
  390. --btn-focus-scale: 0.95;
  391. --border-btn: 1px;
  392. --tab-border: 1px;
  393. --tab-radius: 0.5rem;
  394. --s: 23.945 94.783% 45.098%;
  395. --a: 174 60% 50.98%;
  396. --n: 219 14.085% 27.843%;
  397. --b1: 0 0% 100%;
  398. }
  399. *, ::before, ::after {
  400. --tw-border-spacing-x: 0;
  401. --tw-border-spacing-y: 0;
  402. --tw-translate-x: 0;
  403. --tw-translate-y: 0;
  404. --tw-rotate: 0;
  405. --tw-skew-x: 0;
  406. --tw-skew-y: 0;
  407. --tw-scale-x: 1;
  408. --tw-scale-y: 1;
  409. --tw-pan-x: ;
  410. --tw-pan-y: ;
  411. --tw-pinch-zoom: ;
  412. --tw-scroll-snap-strictness: proximity;
  413. --tw-gradient-from-position: ;
  414. --tw-gradient-via-position: ;
  415. --tw-gradient-to-position: ;
  416. --tw-ordinal: ;
  417. --tw-slashed-zero: ;
  418. --tw-numeric-figure: ;
  419. --tw-numeric-spacing: ;
  420. --tw-numeric-fraction: ;
  421. --tw-ring-inset: ;
  422. --tw-ring-offset-width: 0px;
  423. --tw-ring-offset-color: #fff;
  424. --tw-ring-color: rgb(59 130 246 / 0.5);
  425. --tw-ring-offset-shadow: 0 0 #0000;
  426. --tw-ring-shadow: 0 0 #0000;
  427. --tw-shadow: 0 0 #0000;
  428. --tw-shadow-colored: 0 0 #0000;
  429. --tw-blur: ;
  430. --tw-brightness: ;
  431. --tw-contrast: ;
  432. --tw-grayscale: ;
  433. --tw-hue-rotate: ;
  434. --tw-invert: ;
  435. --tw-saturate: ;
  436. --tw-sepia: ;
  437. --tw-drop-shadow: ;
  438. --tw-backdrop-blur: ;
  439. --tw-backdrop-brightness: ;
  440. --tw-backdrop-contrast: ;
  441. --tw-backdrop-grayscale: ;
  442. --tw-backdrop-hue-rotate: ;
  443. --tw-backdrop-invert: ;
  444. --tw-backdrop-opacity: ;
  445. --tw-backdrop-saturate: ;
  446. --tw-backdrop-sepia: ;
  447. }
  448. ::backdrop {
  449. --tw-border-spacing-x: 0;
  450. --tw-border-spacing-y: 0;
  451. --tw-translate-x: 0;
  452. --tw-translate-y: 0;
  453. --tw-rotate: 0;
  454. --tw-skew-x: 0;
  455. --tw-skew-y: 0;
  456. --tw-scale-x: 1;
  457. --tw-scale-y: 1;
  458. --tw-pan-x: ;
  459. --tw-pan-y: ;
  460. --tw-pinch-zoom: ;
  461. --tw-scroll-snap-strictness: proximity;
  462. --tw-gradient-from-position: ;
  463. --tw-gradient-via-position: ;
  464. --tw-gradient-to-position: ;
  465. --tw-ordinal: ;
  466. --tw-slashed-zero: ;
  467. --tw-numeric-figure: ;
  468. --tw-numeric-spacing: ;
  469. --tw-numeric-fraction: ;
  470. --tw-ring-inset: ;
  471. --tw-ring-offset-width: 0px;
  472. --tw-ring-offset-color: #fff;
  473. --tw-ring-color: rgb(59 130 246 / 0.5);
  474. --tw-ring-offset-shadow: 0 0 #0000;
  475. --tw-ring-shadow: 0 0 #0000;
  476. --tw-shadow: 0 0 #0000;
  477. --tw-shadow-colored: 0 0 #0000;
  478. --tw-blur: ;
  479. --tw-brightness: ;
  480. --tw-contrast: ;
  481. --tw-grayscale: ;
  482. --tw-hue-rotate: ;
  483. --tw-invert: ;
  484. --tw-saturate: ;
  485. --tw-sepia: ;
  486. --tw-drop-shadow: ;
  487. --tw-backdrop-blur: ;
  488. --tw-backdrop-brightness: ;
  489. --tw-backdrop-contrast: ;
  490. --tw-backdrop-grayscale: ;
  491. --tw-backdrop-hue-rotate: ;
  492. --tw-backdrop-invert: ;
  493. --tw-backdrop-opacity: ;
  494. --tw-backdrop-saturate: ;
  495. --tw-backdrop-sepia: ;
  496. }
  497. .container {
  498. width: 100%;
  499. }
  500. @media (min-width: 640px) {
  501. .container {
  502. max-width: 640px;
  503. }
  504. }
  505. @media (min-width: 768px) {
  506. .container {
  507. max-width: 768px;
  508. }
  509. }
  510. @media (min-width: 1024px) {
  511. .container {
  512. max-width: 1024px;
  513. }
  514. }
  515. @media (min-width: 1280px) {
  516. .container {
  517. max-width: 1280px;
  518. }
  519. }
  520. @media (min-width: 1536px) {
  521. .container {
  522. max-width: 1536px;
  523. }
  524. }
  525. .btn {
  526. display: inline-flex;
  527. flex-shrink: 0;
  528. cursor: pointer;
  529. -webkit-user-select: none;
  530. -moz-user-select: none;
  531. user-select: none;
  532. flex-wrap: wrap;
  533. align-items: center;
  534. justify-content: center;
  535. border-color: transparent;
  536. border-color: hsl(var(--n) / var(--tw-border-opacity));
  537. text-align: center;
  538. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  539. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  540. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  541. transition-duration: 200ms;
  542. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  543. border-radius: var(--rounded-btn, 0.5rem);
  544. height: 3rem;
  545. padding-left: 1rem;
  546. padding-right: 1rem;
  547. font-size: 0.875rem;
  548. line-height: 1.25rem;
  549. line-height: 1em;
  550. min-height: 3rem;
  551. font-weight: 600;
  552. text-transform: uppercase;
  553. text-transform: var(--btn-text-case, uppercase);
  554. text-decoration-line: none;
  555. border-width: var(--border-btn, 1px);
  556. animation: button-pop var(--animation-btn, 0.25s) ease-out;
  557. --tw-border-opacity: 1;
  558. --tw-bg-opacity: 1;
  559. background-color: hsl(var(--n) / var(--tw-bg-opacity));
  560. --tw-text-opacity: 1;
  561. color: hsl(var(--nc) / var(--tw-text-opacity));
  562. }
  563. .btn-disabled,
  564. .btn[disabled] {
  565. pointer-events: none;
  566. }
  567. .btn.loading,
  568. .btn.loading:hover {
  569. pointer-events: none;
  570. }
  571. .btn.loading:before {
  572. margin-right: 0.5rem;
  573. height: 1rem;
  574. width: 1rem;
  575. border-radius: 9999px;
  576. border-width: 2px;
  577. animation: spin 2s linear infinite;
  578. content: "";
  579. border-top-color: transparent;
  580. border-left-color: transparent;
  581. border-bottom-color: currentColor;
  582. border-right-color: currentColor;
  583. }
  584. @media (prefers-reduced-motion: reduce) {
  585. .btn.loading:before {
  586. animation: spin 10s linear infinite;
  587. }
  588. }
  589. @keyframes spin {
  590. from {
  591. transform: rotate(0deg);
  592. }
  593. to {
  594. transform: rotate(360deg);
  595. }
  596. }
  597. .btn-group > input[type="radio"].btn {
  598. -webkit-appearance: none;
  599. -moz-appearance: none;
  600. appearance: none;
  601. }
  602. .btn-group > input[type="radio"].btn:before {
  603. content: attr(data-title);
  604. }
  605. .dropdown {
  606. position: relative;
  607. display: inline-block;
  608. }
  609. .dropdown > *:focus {
  610. outline: 2px solid transparent;
  611. outline-offset: 2px;
  612. }
  613. .dropdown .dropdown-content {
  614. visibility: hidden;
  615. position: absolute;
  616. z-index: 50;
  617. opacity: 0;
  618. transform-origin: top;
  619. --tw-scale-x: .95;
  620. --tw-scale-y: .95;
  621. 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));
  622. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  623. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  624. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  625. transition-duration: 200ms;
  626. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  627. }
  628. .dropdown-end .dropdown-content {
  629. right: 0px;
  630. }
  631. .dropdown-left .dropdown-content {
  632. top: 0px;
  633. right: 100%;
  634. bottom: auto;
  635. transform-origin: right;
  636. }
  637. .dropdown-right .dropdown-content {
  638. left: 100%;
  639. top: 0px;
  640. bottom: auto;
  641. transform-origin: left;
  642. }
  643. .dropdown-bottom .dropdown-content {
  644. bottom: auto;
  645. top: 100%;
  646. transform-origin: top;
  647. }
  648. .dropdown-top .dropdown-content {
  649. bottom: 100%;
  650. top: auto;
  651. transform-origin: bottom;
  652. }
  653. .dropdown-end.dropdown-right .dropdown-content {
  654. bottom: 0px;
  655. top: auto;
  656. }
  657. .dropdown-end.dropdown-left .dropdown-content {
  658. bottom: 0px;
  659. top: auto;
  660. }
  661. .dropdown.dropdown-open .dropdown-content,
  662. .dropdown.dropdown-hover:hover .dropdown-content,
  663. .dropdown:not(.dropdown-hover):focus .dropdown-content,
  664. .dropdown:not(.dropdown-hover):focus-within .dropdown-content {
  665. visibility: visible;
  666. opacity: 1;
  667. }
  668. .footer {
  669. display: grid;
  670. width: 100%;
  671. grid-auto-flow: row;
  672. place-items: start;
  673. row-gap: 2.5rem;
  674. -moz-column-gap: 1rem;
  675. column-gap: 1rem;
  676. font-size: 0.875rem;
  677. line-height: 1.25rem;
  678. }
  679. .footer > * {
  680. display: grid;
  681. place-items: start;
  682. gap: 0.5rem;
  683. }
  684. .footer-center {
  685. place-items: center;
  686. text-align: center;
  687. }
  688. .footer-center > * {
  689. place-items: center;
  690. }
  691. @media (min-width: 48rem) {
  692. .footer {
  693. grid-auto-flow: column;
  694. }
  695. .footer-center {
  696. grid-auto-flow: row dense;
  697. }
  698. }
  699. .label {
  700. display: flex;
  701. -webkit-user-select: none;
  702. -moz-user-select: none;
  703. user-select: none;
  704. align-items: center;
  705. justify-content: space-between;
  706. padding-left: 0.25rem;
  707. padding-right: 0.25rem;
  708. padding-top: 0.5rem;
  709. padding-bottom: 0.5rem;
  710. }
  711. .link {
  712. cursor: pointer;
  713. text-decoration-line: underline;
  714. }
  715. .link-hover {
  716. text-decoration-line: none;
  717. }
  718. .link-hover:hover {
  719. text-decoration-line: underline;
  720. }
  721. .menu {
  722. display: flex;
  723. flex-direction: column;
  724. flex-wrap: wrap;
  725. }
  726. .menu.horizontal {
  727. display: inline-flex;
  728. flex-direction: row;
  729. }
  730. .menu.horizontal :where(li) {
  731. flex-direction: row;
  732. }
  733. :where(.menu li) {
  734. position: relative;
  735. display: flex;
  736. flex-shrink: 0;
  737. flex-direction: column;
  738. flex-wrap: wrap;
  739. align-items: stretch;
  740. }
  741. .menu :where(li:not(.menu-title)) > :where(*:not(ul)) {
  742. display: flex;
  743. }
  744. .menu :where(li:not(.disabled):not(.menu-title)) > :where(*:not(ul)) {
  745. cursor: pointer;
  746. -webkit-user-select: none;
  747. -moz-user-select: none;
  748. user-select: none;
  749. align-items: center;
  750. outline: 2px solid transparent;
  751. outline-offset: 2px;
  752. }
  753. .menu > :where(li > *:not(ul):focus) {
  754. outline: 2px solid transparent;
  755. outline-offset: 2px;
  756. }
  757. .menu > :where(li.disabled > *:not(ul):focus) {
  758. cursor: auto;
  759. }
  760. .menu > :where(li) :where(ul) {
  761. display: flex;
  762. flex-direction: column;
  763. align-items: stretch;
  764. }
  765. .menu > :where(li) > :where(ul) {
  766. position: absolute;
  767. display: none;
  768. top: initial;
  769. left: 100%;
  770. border-top-left-radius: inherit;
  771. border-top-right-radius: inherit;
  772. border-bottom-right-radius: inherit;
  773. border-bottom-left-radius: inherit;
  774. }
  775. .menu > :where(li:hover) > :where(ul) {
  776. display: flex;
  777. }
  778. .menu > :where(li:focus) > :where(ul) {
  779. display: flex;
  780. }
  781. .navbar {
  782. display: flex;
  783. align-items: center;
  784. padding: var(--navbar-padding, 0.5rem);
  785. min-height: 4rem;
  786. width: 100%;
  787. }
  788. :where(.navbar > *) {
  789. display: inline-flex;
  790. align-items: center;
  791. }
  792. .navbar-start {
  793. width: 50%;
  794. justify-content: flex-start;
  795. }
  796. .navbar-end {
  797. width: 50%;
  798. justify-content: flex-end;
  799. }
  800. .swap {
  801. position: relative;
  802. display: inline-grid;
  803. -webkit-user-select: none;
  804. -moz-user-select: none;
  805. user-select: none;
  806. place-content: center;
  807. cursor: pointer;
  808. }
  809. .swap > * {
  810. grid-column-start: 1;
  811. grid-row-start: 1;
  812. transition-duration: 300ms;
  813. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  814. transition-property: transform, opacity;
  815. }
  816. .swap input {
  817. -webkit-appearance: none;
  818. -moz-appearance: none;
  819. appearance: none;
  820. }
  821. .swap .swap-on,
  822. .swap .swap-indeterminate,
  823. .swap input:indeterminate ~ .swap-on {
  824. opacity: 0;
  825. }
  826. .swap input:checked ~ .swap-off,
  827. .swap.swap-active .swap-off,
  828. .swap input:indeterminate ~ .swap-off {
  829. opacity: 0;
  830. }
  831. .swap input:checked ~ .swap-on,
  832. .swap-active .swap-on,
  833. .swap input:indeterminate ~ .swap-indeterminate {
  834. opacity: 1;
  835. }
  836. .btm-nav>* .label {
  837. font-size: 1rem;
  838. line-height: 1.5rem;
  839. }
  840. .btn:active:hover,
  841. .btn:active:focus {
  842. animation: none;
  843. transform: scale(var(--btn-focus-scale, 0.95));
  844. }
  845. .btn:hover,
  846. .btn-active {
  847. --tw-border-opacity: 1;
  848. border-color: hsl(var(--nf, var(--n)) / var(--tw-border-opacity));
  849. --tw-bg-opacity: 1;
  850. background-color: hsl(var(--nf, var(--n)) / var(--tw-bg-opacity));
  851. }
  852. .btn:focus-visible {
  853. outline: 2px solid hsl(var(--nf));
  854. outline-offset: 2px;
  855. }
  856. .btn.glass:hover,
  857. .btn.glass.btn-active {
  858. --glass-opacity: 25%;
  859. --glass-border-opacity: 15%;
  860. }
  861. .btn.glass:focus-visible {
  862. outline: 2px solid currentColor;
  863. }
  864. .btn-ghost {
  865. border-width: 1px;
  866. border-color: transparent;
  867. background-color: transparent;
  868. color: currentColor;
  869. }
  870. .btn-ghost:hover,
  871. .btn-ghost.btn-active {
  872. --tw-border-opacity: 0;
  873. background-color: hsl(var(--bc) / var(--tw-bg-opacity));
  874. --tw-bg-opacity: 0.2;
  875. }
  876. .btn-ghost:focus-visible {
  877. outline: 2px solid currentColor;
  878. }
  879. .btn-disabled,
  880. .btn-disabled:hover,
  881. .btn[disabled],
  882. .btn[disabled]:hover {
  883. --tw-border-opacity: 0;
  884. background-color: hsl(var(--n) / var(--tw-bg-opacity));
  885. --tw-bg-opacity: 0.2;
  886. color: hsl(var(--bc) / var(--tw-text-opacity));
  887. --tw-text-opacity: 0.2;
  888. }
  889. .btn.loading.btn-square:before,
  890. .btn.loading.btn-circle:before {
  891. margin-right: 0px;
  892. }
  893. .btn.loading.btn-xl:before,
  894. .btn.loading.btn-lg:before {
  895. height: 1.25rem;
  896. width: 1.25rem;
  897. }
  898. .btn.loading.btn-sm:before,
  899. .btn.loading.btn-xs:before {
  900. height: 0.75rem;
  901. width: 0.75rem;
  902. }
  903. .btn-group > input[type="radio"]:checked.btn,
  904. .btn-group > .btn-active {
  905. --tw-border-opacity: 1;
  906. border-color: hsl(var(--p) / var(--tw-border-opacity));
  907. --tw-bg-opacity: 1;
  908. background-color: hsl(var(--p) / var(--tw-bg-opacity));
  909. --tw-text-opacity: 1;
  910. color: hsl(var(--pc) / var(--tw-text-opacity));
  911. }
  912. .btn-group > input[type="radio"]:checked.btn:focus-visible, .btn-group > .btn-active:focus-visible {
  913. outline: 2px solid hsl(var(--p));
  914. }
  915. @keyframes button-pop {
  916. 0% {
  917. transform: scale(var(--btn-focus-scale, 0.95));
  918. }
  919. 40% {
  920. transform: scale(1.02);
  921. }
  922. 100% {
  923. transform: scale(1);
  924. }
  925. }
  926. @keyframes checkmark {
  927. 0% {
  928. background-position-y: 5px;
  929. }
  930. 50% {
  931. background-position-y: -2px;
  932. }
  933. 100% {
  934. background-position-y: 0;
  935. }
  936. }
  937. .drawer-toggle:focus-visible ~ .drawer-content .drawer-button.btn-ghost {
  938. outline: 2px solid currentColor;
  939. }
  940. .dropdown.dropdown-open .dropdown-content,
  941. .dropdown.dropdown-hover:hover .dropdown-content,
  942. .dropdown:focus .dropdown-content,
  943. .dropdown:focus-within .dropdown-content {
  944. --tw-scale-x: 1;
  945. --tw-scale-y: 1;
  946. 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));
  947. }
  948. .label a:hover {
  949. --tw-text-opacity: 1;
  950. color: hsl(var(--bc) / var(--tw-text-opacity));
  951. }
  952. .link:focus {
  953. outline: 2px solid transparent;
  954. outline-offset: 2px;
  955. }
  956. .link:focus-visible {
  957. outline: 2px solid currentColor;
  958. outline-offset: 2px;
  959. }
  960. .menu.horizontal > li.bordered > a,
  961. .menu.horizontal > li.bordered > button,
  962. .menu.horizontal > li.bordered > span {
  963. border-left-width: 0px;
  964. border-bottom-width: 4px;
  965. --tw-border-opacity: 1;
  966. border-color: hsl(var(--p) / var(--tw-border-opacity));
  967. }
  968. .menu[class*=" px-"]:not(.menu[class*=" px-0"]) li > *,
  969. .menu[class^="px-"]:not(.menu[class^="px-0"]) li > *,
  970. .menu[class*=" p-"]:not(.menu[class*=" p-0"]) li > *,
  971. .menu[class^="p-"]:not(.menu[class^="p-0"]) li > * {
  972. border-radius: var(--rounded-btn, 0.5rem);
  973. }
  974. .menu :where(li.bordered > *) {
  975. border-left-width: 4px;
  976. --tw-border-opacity: 1;
  977. border-color: hsl(var(--p) / var(--tw-border-opacity));
  978. }
  979. .menu :where(li) > :where(*:not(ul)) {
  980. gap: 0.75rem;
  981. padding-left: 1rem;
  982. padding-right: 1rem;
  983. padding-top: 0.75rem;
  984. padding-bottom: 0.75rem;
  985. color: currentColor;
  986. }
  987. .menu :where(li:not(.menu-title):not(:empty)) > :where(*:not(ul):focus),
  988. .menu :where(li:not(.menu-title):not(:empty)) > :where(*:not(ul):hover) {
  989. background-color: hsl(var(--bc) / var(--tw-bg-opacity));
  990. --tw-bg-opacity: 0.1;
  991. }
  992. .menu :where(li:not(.menu-title):not(:empty)) > :where(:not(ul).active),
  993. .menu :where(li:not(.menu-title):not(:empty)) > :where(*:not(ul):active) {
  994. --tw-bg-opacity: 1;
  995. background-color: hsl(var(--p) / var(--tw-bg-opacity));
  996. --tw-text-opacity: 1;
  997. color: hsl(var(--pc) / var(--tw-text-opacity));
  998. }
  999. .menu :where(li:empty) {
  1000. margin-left: 1rem;
  1001. margin-right: 1rem;
  1002. margin-top: 0.5rem;
  1003. margin-bottom: 0.5rem;
  1004. height: 1px;
  1005. background-color: hsl(var(--bc) / var(--tw-bg-opacity));
  1006. --tw-bg-opacity: 0.1;
  1007. }
  1008. .menu li.disabled > * {
  1009. -webkit-user-select: none;
  1010. -moz-user-select: none;
  1011. user-select: none;
  1012. color: hsl(var(--bc) / var(--tw-text-opacity));
  1013. --tw-text-opacity: 0.2;
  1014. }
  1015. .menu li.disabled > *:hover {
  1016. background-color: transparent;
  1017. }
  1018. .menu li.hover-bordered a {
  1019. border-left-width: 4px;
  1020. border-color: transparent;
  1021. }
  1022. .menu li.hover-bordered a:hover {
  1023. --tw-border-opacity: 1;
  1024. border-color: hsl(var(--p) / var(--tw-border-opacity));
  1025. }
  1026. .menu.compact li > a,
  1027. .menu.compact li > span {
  1028. padding-top: 0.5rem;
  1029. padding-bottom: 0.5rem;
  1030. font-size: 0.875rem;
  1031. line-height: 1.25rem;
  1032. }
  1033. .menu .menu-title {
  1034. font-size: 0.75rem;
  1035. line-height: 1rem;
  1036. font-weight: 700;
  1037. opacity: 0.4;
  1038. }
  1039. .menu .menu-title > * {
  1040. padding-top: 0.25rem;
  1041. padding-bottom: 0.25rem;
  1042. }
  1043. .menu :where(li:not(.disabled)) > :where(*:not(ul)) {
  1044. outline: 2px solid transparent;
  1045. outline-offset: 2px;
  1046. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  1047. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  1048. transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  1049. transition-duration: 200ms;
  1050. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  1051. }
  1052. .menu > :where(li:first-child) {
  1053. border-top-left-radius: inherit;
  1054. border-top-right-radius: inherit;
  1055. border-bottom-right-radius: unset;
  1056. border-bottom-left-radius: unset;
  1057. }
  1058. .menu > :where(li:first-child) > :where(:not(ul)) {
  1059. border-top-left-radius: inherit;
  1060. border-top-right-radius: inherit;
  1061. border-bottom-right-radius: unset;
  1062. border-bottom-left-radius: unset;
  1063. }
  1064. .menu > :where(li:last-child) {
  1065. border-top-left-radius: unset;
  1066. border-top-right-radius: unset;
  1067. border-bottom-right-radius: inherit;
  1068. border-bottom-left-radius: inherit;
  1069. }
  1070. .menu > :where(li:last-child) > :where(:not(ul)) {
  1071. border-top-left-radius: unset;
  1072. border-top-right-radius: unset;
  1073. border-bottom-right-radius: inherit;
  1074. border-bottom-left-radius: inherit;
  1075. }
  1076. .menu > :where(li:first-child:last-child) {
  1077. border-top-left-radius: inherit;
  1078. border-top-right-radius: inherit;
  1079. border-bottom-right-radius: inherit;
  1080. border-bottom-left-radius: inherit;
  1081. }
  1082. .menu > :where(li:first-child:last-child) > :where(:not(ul)) {
  1083. border-top-left-radius: inherit;
  1084. border-top-right-radius: inherit;
  1085. border-bottom-right-radius: inherit;
  1086. border-bottom-left-radius: inherit;
  1087. }
  1088. .menu > :where(li) > :where(ul) :where(li) {
  1089. width: 100%;
  1090. white-space: nowrap;
  1091. }
  1092. .menu > :where(li) > :where(ul) :where(li) :where(ul) {
  1093. padding-left: 1rem;
  1094. }
  1095. .menu > :where(li) > :where(ul) :where(li) > :where(:not(ul)) {
  1096. width: 100%;
  1097. white-space: nowrap;
  1098. }
  1099. .menu > :where(li) > :where(ul) > :where(li:first-child) {
  1100. border-top-left-radius: inherit;
  1101. border-top-right-radius: inherit;
  1102. border-bottom-right-radius: unset;
  1103. border-bottom-left-radius: unset;
  1104. }
  1105. .menu > :where(li) > :where(ul) > :where(li:first-child) > :where(:not(ul)) {
  1106. border-top-left-radius: inherit;
  1107. border-top-right-radius: inherit;
  1108. border-bottom-right-radius: unset;
  1109. border-bottom-left-radius: unset;
  1110. }
  1111. .menu > :where(li) > :where(ul) > :where(li:last-child) {
  1112. border-top-left-radius: unset;
  1113. border-top-right-radius: unset;
  1114. border-bottom-right-radius: inherit;
  1115. border-bottom-left-radius: inherit;
  1116. }
  1117. .menu > :where(li) > :where(ul) > :where(li:last-child) > :where(:not(ul)) {
  1118. border-top-left-radius: unset;
  1119. border-top-right-radius: unset;
  1120. border-bottom-right-radius: inherit;
  1121. border-bottom-left-radius: inherit;
  1122. }
  1123. .menu > :where(li) > :where(ul) > :where(li:first-child:last-child) {
  1124. border-top-left-radius: inherit;
  1125. border-top-right-radius: inherit;
  1126. border-bottom-right-radius: inherit;
  1127. border-bottom-left-radius: inherit;
  1128. }
  1129. .menu > :where(li) > :where(ul) > :where(li:first-child:last-child) > :where(:not(ul)) {
  1130. border-top-left-radius: inherit;
  1131. border-top-right-radius: inherit;
  1132. border-bottom-right-radius: inherit;
  1133. border-bottom-left-radius: inherit;
  1134. }
  1135. .mockup-phone .display {
  1136. overflow: hidden;
  1137. border-radius: 40px;
  1138. margin-top: -25px;
  1139. }
  1140. @keyframes progress-loading {
  1141. 50% {
  1142. left: 107%;
  1143. }
  1144. }
  1145. @keyframes radiomark {
  1146. 0% {
  1147. box-shadow: 0 0 0 12px hsl(var(--b1)) inset, 0 0 0 12px hsl(var(--b1)) inset;
  1148. }
  1149. 50% {
  1150. box-shadow: 0 0 0 3px hsl(var(--b1)) inset, 0 0 0 3px hsl(var(--b1)) inset;
  1151. }
  1152. 100% {
  1153. box-shadow: 0 0 0 4px hsl(var(--b1)) inset, 0 0 0 4px hsl(var(--b1)) inset;
  1154. }
  1155. }
  1156. @keyframes rating-pop {
  1157. 0% {
  1158. transform: translateY(-0.125em);
  1159. }
  1160. 40% {
  1161. transform: translateY(-0.125em);
  1162. }
  1163. 100% {
  1164. transform: translateY(0);
  1165. }
  1166. }
  1167. @keyframes toast-pop {
  1168. 0% {
  1169. transform: scale(0.9);
  1170. opacity: 0;
  1171. }
  1172. 100% {
  1173. transform: scale(1);
  1174. opacity: 1;
  1175. }
  1176. }
  1177. .rounded-box {
  1178. border-radius: var(--rounded-box, 1rem);
  1179. }
  1180. .menu-horizontal {
  1181. display: inline-flex;
  1182. width: -moz-max-content;
  1183. width: max-content;
  1184. flex-direction: row;
  1185. }
  1186. .menu-horizontal :where(li) {
  1187. flex-direction: row;
  1188. }
  1189. .menu-horizontal > :where(li) > :where(ul) {
  1190. top: 100%;
  1191. left: initial;
  1192. }
  1193. .btn-group .btn:not(:first-child):not(:last-child) {
  1194. border-top-left-radius: 0;
  1195. border-top-right-radius: 0;
  1196. border-bottom-left-radius: 0;
  1197. border-bottom-right-radius: 0;
  1198. }
  1199. .btn-group .btn:first-child:not(:last-child) {
  1200. margin-top: -0px;
  1201. margin-left: -1px;
  1202. border-top-left-radius: var(--rounded-btn, 0.5rem);
  1203. border-top-right-radius: 0;
  1204. border-bottom-left-radius: var(--rounded-btn, 0.5rem);
  1205. border-bottom-right-radius: 0;
  1206. }
  1207. .btn-group .btn:last-child:not(:first-child) {
  1208. border-top-left-radius: 0;
  1209. border-top-right-radius: var(--rounded-btn, 0.5rem);
  1210. border-bottom-left-radius: 0;
  1211. border-bottom-right-radius: var(--rounded-btn, 0.5rem);
  1212. }
  1213. .btn-group-horizontal .btn:not(:first-child):not(:last-child) {
  1214. border-top-left-radius: 0;
  1215. border-top-right-radius: 0;
  1216. border-bottom-left-radius: 0;
  1217. border-bottom-right-radius: 0;
  1218. }
  1219. .btn-group-horizontal .btn:first-child:not(:last-child) {
  1220. margin-top: -0px;
  1221. margin-left: -1px;
  1222. border-top-left-radius: var(--rounded-btn, 0.5rem);
  1223. border-top-right-radius: 0;
  1224. border-bottom-left-radius: var(--rounded-btn, 0.5rem);
  1225. border-bottom-right-radius: 0;
  1226. }
  1227. .btn-group-horizontal .btn:last-child:not(:first-child) {
  1228. border-top-left-radius: 0;
  1229. border-top-right-radius: var(--rounded-btn, 0.5rem);
  1230. border-bottom-left-radius: 0;
  1231. border-bottom-right-radius: var(--rounded-btn, 0.5rem);
  1232. }
  1233. .btn-group-vertical .btn:first-child:not(:last-child) {
  1234. margin-top: -1px;
  1235. margin-left: -0px;
  1236. border-top-left-radius: var(--rounded-btn, 0.5rem);
  1237. border-top-right-radius: var(--rounded-btn, 0.5rem);
  1238. border-bottom-left-radius: 0;
  1239. border-bottom-right-radius: 0;
  1240. }
  1241. .btn-group-vertical .btn:last-child:not(:first-child) {
  1242. border-top-left-radius: 0;
  1243. border-top-right-radius: 0;
  1244. border-bottom-left-radius: var(--rounded-btn, 0.5rem);
  1245. border-bottom-right-radius: var(--rounded-btn, 0.5rem);
  1246. }
  1247. .menu-horizontal :where(li.bordered > *) {
  1248. border-left-width: 0px;
  1249. border-bottom-width: 4px;
  1250. }
  1251. .menu-compact :where(li > *) {
  1252. padding-top: 0.5rem;
  1253. padding-bottom: 0.5rem;
  1254. font-size: 0.875rem;
  1255. line-height: 1.25rem;
  1256. }
  1257. .menu-horizontal > :where(li:first-child) {
  1258. border-top-left-radius: inherit;
  1259. border-top-right-radius: unset;
  1260. border-bottom-right-radius: unset;
  1261. border-bottom-left-radius: inherit;
  1262. }
  1263. .menu-horizontal > :where(li:first-child) > :where(*:not(ul)) {
  1264. border-top-left-radius: inherit;
  1265. border-top-right-radius: unset;
  1266. border-bottom-right-radius: unset;
  1267. border-bottom-left-radius: inherit;
  1268. }
  1269. .menu-horizontal > :where(li:last-child) {
  1270. border-top-left-radius: unset;
  1271. border-top-right-radius: inherit;
  1272. border-bottom-right-radius: inherit;
  1273. border-bottom-left-radius: unset;
  1274. }
  1275. .menu-horizontal > :where(li:last-child) > :where(*:not(ul)) {
  1276. border-top-left-radius: unset;
  1277. border-top-right-radius: inherit;
  1278. border-bottom-right-radius: inherit;
  1279. border-bottom-left-radius: unset;
  1280. }
  1281. .absolute {
  1282. position: absolute;
  1283. }
  1284. .relative {
  1285. position: relative;
  1286. }
  1287. .bottom-10 {
  1288. bottom: 2.5rem;
  1289. }
  1290. .left-2 {
  1291. left: 0.5rem;
  1292. }
  1293. .right-2 {
  1294. right: 0.5rem;
  1295. }
  1296. .z-50 {
  1297. z-index: 50;
  1298. }
  1299. .-m-1 {
  1300. margin: -0.25rem;
  1301. }
  1302. .mx-auto {
  1303. margin-left: auto;
  1304. margin-right: auto;
  1305. }
  1306. .mt-2 {
  1307. margin-top: 0.5rem;
  1308. }
  1309. .mt-3 {
  1310. margin-top: 0.75rem;
  1311. }
  1312. .block {
  1313. display: block;
  1314. }
  1315. .flex {
  1316. display: flex;
  1317. }
  1318. .grid {
  1319. display: grid;
  1320. }
  1321. .hidden {
  1322. display: none;
  1323. }
  1324. .h-5 {
  1325. height: 1.25rem;
  1326. }
  1327. .h-6 {
  1328. height: 1.5rem;
  1329. }
  1330. .h-full {
  1331. height: 100%;
  1332. }
  1333. .min-h-0 {
  1334. min-height: 0px;
  1335. }
  1336. .w-1\/2 {
  1337. width: 50%;
  1338. }
  1339. .w-5 {
  1340. width: 1.25rem;
  1341. }
  1342. .w-52 {
  1343. width: 13rem;
  1344. }
  1345. .w-56 {
  1346. width: 14rem;
  1347. }
  1348. .w-6 {
  1349. width: 1.5rem;
  1350. }
  1351. .w-full {
  1352. width: 100%;
  1353. }
  1354. .grid-flow-col {
  1355. grid-auto-flow: column;
  1356. }
  1357. .flex-row {
  1358. flex-direction: row;
  1359. }
  1360. .flex-wrap {
  1361. flex-wrap: wrap;
  1362. }
  1363. .justify-center {
  1364. justify-content: center;
  1365. }
  1366. .justify-between {
  1367. justify-content: space-between;
  1368. }
  1369. .gap-4 {
  1370. gap: 1rem;
  1371. }
  1372. .bg-base-100 {
  1373. --tw-bg-opacity: 1;
  1374. background-color: hsl(var(--b1) / var(--tw-bg-opacity));
  1375. }
  1376. .bg-black {
  1377. --tw-bg-opacity: 1;
  1378. background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  1379. }
  1380. .bg-fuchsia-400 {
  1381. --tw-bg-opacity: 1;
  1382. background-color: rgb(232 121 249 / var(--tw-bg-opacity));
  1383. }
  1384. .bg-primary {
  1385. --tw-bg-opacity: 1;
  1386. background-color: hsl(var(--p) / var(--tw-bg-opacity));
  1387. }
  1388. .bg-secondary {
  1389. --tw-bg-opacity: 1;
  1390. background-color: hsl(var(--s) / var(--tw-bg-opacity));
  1391. }
  1392. .bg-slate-500 {
  1393. --tw-bg-opacity: 1;
  1394. background-color: rgb(100 116 139 / var(--tw-bg-opacity));
  1395. }
  1396. .bg-red-600 {
  1397. --tw-bg-opacity: 1;
  1398. background-color: rgb(220 38 38 / var(--tw-bg-opacity));
  1399. }
  1400. .bg-slate-400 {
  1401. --tw-bg-opacity: 1;
  1402. background-color: rgb(148 163 184 / var(--tw-bg-opacity));
  1403. }
  1404. .fill-current {
  1405. fill: currentColor;
  1406. }
  1407. .object-cover {
  1408. -o-object-fit: cover;
  1409. object-fit: cover;
  1410. }
  1411. .object-center {
  1412. -o-object-position: center;
  1413. object-position: center;
  1414. }
  1415. .p-0 {
  1416. padding: 0px;
  1417. }
  1418. .p-1 {
  1419. padding: 0.25rem;
  1420. }
  1421. .p-10 {
  1422. padding: 2.5rem;
  1423. }
  1424. .p-2 {
  1425. padding: 0.5rem;
  1426. }
  1427. .p-4 {
  1428. padding: 1rem;
  1429. }
  1430. .px-1 {
  1431. padding-left: 0.25rem;
  1432. padding-right: 0.25rem;
  1433. }
  1434. .px-3 {
  1435. padding-left: 0.75rem;
  1436. padding-right: 0.75rem;
  1437. }
  1438. .px-4 {
  1439. padding-left: 1rem;
  1440. padding-right: 1rem;
  1441. }
  1442. .px-5 {
  1443. padding-left: 1.25rem;
  1444. padding-right: 1.25rem;
  1445. }
  1446. .py-1 {
  1447. padding-top: 0.25rem;
  1448. padding-bottom: 0.25rem;
  1449. }
  1450. .py-2 {
  1451. padding-top: 0.5rem;
  1452. padding-bottom: 0.5rem;
  1453. }
  1454. .pl-2 {
  1455. padding-left: 0.5rem;
  1456. }
  1457. .font-poppins {
  1458. font-family: Poppins;
  1459. }
  1460. .text-sm {
  1461. font-size: 0.875rem;
  1462. line-height: 1.25rem;
  1463. }
  1464. .text-xl {
  1465. font-size: 1.25rem;
  1466. line-height: 1.75rem;
  1467. }
  1468. .font-bold {
  1469. font-weight: 700;
  1470. }
  1471. .text-gray-200 {
  1472. --tw-text-opacity: 1;
  1473. color: rgb(229 231 235 / var(--tw-text-opacity));
  1474. }
  1475. .text-gray-300 {
  1476. --tw-text-opacity: 1;
  1477. color: rgb(209 213 219 / var(--tw-text-opacity));
  1478. }
  1479. .text-white {
  1480. --tw-text-opacity: 1;
  1481. color: rgb(255 255 255 / var(--tw-text-opacity));
  1482. }
  1483. .opacity-70 {
  1484. opacity: 0.7;
  1485. }
  1486. .shadow {
  1487. --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  1488. --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  1489. box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  1490. }
  1491. @media (min-width: 640px) {
  1492. .sm\:block {
  1493. display: block;
  1494. }
  1495. }
  1496. @media (min-width: 768px) {
  1497. .md\:-m-2 {
  1498. margin: -0.5rem;
  1499. }
  1500. .md\:inline-flex {
  1501. display: inline-flex;
  1502. }
  1503. .md\:p-2 {
  1504. padding: 0.5rem;
  1505. }
  1506. }
  1507. @media (min-width: 1024px) {
  1508. .lg\:flex {
  1509. display: flex;
  1510. }
  1511. .lg\:hidden {
  1512. display: none;
  1513. }
  1514. .lg\:w-1\/2 {
  1515. width: 50%;
  1516. }
  1517. .lg\:pt-4 {
  1518. padding-top: 1rem;
  1519. }
  1520. }