lookbook 0.4.3 → 0.4.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +223 -54
  3. data/app/assets/lookbook/css/app.css +64 -8
  4. data/app/assets/lookbook/js/app.js +39 -53
  5. data/app/assets/lookbook/js/components/copy.js +16 -0
  6. data/app/assets/lookbook/js/components/filter.js +24 -0
  7. data/app/assets/lookbook/js/components/inspector.js +21 -0
  8. data/app/assets/lookbook/js/{nav/node.js → components/nav-group.js} +16 -15
  9. data/app/assets/lookbook/js/components/nav-item.js +26 -0
  10. data/app/assets/lookbook/js/components/nav.js +35 -0
  11. data/app/assets/lookbook/js/components/page.js +33 -0
  12. data/app/assets/lookbook/js/components/param.js +18 -0
  13. data/app/assets/lookbook/js/{workbench/preview.js → components/preview-window.js} +9 -10
  14. data/app/assets/lookbook/js/components/sidebar.js +3 -0
  15. data/app/assets/lookbook/js/components/sizes.js +16 -0
  16. data/app/assets/lookbook/js/components/splitter.js +25 -0
  17. data/app/assets/lookbook/js/config.js +14 -0
  18. data/app/assets/lookbook/js/{utils/reloader.js → lib/socket.js} +7 -12
  19. data/app/assets/lookbook/js/lib/split.js +21 -0
  20. data/app/assets/lookbook/js/lib/utils.js +3 -0
  21. data/app/assets/lookbook/js/stores/filter.js +11 -0
  22. data/app/assets/lookbook/js/stores/inspector.js +17 -0
  23. data/app/assets/lookbook/js/stores/layout.js +12 -0
  24. data/app/assets/lookbook/js/stores/nav.js +21 -0
  25. data/app/assets/lookbook/js/stores/sidebar.js +14 -0
  26. data/app/controllers/lookbook/app_controller.rb +82 -87
  27. data/app/helpers/lookbook/application_helper.rb +49 -5
  28. data/app/helpers/lookbook/preview_helper.rb +7 -0
  29. data/app/views/layouts/lookbook/app.html.erb +54 -0
  30. data/app/views/layouts/lookbook/preview.html.erb +12 -0
  31. data/app/views/lookbook/components/_code.html.erb +8 -0
  32. data/app/views/lookbook/{shared/_clipboard.html.erb → components/_copy.html.erb} +4 -5
  33. data/app/views/lookbook/components/_filter.html.erb +15 -0
  34. data/app/views/lookbook/{shared → components}/_header.html.erb +3 -3
  35. data/app/views/lookbook/components/_icon.html.erb +5 -0
  36. data/app/views/lookbook/components/_nav.html.erb +17 -0
  37. data/app/views/lookbook/components/_nav_collection.html.erb +5 -0
  38. data/app/views/lookbook/components/_nav_group.html.erb +17 -0
  39. data/app/views/lookbook/components/_nav_item.html.erb +21 -0
  40. data/app/views/lookbook/components/_nav_preview.html.erb +11 -0
  41. data/app/views/lookbook/components/_param.html.erb +20 -0
  42. data/app/views/lookbook/{workbench → components}/_preview.html.erb +8 -8
  43. data/app/views/lookbook/{app/error.html.erb → error.html.erb} +0 -0
  44. data/app/views/lookbook/index.html.erb +9 -0
  45. data/app/views/lookbook/inputs/_select.html.erb +8 -0
  46. data/app/views/lookbook/inputs/_text.html.erb +8 -0
  47. data/app/views/lookbook/inputs/_textarea.html.erb +8 -0
  48. data/app/views/lookbook/inputs/_toggle.html.erb +13 -0
  49. data/app/views/lookbook/{app/not_found.html.erb → not_found.html.erb} +2 -4
  50. data/app/views/lookbook/panels/_notes.html.erb +25 -0
  51. data/app/views/lookbook/panels/_output.html.erb +18 -0
  52. data/app/views/lookbook/panels/_params.html.erb +17 -0
  53. data/app/views/lookbook/panels/_source.html.erb +20 -0
  54. data/app/views/lookbook/show.html.erb +90 -0
  55. data/lib/lookbook/code_formatter.rb +20 -0
  56. data/lib/lookbook/engine.rb +10 -1
  57. data/lib/lookbook/features.rb +24 -0
  58. data/lib/lookbook/lang.rb +10 -5
  59. data/lib/lookbook/params.rb +110 -0
  60. data/lib/lookbook/parser.rb +1 -1
  61. data/lib/lookbook/preview.rb +1 -1
  62. data/lib/lookbook/preview_controller.rb +1 -1
  63. data/lib/lookbook/preview_example.rb +13 -1
  64. data/lib/lookbook/preview_group.rb +9 -1
  65. data/lib/lookbook/taggable.rb +2 -2
  66. data/lib/lookbook/version.rb +1 -1
  67. data/lib/lookbook.rb +3 -0
  68. data/public/lookbook-assets/css/app.css +2 -0
  69. data/public/lookbook-assets/css/app.css.map +1 -0
  70. data/public/lookbook-assets/js/app.js +2 -0
  71. data/public/lookbook-assets/js/app.js.map +1 -0
  72. metadata +58 -38
  73. data/app/assets/lookbook/js/nav/leaf.js +0 -20
  74. data/app/assets/lookbook/js/nav.js +0 -39
  75. data/app/assets/lookbook/js/page.js +0 -33
  76. data/app/assets/lookbook/js/utils/clipboard.js +0 -13
  77. data/app/assets/lookbook/js/utils/morph.js +0 -16
  78. data/app/assets/lookbook/js/utils/screen.js +0 -44
  79. data/app/assets/lookbook/js/utils/size_observer.js +0 -16
  80. data/app/assets/lookbook/js/utils/split.js +0 -26
  81. data/app/assets/lookbook/js/workbench/inspector.js +0 -11
  82. data/app/assets/lookbook/js/workbench.js +0 -14
  83. data/app/views/lookbook/app/index.html.erb +0 -11
  84. data/app/views/lookbook/app/show.html.erb +0 -1
  85. data/app/views/lookbook/layouts/app.html.erb +0 -41
  86. data/app/views/lookbook/nav/_collection.html.erb +0 -5
  87. data/app/views/lookbook/nav/_leaf.html.erb +0 -22
  88. data/app/views/lookbook/nav/_node.html.erb +0 -19
  89. data/app/views/lookbook/nav/_preview.html.erb +0 -11
  90. data/app/views/lookbook/preview/group.html.erb +0 -8
  91. data/app/views/lookbook/shared/_sidebar.html.erb +0 -45
  92. data/app/views/lookbook/shared/_workbench.html.erb +0 -12
  93. data/app/views/lookbook/workbench/_header.html.erb +0 -39
  94. data/app/views/lookbook/workbench/_inspector.html.erb +0 -33
  95. data/app/views/lookbook/workbench/inspector/_code.html.erb +0 -3
  96. data/app/views/lookbook/workbench/inspector/_notes.html.erb +0 -24
  97. data/app/views/lookbook/workbench/inspector/_plain.html.erb +0 -3
  98. data/public/lookbook-assets/app.css +0 -2504
  99. data/public/lookbook-assets/app.js +0 -8680
@@ -8,6 +8,10 @@ module Lookbook
8
8
  def config
9
9
  @config ||= Engine.config.lookbook
10
10
  end
11
+
12
+ def logger
13
+ @logger ||= config.debug == true ? Rails.logger : Lookbook::NullLogger.new
14
+ end
11
15
  end
12
16
 
13
17
  class Engine < Rails::Engine
@@ -35,6 +39,8 @@ module Lookbook
35
39
  options.listen_paths = options.listen_paths.map(&:to_s)
36
40
  options.listen_paths += options.preview_paths
37
41
  options.listen_paths << (vc_options.view_component_path || Rails.root.join("app/components"))
42
+
43
+ options.experimental_features = false unless options.experimental_features.present?
38
44
  end
39
45
 
40
46
  initializer "lookbook.cable.config" do |app|
@@ -76,7 +82,10 @@ module Lookbook
76
82
  parser.parse
77
83
  if app.config.lookbook.auto_refresh
78
84
  if (modified.any? || removed.any?) && added.none?
79
- Lookbook::Engine.websocket.broadcast("reload", {modified: modified, removed: removed})
85
+ Lookbook::Engine.websocket.broadcast("reload", {
86
+ modified: modified,
87
+ removed: removed
88
+ })
80
89
  end
81
90
  end
82
91
  end
@@ -0,0 +1,24 @@
1
+ module Lookbook
2
+ module Features
3
+ EXPERIMENTAL_FEATURES = [:params]
4
+
5
+ def self.experimental_feature?(name)
6
+ EXPERIMENTAL_FEATURES.include?(name.to_sym)
7
+ end
8
+
9
+ def self.enabled?(name)
10
+ return true unless experimental_feature?(name)
11
+ enabled.include?(name.to_sym)
12
+ end
13
+
14
+ def self.enabled
15
+ if Lookbook.config.experimental_features == true
16
+ EXPERIMENTAL_FEATURES
17
+ elsif Lookbook.config.experimental_features.blank?
18
+ []
19
+ else
20
+ Lookbook.config.experimental_features.map(&:to_sym)
21
+ end
22
+ end
23
+ end
24
+ end
data/lib/lookbook/lang.rb CHANGED
@@ -5,27 +5,32 @@ module Lookbook
5
5
  {
6
6
  name: "ruby",
7
7
  ext: ".rb",
8
- label: "Ruby"
8
+ label: "Ruby",
9
+ comment: "# %s"
9
10
  },
10
11
  {
11
12
  name: "html",
12
13
  ext: ".html",
13
- label: "HTML"
14
+ label: "HTML",
15
+ comment: "<!-- %s -->"
14
16
  },
15
17
  {
16
18
  name: "erb",
17
19
  ext: ".erb",
18
- label: "ERB"
20
+ label: "ERB",
21
+ comment: "<%%# %s %%>"
19
22
  },
20
23
  {
21
24
  name: "haml",
22
25
  ext: ".haml",
23
- label: "Haml"
26
+ label: "Haml",
27
+ comment: "<!-- %s -->"
24
28
  },
25
29
  {
26
30
  name: "slim",
27
31
  ext: ".slim",
28
- label: "Slim"
32
+ label: "Slim",
33
+ comment: "<!-- %s -->"
29
34
  }
30
35
  ]
31
36
 
@@ -0,0 +1,110 @@
1
+ module Lookbook
2
+ module Params
3
+ class << self
4
+ def build_param(param, default)
5
+ input, options_str = param.text.present? ? param.text.split(" ", 2) : [nil, ""]
6
+ type = param.types&.first
7
+ options = YAML.safe_load(options_str || "~")
8
+ input ||= guess_input(type, default)
9
+ type ||= guess_type(input, default)
10
+ {
11
+ name: param.name,
12
+ input: input_text?(input) ? "text" : input,
13
+ input_type: (input if input_text?(input)),
14
+ options: options,
15
+ type: type,
16
+ default: default
17
+ }
18
+ end
19
+
20
+ def parse_method_param_str(param_str)
21
+ return nil if param_str[0].nil? || param_str[1].nil?
22
+ name = param_str[0].chomp(":")
23
+ value = param_str[1]&.strip
24
+ value = case value
25
+ when "nil"
26
+ nil
27
+ else
28
+ if value&.first == ":"
29
+ value.delete_prefix(":").to_sym
30
+ else
31
+ YAML.safe_load(value)
32
+ end
33
+ end
34
+ [name, value]
35
+ end
36
+
37
+ def cast(value, type = "String")
38
+ case type.downcase
39
+ when "symbol"
40
+ value.delete_prefix(":").to_sym
41
+ when "hash"
42
+ result = safe_parse_yaml(value, {})
43
+ unless result.is_a? Hash
44
+ Lookbook.logger.debug "Failed to parse '#{value}' into a Hash"
45
+ result = {}
46
+ end
47
+ result
48
+ when "array"
49
+ result = safe_parse_yaml(value, [])
50
+ unless result.is_a? Array
51
+ Lookbook.logger.debug "Failed to parse '#{value}' into an Array"
52
+ result = []
53
+ end
54
+ result
55
+ else
56
+ begin
57
+ type_class = "ActiveModel::Type::#{type}".constantize
58
+ type_class.new.cast(value)
59
+ rescue NameError
60
+ raise ArgumentError, "'#{type}' is not a valid param type to cast to."
61
+ end
62
+ end
63
+ end
64
+
65
+ private
66
+
67
+ def guess_input(type, default)
68
+ if type&.downcase == "boolean" || (type.blank? && boolean?(default))
69
+ "toggle"
70
+ else
71
+ "text"
72
+ end
73
+ end
74
+
75
+ def guess_type(input, default)
76
+ if input&.downcase == "toggle"
77
+ "Boolean"
78
+ elsif input&.downcase == "number"
79
+ "Integer"
80
+ elsif boolean?(default)
81
+ "Boolean"
82
+ elsif default.is_a? Symbol
83
+ "Symbol"
84
+ else
85
+ "String"
86
+ end
87
+ end
88
+
89
+ def input_text?(input)
90
+ [
91
+ "email",
92
+ "number",
93
+ "tel",
94
+ "text",
95
+ "url"
96
+ ].include? input
97
+ end
98
+
99
+ def safe_parse_yaml(value, fallback)
100
+ value.present? ? YAML.safe_load(value) : fallback
101
+ rescue Psych::SyntaxError
102
+ fallback
103
+ end
104
+
105
+ def boolean?(value)
106
+ value == true || value == false
107
+ end
108
+ end
109
+ end
110
+ end
@@ -5,7 +5,7 @@ module Lookbook
5
5
  YARDOC_FILE_PATH = Rails.root.join("tmp/storage/.yardoc").to_s
6
6
 
7
7
  def initialize(paths)
8
- @paths = paths.map { |p| "#{p}/**/*_preview.rb" }
8
+ @paths = paths.map { |p| "#{p}/**/*preview.rb" }
9
9
  YARD::Registry.yardoc_file = YARDOC_FILE_PATH
10
10
  end
11
11
 
@@ -71,7 +71,7 @@ module Lookbook
71
71
  end
72
72
 
73
73
  def lookbook_id
74
- lookbook_path.tr("_", "-")
74
+ lookbook_path.tr("/", "-").tr("_", "-")
75
75
  end
76
76
 
77
77
  def lookbook_layout
@@ -16,7 +16,7 @@ module Lookbook
16
16
 
17
17
  def render_in_layout_to_string(template, locals, layout = nil)
18
18
  append_view_path Lookbook::Engine.root.join("app/views")
19
- render_to_string template, locals: locals, **determine_layout(@preview.lookbook_layout)
19
+ render_to_string template, locals: locals, **determine_layout(layout)
20
20
  end
21
21
  end
22
22
  end
@@ -10,7 +10,7 @@ module Lookbook
10
10
  end
11
11
 
12
12
  def id
13
- path.underscore.tr("_", "-")
13
+ path.underscore.tr("/", "-").tr("_", "-")
14
14
  end
15
15
 
16
16
  def path
@@ -25,6 +25,12 @@ module Lookbook
25
25
  @preview.display_params.merge(lookbook_display_params)
26
26
  end
27
27
 
28
+ def params
29
+ @params || code_object&.tags("param")&.map do |param|
30
+ Lookbook::Params.build_param(param, parameter_defaults[param.name])
31
+ end
32
+ end
33
+
28
34
  def method_source
29
35
  code_object.source.split("\n")[1..-2].join("\n").strip_heredoc
30
36
  end
@@ -55,6 +61,12 @@ module Lookbook
55
61
 
56
62
  private
57
63
 
64
+ def parameter_defaults
65
+ @parameter_defaults || code_object&.parameters&.map do |param_str|
66
+ Lookbook::Params.parse_method_param_str(param_str)
67
+ end&.compact&.to_h
68
+ end
69
+
58
70
  def taggable_object_path
59
71
  "#{@preview.name}##{name}"
60
72
  end
@@ -11,7 +11,7 @@ module Lookbook
11
11
  end
12
12
 
13
13
  def id
14
- path.underscore.tr("_", "-")
14
+ path.underscore.tr("/", "-").tr("_", "-")
15
15
  end
16
16
 
17
17
  def path
@@ -26,6 +26,14 @@ module Lookbook
26
26
  :group
27
27
  end
28
28
 
29
+ def params
30
+ examples.map(&:params).flatten.uniq { |param| param[:name] }
31
+ end
32
+
33
+ def display_params
34
+ {}
35
+ end
36
+
29
37
  def hidden?
30
38
  false
31
39
  end
@@ -27,8 +27,8 @@ module Lookbook
27
27
  parts = tag.text.strip.match(/^([^\s]*)\s?(.*)$/)
28
28
  if parts.present?
29
29
  begin
30
- display_params[parts[1]] = JSON.parse parts[2]
31
- rescue JSON::ParserError => err
30
+ display_params[parts[1]] = YAML.safe_load(parts[2] || "~")
31
+ rescue SyntaxError => err
32
32
  Rails.logger.error("\n👀 [Lookbook] Invalid JSON in @display tag.\n👀 [Lookbook] (#{err})\n")
33
33
  end
34
34
  end
@@ -1,3 +1,3 @@
1
1
  module Lookbook
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.7"
3
3
  end
data/lib/lookbook.rb CHANGED
@@ -5,6 +5,8 @@ module Lookbook
5
5
  extend ActiveSupport::Autoload
6
6
 
7
7
  autoload :Lang, "lookbook/lang"
8
+ autoload :Params, "lookbook/params"
9
+ autoload :Features, "lookbook/features"
8
10
  autoload :Collection, "lookbook/collection"
9
11
  autoload :Parser, "lookbook/parser"
10
12
  autoload :Preview, "lookbook/preview"
@@ -13,4 +15,5 @@ module Lookbook
13
15
  autoload :PreviewGroup, "lookbook/preview_group"
14
16
  autoload :Taggable, "lookbook/taggable"
15
17
  autoload :NullLogger, "lookbook/null_logger"
18
+ autoload :CodeFormatter, "lookbook/code_formatter"
16
19
  end
@@ -0,0 +1,2 @@
1
+ /*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-webkit-text-size-adjust:100%;line-height:1.15;-moz-tab-size:4;tab-size:4}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:Nunito Sans,-apple-system,\.SFNSText-Regular,San Francisco,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::placeholder,textarea::placeholder{color:#9ca3af}[role=button],button{cursor:pointer}:-moz-focusring{outline:auto}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--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;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.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);border-color:rgba(229,231,235,var(--tw-border-opacity))}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;color-adjust:exact;padding-right:2.5rem}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;color-adjust:unset;padding-right:.75rem}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;color-adjust:exact;display:inline-block;flex-shrink:0;height:1rem;padding:0;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--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);outline:2px solid transparent;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:transparent}[type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px auto -webkit-focus-ring-color}html{scroll-behavior:smooth}@media screen and (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}[x-cloak]{display:none!important}pre[class*=language-]{margin:0!important;padding:0!important}.feather{stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;fill:none;height:24px;width:24px}::-webkit-scrollbar{height:8px;width:8px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{--tw-bg-opacity:1;background-clip:content-box;background-color:rgba(209,213,219,var(--tw-bg-opacity));border:2px solid transparent;border-radius:6px;transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}::-webkit-scrollbar-thumb:hover{--tw-bg-opacity:1;background-color:rgba(156,163,175,var(--tw-bg-opacity))}.prose{color:#374151;max-width:65ch}.prose [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose a{color:#111827;font-weight:500;text-decoration:underline}.prose strong{color:#111827;font-weight:600}.prose ol[type=A]{--list-counter-style:upper-alpha}.prose ol[type=a]{--list-counter-style:lower-alpha}.prose ol[type=A s]{--list-counter-style:upper-alpha}.prose ol[type=a s]{--list-counter-style:lower-alpha}.prose ol[type=I]{--list-counter-style:upper-roman}.prose ol[type=i]{--list-counter-style:lower-roman}.prose ol[type=I s]{--list-counter-style:upper-roman}.prose ol[type=i s]{--list-counter-style:lower-roman}.prose ol[type="1"]{--list-counter-style:decimal}.prose ol>li{padding-left:1.75em;position:relative}.prose ol>li:before{color:#6b7280;content:counter(list-item,var(--list-counter-style,decimal)) ".";font-weight:400;left:0;position:absolute}.prose ul>li{padding-left:1.75em;position:relative}.prose ul>li:before{background-color:#d1d5db;border-radius:50%;content:"";height:.375em;left:.25em;position:absolute;top:.6875em;width:.375em}.prose hr{border-color:#e5e7eb;border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose blockquote{border-left-color:#e5e7eb;border-left-width:.25rem;color:#111827;font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose blockquote p:first-of-type:before{content:open-quote}.prose blockquote p:last-of-type:after{content:close-quote}.prose h1{color:#111827;font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose h2{color:#111827;font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose h3{font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose h3,.prose h4{color:#111827;font-weight:600}.prose h4{line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose code{color:#111827;font-size:.875em;font-weight:600}.prose code:after,.prose code:before{content:"`"}.prose a code{color:#111827}.prose pre{background-color:#1f2937;border-radius:.375rem;color:#e5e7eb;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}.prose pre code{background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:400;line-height:inherit;padding:0}.prose pre code:after,.prose pre code:before{content:none}.prose table{font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose thead{border-bottom-color:#d1d5db;border-bottom-width:1px;color:#111827;font-weight:600}.prose thead th{padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose tbody tr{border-bottom-color:#e5e7eb;border-bottom-width:1px}.prose tbody tr:last-child{border-bottom-width:0}.prose tbody td{padding:.5714286em;vertical-align:top}.prose{font-size:1rem;line-height:1.75}.prose p{margin-bottom:1.25em;margin-top:1.25em}.prose figure,.prose img,.prose video{margin-bottom:2em;margin-top:2em}.prose figure>*{margin-bottom:0;margin-top:0}.prose h2 code{font-size:.875em}.prose h3 code{font-size:.9em}.prose ol,.prose ul{margin-bottom:1.25em;margin-top:1.25em}.prose li{margin-bottom:.5em;margin-top:.5em}.prose>ul>li p{margin-bottom:.75em;margin-top:.75em}.prose>ul>li>:first-child{margin-top:1.25em}.prose>ul>li>:last-child{margin-bottom:1.25em}.prose>ol>li>:first-child{margin-top:1.25em}.prose>ol>li>:last-child{margin-bottom:1.25em}.prose ol ol,.prose ol ul,.prose ul ol,.prose ul ul{margin-bottom:.75em;margin-top:.75em}.prose h2+*,.prose h3+*,.prose h4+*,.prose hr+*{margin-top:0}.prose thead th:first-child{padding-left:0}.prose thead th:last-child{padding-right:0}.prose tbody td:first-child{padding-left:0}.prose tbody td:last-child{padding-right:0}.prose>:first-child{margin-top:0}.prose>:last-child{margin-bottom:0}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm p{margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.prose-sm blockquote{margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.prose-sm h1{font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.prose-sm h2{font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.prose-sm h3{font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.prose-sm h4{line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.prose-sm figure,.prose-sm img,.prose-sm video{margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm figure>*{margin-bottom:0;margin-top:0}.prose-sm figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm code{font-size:.8571429em}.prose-sm h2 code{font-size:.9em}.prose-sm h3 code{font-size:.8888889em}.prose-sm pre{border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.prose-sm ol,.prose-sm ul{margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm li{margin-bottom:.2857143em;margin-top:.2857143em}.prose-sm ol>li{padding-left:1.5714286em}.prose-sm ol>li:before{left:0}.prose-sm ul>li{padding-left:1.5714286em}.prose-sm ul>li:before{height:.3571429em;left:.2142857em;top:.67857em;width:.3571429em}.prose-sm>ul>li p{margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm>ul>li>:first-child{margin-top:1.1428571em}.prose-sm>ul>li>:last-child{margin-bottom:1.1428571em}.prose-sm>ol>li>:first-child{margin-top:1.1428571em}.prose-sm>ol>li>:last-child{margin-bottom:1.1428571em}.prose-sm ol ol,.prose-sm ol ul,.prose-sm ul ol,.prose-sm ul ul{margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm hr{margin-bottom:2.8571429em;margin-top:2.8571429em}.prose-sm h2+*,.prose-sm h3+*,.prose-sm h4+*,.prose-sm hr+*{margin-top:0}.prose-sm table{font-size:.8571429em;line-height:1.5}.prose-sm thead th{padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.prose-sm thead th:first-child{padding-left:0}.prose-sm thead th:last-child{padding-right:0}.prose-sm tbody td{padding:.6666667em 1em}.prose-sm tbody td:first-child{padding-left:0}.prose-sm tbody td:last-child{padding-right:0}.prose-sm>:first-child{margin-top:0}.prose-sm>:last-child{margin-bottom:0}#nav>ul>li{padding-bottom:.25rem;padding-top:.25rem}.nav-toggle{align-items:center;cursor:pointer;display:flex;padding-right:.75rem}.nav-toggle:hover{--tw-bg-opacity:1;--tw-bg-opacity:0.5;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.nav-label{overflow:hidden;text-align:left;text-overflow:ellipsis;user-select:none;white-space:nowrap;width:100%}.code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.code pre{display:block}.code .line{align-items:center;display:flex;line-height:1.625}.code.numbered{padding-top:.75rem;position:relative}.code.numbered:before{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity));border-right-width:1px;bottom:0;content:"";left:calc(2.7em + 8px);position:absolute;top:0}.code .line-number{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity));flex:none;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.75rem;line-height:1rem;margin-right:16px;padding-bottom:3px;padding-right:8px;padding-top:3px;text-align:right;width:calc(2.7em + 8px)}.code .line-content{flex:none;padding-right:1rem}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{left:0;right:0}.inset-0,.inset-y-0{bottom:0;top:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.bottom-0{bottom:0}.top-1\/2{top:50%}.right-2{right:.5rem}.z-10{z-index:10}.mx-auto{margin-left:auto;margin-right:auto}.mt-4{margin-top:1rem}.mt-3{margin-top:.75rem}.mt-2{margin-top:.5rem}.ml-auto{margin-left:auto}.-mb-px{margin-bottom:-1px}.ml-4{margin-left:1rem}.mr-3{margin-right:.75rem}.mb-1{margin-bottom:.25rem}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.ml-\[3px\]{margin-left:3px}.mb-4{margin-bottom:1rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.hidden{display:none}.h-screen{height:100vh}.h-full{height:100%}.h-\[11px\]{height:11px}.h-10{height:2.5rem}.h-5{height:1.25rem}.h-3\.5{height:.875rem}.h-3{height:.75rem}.h-4{height:1rem}.h-6{height:1.5rem}.min-h-full{min-height:100%}.w-full{width:100%}.w-screen{width:100vw}.w-\[9px\]{width:9px}.w-5{width:1.25rem}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-\[200px\]{width:200px}.w-4{width:1rem}.w-11{width:2.75rem}.max-w-xs{max-width:20rem}.max-w-\[800px\]{max-width:800px}.flex-none{flex:none}.flex-auto{flex:1 1 auto}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.-translate-y-1\/2{--tw-translate-y:-50%;transform:var(--tw-transform)}.-translate-x-1\/2{--tw-translate-x:-50%;transform:var(--tw-transform)}.translate-x-5{--tw-translate-x:1.25rem;transform:var(--tw-transform)}.translate-x-0{--tw-translate-x:0px}.transform,.translate-x-0{transform:var(--tw-transform)}.cursor-\[row-resize\]{cursor:row-resize}.cursor-auto{cursor:auto}.cursor-pointer{cursor:pointer}.cursor-\[col-resize\]{cursor:col-resize}.select-none{user-select:none}.flex-col{flex-direction:column}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-center{justify-content:center}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(209,213,219,var(--tw-divide-opacity))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-bl-md{border-bottom-left-radius:.375rem}.border-0{border-width:0}.border-2{border-width:2px}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-r{border-right-width:1px}.border-l{border-left-width:1px}.border-gray-300{--tw-border-opacity:1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity:1;border-color:rgba(129,140,248,var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-gray-100{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.\!bg-indigo-100{--tw-bg-opacity:1!important;background-color:rgba(224,231,255,var(--tw-bg-opacity))!important}.bg-indigo-500{--tw-bg-opacity:1;background-color:rgba(99,102,241,var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgba(209,213,219,var(--tw-bg-opacity))}.p-4{padding:1rem}.p-1\.5{padding:.375rem}.p-1{padding:.25rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-\[5px\]{padding-bottom:5px;padding-top:5px}.py-3{padding-bottom:.75rem;padding-top:.75rem}.pr-3{padding-right:.75rem}.pt-3{padding-top:.75rem}.pb-6{padding-bottom:1.5rem}.text-center{text-align:center}.font-monospace{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace}.font-sans{font-family:Nunito Sans,-apple-system,\.SFNSText-Regular,San Francisco,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Helvetica,Arial,sans-serif}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-\[11px\]{font-size:11px}.font-bold{font-weight:700}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-none{line-height:1}.tracking-wide{letter-spacing:.025em}.text-gray-300{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.text-red-300{--tw-text-opacity:1;color:rgba(252,165,165,var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.\!text-gray-300{--tw-text-opacity:1!important;color:rgba(209,213,219,var(--tw-text-opacity))!important}.text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.\!text-green-600{--tw-text-opacity:1!important;color:rgba(5,150,105,var(--tw-text-opacity))!important}.text-indigo-500{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.underline{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-50{opacity:.5}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-0{--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(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)}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-filter)}.transition{transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.form-input{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgba(209,213,219,var(--tw-border-opacity));border-radius:.125rem;color:rgba(55,65,81,var(--tw-text-opacity));font-size:.875rem;line-height:1.25rem;width:100%}.form-input:focus{--tw-border-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(165,180,252,var(--tw-ring-opacity));border-color:rgba(165,180,252,var(--tw-border-opacity))}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{background-color:#333;border-radius:4px;color:#fff;font-size:14px;line-height:1.4;outline:0;position:relative;transition-property:transform,visibility,opacity;white-space:normal}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{border-top-color:initial;border-width:8px 8px 0;bottom:-7px;left:0;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:initial;border-width:0 8px 8px;left:0;top:-7px;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-left-color:initial;border-width:8px 0 8px 8px;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{border-right-color:initial;border-width:8px 8px 8px 0;left:-7px;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{color:#333;height:16px;width:16px}.tippy-arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.tippy-content{padding:5px 9px;position:relative;z-index:1}.highlight .hll{background-color:#f8f8f8;border:1px solid #ccc;border-radius:3px;padding:6px 10px}.highlight .c{color:#998;font-style:italic}.highlight .err{background-color:#e3d2d2;color:#a61717}.highlight .k,.highlight .o{font-weight:700}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-style:italic;font-weight:700}.highlight .gd{background-color:#fdd;color:#000}.highlight .gd .x{background-color:#faa;color:#000}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{background-color:#dfd;color:#000}.highlight .gi .x{background-color:#afa;color:#000}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .kt{color:#458}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .n{color:#333}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne,.highlight .nf{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc,.highlight .vg,.highlight .vi{color:teal}.highlight .il{color:#099}.highlight .gc{background-color:#eaf2f5;color:#999}.tippy-box[data-theme~=lookbook]{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(99,102,241,var(--tw-bg-opacity));color:rgba(255,255,255,var(--tw-text-opacity));font-size:.75rem;line-height:1rem;opacity:.9}.tippy-box[data-theme~=lookbook][data-placement^=top]>.tippy-arrow:before{border-top-color:#6366f1}.tippy-box[data-theme~=lookbook][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#6366f1}.tippy-box[data-theme~=lookbook][data-placement^=left]>.tippy-arrow:before{border-left-color:#6366f1}.tippy-box[data-theme~=lookbook][data-placement^=right]>.tippy-arrow:before{border-right-color:#6366f1}.hover\:border-gray-300:hover{--tw-border-opacity:1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.hover\:bg-indigo-100:hover{--tw-bg-opacity:1;background-color:rgba(224,231,255,var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.hover\:bg-opacity-20:hover{--tw-bg-opacity:0.2}.hover\:bg-opacity-50:hover{--tw-bg-opacity:0.5}.hover\:text-indigo-800:hover{--tw-text-opacity:1;color:rgba(55,48,163,var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.hover\:text-indigo-500:hover{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.hover\:text-green-600:hover{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-0: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(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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)}.focus\:ring-indigo-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(129,140,248,var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.group:hover .group-hover\:text-indigo-800{--tw-text-opacity:1;color:rgba(55,48,163,var(--tw-text-opacity))}@media (min-width:768px){.md\:-mx-px{margin-left:-1px;margin-right:-1px}.md\:ml-3{margin-left:.75rem}.md\:grid{display:grid}.md\:hidden{display:none}.md\:h-auto{height:auto}.md\:min-h-0{min-height:0}.md\:divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)));border-right-width:calc(1px*var(--tw-divide-x-reverse))}.md\:pl-3{padding-left:.75rem}.md\:pr-4{padding-right:1rem}}@media (min-width:1024px){.lg\:space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2rem*var(--tw-space-x-reverse))}}
2
+ /*# sourceMappingURL=app.css.map */
@@ -0,0 +1 @@
1
+ {"mappings":"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AAnB,YCAA,WDAmB,CAAnB,MCAA,aDAmB,CAAnB,KCAA,cDAmB,CAAnB,QCAA,cDAmB,CAAnB,KCAA,aDAmB,CAAnB,KCAA,WDAmB,CAAnB,KCAA,aDAmB,CAAnB,YCAA,eDAmB,CAAnB,QCAA,UDAmB,CAAnB,UCAA,WDAmB,CAAnB,WCAA,SDAmB,CAAnB,KCAA,aDAmB,CAAnB,QCAA,aDAmB,CAAnB,KCAA,YDAmB,CAAnB,aCAA,WDAmB,CAAnB,KCAA,UDAmB,CAAnB,MCAA,aDAmB,CAAnB,UCAA,eDAmB,CAAnB,iBCAA,eDAmB,CAAnB,WCAA,SDAmB,CAAnB,WCAA,aDAmB,CAAnB,eCAA,aDAmB,CAAnB,WCAA,WDAmB,CAAnB,mBCAA,qBAAA,CAAA,6BDAmB,CAAnB,mBCAA,qBAAA,CAAA,6BDAmB,CAAnB,eCAA,wBAAA,CAAA,6BDAmB,CAAnB,eCAA,oBDAmB,CAAnB,0BCAA,6BDAmB,CAAnB,uBCAA,iBDAmB,CAAnB,aCAA,WDAmB,CAAnB,gBCAA,cDAmB,CAAnB,uBCAA,iBDAmB,CAAnB,aCAA,gBDAmB,CAAnB,UCAA,qBDAmB,CAAnB,aCAA,sBDAmB,CAAnB,cCAA,kBDAmB,CAAnB,gBCAA,sBDAmB,CAAnB,yCCAA,sBAAA,CAAA,wDAAA,CAAA,mDDAmB,CAAnB,yCCAA,sBAAA,CAAA,wDAAA,CAAA,mDDAmB,CAAnB,yCCAA,sBAAA,CAAA,wDAAA,CAAA,mDDAmB,CAAnB,yCCAA,sBAAA,CAAA,oDAAA,CAAA,uDDAmB,CAAnB,wCCAA,uBAAA,CAAA,wDAAA,CAAA,2DDAmB,CAAnB,6CCAA,mBDAmB,CAAnB,+CCAA,qBAAA,CAAA,uDDAmB,CAAnB,eCAA,aDAmB,CAAnB,iBCAA,eDAmB,CAAnB,iBCAA,eDAmB,CAAnB,UCAA,eAAA,CAAA,sBDAmB,CAAnB,6BCAA,kBDAmB,CAAnB,cCAA,oBDAmB,CAAnB,eCAA,iCDAmB,CAAnB,UCAA,cDAmB,CAAnB,UCAA,gBDAmB,CAAnB,UCAA,oBDAmB,CAAnB,UCAA,uBDAmB,CAAnB,YCAA,uBDAmB,CAAnB,UCAA,sBDAmB,CAAnB,UCAA,qBDAmB,CAAn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","sources":["node_modules/tailwindcss/base.css","<no source>","%3Cinput%20css%20RsiHeO%3E"],"sourcesContent":["@tailwind base;\n",null,"/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize *//*\nDocument\n========\n*//**\nUse a better box model (opinionated).\n*/*,\n::before,\n::after {\n\tbox-sizing: border-box;\n}/**\nUse a more readable tab size (opinionated).\n*/html {\n\t-moz-tab-size: 4;\n\ttab-size: 4;\n}/**\n1. Correct the line height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n*/html {\n\tline-height: 1.15; /* 1 */\n\t-webkit-text-size-adjust: 100%; /* 2 */\n}/*\nSections\n========\n*//**\nRemove the margin in all browsers.\n*/body {\n\tmargin: 0;\n}/**\nImprove consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n*/body {\n\tfont-family:\n\t\tsystem-ui,\n\t\t-apple-system, /* Firefox supports this but not yet `system-ui` */\n\t\t'Segoe UI',\n\t\tRoboto,\n\t\tHelvetica,\n\t\tArial,\n\t\tsans-serif,\n\t\t'Apple Color Emoji',\n\t\t'Segoe UI Emoji';\n}/*\nGrouping content\n================\n*//**\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n*/hr {\n\theight: 0; /* 1 */\n\tcolor: inherit; /* 2 */\n}/*\nText-level semantics\n====================\n*//**\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/abbr[title] {\n\ttext-decoration: underline dotted;\n}/**\nAdd the correct font weight in Edge and Safari.\n*/b,\nstrong {\n\tfont-weight: bolder;\n}/**\n1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n2. Correct the odd 'em' font sizing in all browsers.\n*/code,\nkbd,\nsamp,\npre {\n\tfont-family:\n\t\tui-monospace,\n\t\tSFMono-Regular,\n\t\tConsolas,\n\t\t'Liberation Mono',\n\t\tMenlo,\n\t\tmonospace; /* 1 */\n\tfont-size: 1em; /* 2 */\n}/**\nAdd the correct font size in all browsers.\n*/small {\n\tfont-size: 80%;\n}/**\nPrevent 'sub' and 'sup' elements from affecting the line height in all browsers.\n*/sub,\nsup {\n\tfont-size: 75%;\n\tline-height: 0;\n\tposition: relative;\n\tvertical-align: baseline;\n}sub {\n\tbottom: -0.25em;\n}sup {\n\ttop: -0.5em;\n}/*\nTabular data\n============\n*//**\n1. 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)\n2. 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)\n*/table {\n\ttext-indent: 0; /* 1 */\n\tborder-color: inherit; /* 2 */\n}/*\nForms\n=====\n*//**\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n*/button,\ninput,\noptgroup,\nselect,\ntextarea {\n\tfont-family: inherit; /* 1 */\n\tfont-size: 100%; /* 1 */\n\tline-height: 1.15; /* 1 */\n\tmargin: 0; /* 2 */\n}/**\nRemove the inheritance of text transform in Edge and Firefox.\n1. Remove the inheritance of text transform in Firefox.\n*/button,\nselect { /* 1 */\n\ttext-transform: none;\n}/**\nCorrect the inability to style clickable types in iOS and Safari.\n*/button,\n[type='button'],\n[type='reset'],\n[type='submit'] {\n\t-webkit-appearance: button;\n}/**\nRemove the inner border and padding in Firefox.\n*/::-moz-focus-inner {\n\tborder-style: none;\n\tpadding: 0;\n}/**\nRestore the focus styles unset by the previous rule.\n*/:-moz-focusring {\n\toutline: 1px dotted ButtonText;\n}/**\nRemove the additional ':invalid' styles in Firefox.\nSee: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737\n*/:-moz-ui-invalid {\n\tbox-shadow: none;\n}/**\nRemove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.\n*/legend {\n\tpadding: 0;\n}/**\nAdd the correct vertical alignment in Chrome and Firefox.\n*/progress {\n\tvertical-align: baseline;\n}/**\nCorrect the cursor style of increment and decrement buttons in Safari.\n*/::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n\theight: auto;\n}/**\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/[type='search'] {\n\t-webkit-appearance: textfield; /* 1 */\n\toutline-offset: -2px; /* 2 */\n}/**\nRemove the inner padding in Chrome and Safari on macOS.\n*/::-webkit-search-decoration {\n\t-webkit-appearance: none;\n}/**\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Change font properties to 'inherit' in Safari.\n*/::-webkit-file-upload-button {\n\t-webkit-appearance: button; /* 1 */\n\tfont: inherit; /* 2 */\n}/*\nInteractive\n===========\n*//*\nAdd the correct display in Chrome and Safari.\n*/summary {\n\tdisplay: list-item;\n}/**\n * Manually forked from SUIT CSS Base: https://github.com/suitcss/base\n * A thin layer on top of normalize.css that provides a starting point more\n * suitable for web applications.\n *//**\n * Removes the default spacing and border for appropriate elements.\n */blockquote,\ndl,\ndd,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nhr,\nfigure,\np,\npre {\n margin: 0;\n}button {\n background-color: transparent;\n background-image: none;\n}fieldset {\n margin: 0;\n padding: 0;\n}ol,\nul {\n list-style: none;\n margin: 0;\n padding: 0;\n}/**\n * Tailwind custom reset styles\n *//**\n * 1. Use the user's configured `sans` font-family (with Tailwind's default\n * sans-serif font stack as a fallback) as a sane default.\n * 2. Use Tailwind's default \"normal\" line-height so the user isn't forced\n * to override it to ensure consistency even when using the default theme.\n */html {\n font-family: \"Nunito Sans\", -apple-system, \".SFNSText-Regular\", \"San Francisco\", BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Helvetica, Arial, sans-serif; /* 1 */\n line-height: 1.5; /* 2 */\n}/**\n * Inherit font-family and line-height from `html` so users can set them as\n * a class directly on the `html` element.\n */body {\n font-family: inherit;\n line-height: inherit;\n}/**\n * 1. Prevent padding and border from affecting element width.\n *\n * We used to set this in the html element and inherit from\n * the parent element for everything else. This caused issues\n * in shadow-dom-enhanced elements like <details> where the content\n * is wrapped by a div with box-sizing set to `content-box`.\n *\n * https://github.com/mozdevs/cssremedy/issues/4\n *\n *\n * 2. Allow adding a border to an element by just adding a border-width.\n *\n * By default, the way the browser specifies that an element should have no\n * border is by setting it's border-style to `none` in the user-agent\n * stylesheet.\n *\n * In order to easily add borders to elements by just setting the `border-width`\n * property, we change the default border-style for all elements to `solid`, and\n * use border-width to hide them instead. This way our `border` utilities only\n * need to set the `border-width` property instead of the entire `border`\n * shorthand, making our border utilities much more straightforward to compose.\n *\n * https://github.com/tailwindcss/tailwindcss/pull/116\n */*,\n::before,\n::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n border-style: solid; /* 2 */\n border-color: currentColor; /* 2 */\n}/*\n * Ensure horizontal rules are visible by default\n */hr {\n border-top-width: 1px;\n}/**\n * Undo the `border-style: none` reset that Normalize applies to images so that\n * our `border-{width}` utilities have the expected effect.\n *\n * The Normalize reset is unnecessary for us since we default the border-width\n * to 0 on all elements.\n *\n * https://github.com/tailwindcss/tailwindcss/issues/362\n */img {\n border-style: solid;\n}textarea {\n resize: vertical;\n}input::placeholder,\ntextarea::placeholder {\n opacity: 1;\n color: #9ca3af;\n}button,\n[role=\"button\"] {\n cursor: pointer;\n}/**\n * Override legacy focus reset from Normalize with modern Firefox focus styles.\n *\n * This is actually an improvement over the new defaults in Firefox in our testing,\n * as it triggers the better focus styles even for links, which still use a dotted\n * outline in Firefox by default.\n */:-moz-focusring {\n\toutline: auto;\n}table {\n border-collapse: collapse;\n}h1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}/**\n * Reset links to optimize for opt-in styling instead of\n * opt-out.\n */a {\n color: inherit;\n text-decoration: inherit;\n}/**\n * Reset form element properties that are easy to forget to\n * style explicitly so you don't inadvertently introduce\n * styles that deviate from your design system. These styles\n * supplement a partial reset that is already applied by\n * normalize.css.\n */button,\ninput,\noptgroup,\nselect,\ntextarea {\n padding: 0;\n line-height: inherit;\n color: inherit;\n}/**\n * Use the configured 'mono' font family for elements that\n * are expected to be rendered with a monospace font, falling\n * back to the system monospace stack if there is no configured\n * 'mono' font family.\n */pre,\ncode,\nkbd,\nsamp {\n font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}/**\n * 1. Make replaced elements `display: block` by default as that's\n * the behavior you want almost all of the time. Inspired by\n * CSS Remedy, with `svg` added as well.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n * \n * 2. Add `vertical-align: middle` to align replaced elements more\n * sensibly by default when overriding `display` by adding a\n * utility like `inline`.\n *\n * This can trigger a poorly considered linting error in some\n * tools but is included by design.\n * \n * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210\n */img,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n}/**\n * Constrain images and videos to the parent width and preserve\n * their intrinsic aspect ratio.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */img,\nvideo {\n max-width: 100%;\n height: auto;\n}/**\n * Ensure the default browser behavior of the `hidden` attribute.\n */[hidden] {\n display: none;\n}*, ::before, ::after {\n\t--tw-translate-x: 0;\n\t--tw-translate-y: 0;\n\t--tw-rotate: 0;\n\t--tw-skew-x: 0;\n\t--tw-skew-y: 0;\n\t--tw-scale-x: 1;\n\t--tw-scale-y: 1;\n\t--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));\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(229, 231, 235, var(--tw-border-opacity));\n\t--tw-ring-offset-shadow: 0 0 #0000;\n\t--tw-ring-shadow: 0 0 #0000;\n\t--tw-shadow: 0 0 #0000;\n\t--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-ring-offset-width: 0px;\n\t--tw-ring-offset-color: #fff;\n\t--tw-ring-color: rgba(59, 130, 246, 0.5);\n\t--tw-ring-offset-shadow: 0 0 #0000;\n\t--tw-ring-shadow: 0 0 #0000;\n\t--tw-shadow: 0 0 #0000;\n\t--tw-blur: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-brightness: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-contrast: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-invert: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-saturate: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-sepia: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);\n\t--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);\n}[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {\n\tappearance: none;\n\tbackground-color: #fff;\n\tborder-color: #6b7280;\n\tborder-width: 1px;\n\tborder-radius: 0px;\n\tpadding-top: 0.5rem;\n\tpadding-right: 0.75rem;\n\tpadding-bottom: 0.5rem;\n\tpadding-left: 0.75rem;\n\tfont-size: 1rem;\n\tline-height: 1.5rem;\n\t--tw-shadow: 0 0 #0000;\n}[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {\n\toutline: 2px solid transparent;\n\toutline-offset: 2px;\n\t--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-ring-offset-width: 0px;\n\t--tw-ring-offset-color: #fff;\n\t--tw-ring-color: #2563eb;\n\t--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n\t--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n\tbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n\tborder-color: #2563eb;\n}input::placeholder,textarea::placeholder {\n\tcolor: #6b7280;\n\topacity: 1;\n}::-webkit-datetime-edit-fields-wrapper {\n\tpadding: 0;\n}::-webkit-date-and-time-value {\n\tmin-height: 1.5em;\n}select {\n\tbackground-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e\");\n\tbackground-position: right 0.5rem center;\n\tbackground-repeat: no-repeat;\n\tbackground-size: 1.5em 1.5em;\n\tpadding-right: 2.5rem;\n\tcolor-adjust: exact;\n}[multiple] {\n\tbackground-image: initial;\n\tbackground-position: initial;\n\tbackground-repeat: unset;\n\tbackground-size: initial;\n\tpadding-right: 0.75rem;\n\tcolor-adjust: unset;\n}[type='checkbox'],[type='radio'] {\n\tappearance: none;\n\tpadding: 0;\n\tcolor-adjust: exact;\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tbackground-origin: border-box;\n\tuser-select: none;\n\tflex-shrink: 0;\n\theight: 1rem;\n\twidth: 1rem;\n\tcolor: #2563eb;\n\tbackground-color: #fff;\n\tborder-color: #6b7280;\n\tborder-width: 1px;\n\t--tw-shadow: 0 0 #0000;\n}[type='checkbox'] {\n\tborder-radius: 0px;\n}[type='radio'] {\n\tborder-radius: 100%;\n}[type='checkbox']:focus,[type='radio']:focus {\n\toutline: 2px solid transparent;\n\toutline-offset: 2px;\n\t--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n\t--tw-ring-offset-width: 2px;\n\t--tw-ring-offset-color: #fff;\n\t--tw-ring-color: #2563eb;\n\t--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n\t--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n\tbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n}[type='checkbox']:checked,[type='radio']:checked {\n\tborder-color: transparent;\n\tbackground-color: currentColor;\n\tbackground-size: 100% 100%;\n\tbackground-position: center;\n\tbackground-repeat: no-repeat;\n}[type='checkbox']:checked {\n\tbackground-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e\");\n}[type='radio']:checked {\n\tbackground-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e\");\n}[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {\n\tborder-color: transparent;\n\tbackground-color: currentColor;\n}[type='checkbox']:indeterminate {\n\tbackground-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e\");\n\tborder-color: transparent;\n\tbackground-color: currentColor;\n\tbackground-size: 100% 100%;\n\tbackground-position: center;\n\tbackground-repeat: no-repeat;\n}[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {\n\tborder-color: transparent;\n\tbackground-color: currentColor;\n}[type='file'] {\n\tbackground: unset;\n\tborder-color: inherit;\n\tborder-width: 0;\n\tborder-radius: 0;\n\tpadding: 0;\n\tfont-size: unset;\n\tline-height: inherit;\n}[type='file']:focus {\n\toutline: 1px auto -webkit-focus-ring-color;\n}html {\n scroll-behavior: smooth;\n }@media screen and (prefers-reduced-motion: reduce) {\n html {\n scroll-behavior: auto;\n }\n }[x-cloak] {\n display: none !important;\n }pre[class*=\"language-\"] {\n padding: 0 !important;\n margin: 0 !important;\n }.feather {\n width: 24px;\n height: 24px;\n stroke: currentColor;\n stroke-width: 2;\n stroke-linecap: round;\n stroke-linejoin: round;\n fill: none;\n }::-webkit-scrollbar {\n width: 8px;\n height: 8px;\n }::-webkit-scrollbar-track {\n background: transparent;\n }::-webkit-scrollbar-thumb {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(209, 213, 219, var(--tw-bg-opacity));\n\ttransition-property: background-color, border-color, color, fill, stroke;\n\ttransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n\ttransition-duration: 150ms;\n border-radius: 6px;\n border: 2px solid transparent;\n background-clip: content-box;\n}::-webkit-scrollbar-thumb:hover {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(156, 163, 175, var(--tw-bg-opacity));\n}.prose {\n\tcolor: #374151;\n\tmax-width: 65ch;\n}.prose [class~=\"lead\"] {\n\tcolor: #4b5563;\n\tfont-size: 1.25em;\n\tline-height: 1.6;\n\tmargin-top: 1.2em;\n\tmargin-bottom: 1.2em;\n}.prose a {\n\tcolor: #111827;\n\ttext-decoration: underline;\n\tfont-weight: 500;\n}.prose strong {\n\tcolor: #111827;\n\tfont-weight: 600;\n}.prose ol[type=\"A\"] {\n\t--list-counter-style: upper-alpha;\n}.prose ol[type=\"a\"] {\n\t--list-counter-style: lower-alpha;\n}.prose ol[type=\"A\" s] {\n\t--list-counter-style: upper-alpha;\n}.prose ol[type=\"a\" s] {\n\t--list-counter-style: lower-alpha;\n}.prose ol[type=\"I\"] {\n\t--list-counter-style: upper-roman;\n}.prose ol[type=\"i\"] {\n\t--list-counter-style: lower-roman;\n}.prose ol[type=\"I\" s] {\n\t--list-counter-style: upper-roman;\n}.prose ol[type=\"i\" s] {\n\t--list-counter-style: lower-roman;\n}.prose ol[type=\"1\"] {\n\t--list-counter-style: decimal;\n}.prose ol > li {\n\tposition: relative;\n\tpadding-left: 1.75em;\n}.prose ol > li::before {\n\tcontent: counter(list-item, var(--list-counter-style, decimal)) \".\";\n\tposition: absolute;\n\tfont-weight: 400;\n\tcolor: #6b7280;\n\tleft: 0;\n}.prose ul > li {\n\tposition: relative;\n\tpadding-left: 1.75em;\n}.prose ul > li::before {\n\tcontent: \"\";\n\tposition: absolute;\n\tbackground-color: #d1d5db;\n\tborder-radius: 50%;\n\twidth: 0.375em;\n\theight: 0.375em;\n\ttop: calc(0.875em - 0.1875em);\n\tleft: 0.25em;\n}.prose hr {\n\tborder-color: #e5e7eb;\n\tborder-top-width: 1px;\n\tmargin-top: 3em;\n\tmargin-bottom: 3em;\n}.prose blockquote {\n\tfont-weight: 500;\n\tfont-style: italic;\n\tcolor: #111827;\n\tborder-left-width: 0.25rem;\n\tborder-left-color: #e5e7eb;\n\tquotes: \"\\201C\"\"\\201D\"\"\\2018\"\"\\2019\";\n\tmargin-top: 1.6em;\n\tmargin-bottom: 1.6em;\n\tpadding-left: 1em;\n}.prose blockquote p:first-of-type::before {\n\tcontent: open-quote;\n}.prose blockquote p:last-of-type::after {\n\tcontent: close-quote;\n}.prose h1 {\n\tcolor: #111827;\n\tfont-weight: 800;\n\tfont-size: 2.25em;\n\tmargin-top: 0;\n\tmargin-bottom: 0.8888889em;\n\tline-height: 1.1111111;\n}.prose h2 {\n\tcolor: #111827;\n\tfont-weight: 700;\n\tfont-size: 1.5em;\n\tmargin-top: 2em;\n\tmargin-bottom: 1em;\n\tline-height: 1.3333333;\n}.prose h3 {\n\tcolor: #111827;\n\tfont-weight: 600;\n\tfont-size: 1.25em;\n\tmargin-top: 1.6em;\n\tmargin-bottom: 0.6em;\n\tline-height: 1.6;\n}.prose h4 {\n\tcolor: #111827;\n\tfont-weight: 600;\n\tmargin-top: 1.5em;\n\tmargin-bottom: 0.5em;\n\tline-height: 1.5;\n}.prose figure figcaption {\n\tcolor: #6b7280;\n\tfont-size: 0.875em;\n\tline-height: 1.4285714;\n\tmargin-top: 0.8571429em;\n}.prose code {\n\tcolor: #111827;\n\tfont-weight: 600;\n\tfont-size: 0.875em;\n}.prose code::before {\n\tcontent: \"`\";\n}.prose code::after {\n\tcontent: \"`\";\n}.prose a code {\n\tcolor: #111827;\n}.prose pre {\n\tcolor: #e5e7eb;\n\tbackground-color: #1f2937;\n\toverflow-x: auto;\n\tfont-size: 0.875em;\n\tline-height: 1.7142857;\n\tmargin-top: 1.7142857em;\n\tmargin-bottom: 1.7142857em;\n\tborder-radius: 0.375rem;\n\tpadding-top: 0.8571429em;\n\tpadding-right: 1.1428571em;\n\tpadding-bottom: 0.8571429em;\n\tpadding-left: 1.1428571em;\n}.prose pre code {\n\tbackground-color: transparent;\n\tborder-width: 0;\n\tborder-radius: 0;\n\tpadding: 0;\n\tfont-weight: 400;\n\tcolor: inherit;\n\tfont-size: inherit;\n\tfont-family: inherit;\n\tline-height: inherit;\n}.prose pre code::before {\n\tcontent: none;\n}.prose pre code::after {\n\tcontent: none;\n}.prose table {\n\twidth: 100%;\n\ttable-layout: auto;\n\ttext-align: left;\n\tmargin-top: 2em;\n\tmargin-bottom: 2em;\n\tfont-size: 0.875em;\n\tline-height: 1.7142857;\n}.prose thead {\n\tcolor: #111827;\n\tfont-weight: 600;\n\tborder-bottom-width: 1px;\n\tborder-bottom-color: #d1d5db;\n}.prose thead th {\n\tvertical-align: bottom;\n\tpadding-right: 0.5714286em;\n\tpadding-bottom: 0.5714286em;\n\tpadding-left: 0.5714286em;\n}.prose tbody tr {\n\tborder-bottom-width: 1px;\n\tborder-bottom-color: #e5e7eb;\n}.prose tbody tr:last-child {\n\tborder-bottom-width: 0;\n}.prose tbody td {\n\tvertical-align: top;\n\tpadding-top: 0.5714286em;\n\tpadding-right: 0.5714286em;\n\tpadding-bottom: 0.5714286em;\n\tpadding-left: 0.5714286em;\n}.prose {\n\tfont-size: 1rem;\n\tline-height: 1.75;\n}.prose p {\n\tmargin-top: 1.25em;\n\tmargin-bottom: 1.25em;\n}.prose img {\n\tmargin-top: 2em;\n\tmargin-bottom: 2em;\n}.prose video {\n\tmargin-top: 2em;\n\tmargin-bottom: 2em;\n}.prose figure {\n\tmargin-top: 2em;\n\tmargin-bottom: 2em;\n}.prose figure > * {\n\tmargin-top: 0;\n\tmargin-bottom: 0;\n}.prose h2 code {\n\tfont-size: 0.875em;\n}.prose h3 code {\n\tfont-size: 0.9em;\n}.prose ol {\n\tmargin-top: 1.25em;\n\tmargin-bottom: 1.25em;\n}.prose ul {\n\tmargin-top: 1.25em;\n\tmargin-bottom: 1.25em;\n}.prose li {\n\tmargin-top: 0.5em;\n\tmargin-bottom: 0.5em;\n}.prose > ul > li p {\n\tmargin-top: 0.75em;\n\tmargin-bottom: 0.75em;\n}.prose > ul > li > *:first-child {\n\tmargin-top: 1.25em;\n}.prose > ul > li > *:last-child {\n\tmargin-bottom: 1.25em;\n}.prose > ol > li > *:first-child {\n\tmargin-top: 1.25em;\n}.prose > ol > li > *:last-child {\n\tmargin-bottom: 1.25em;\n}.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {\n\tmargin-top: 0.75em;\n\tmargin-bottom: 0.75em;\n}.prose hr + * {\n\tmargin-top: 0;\n}.prose h2 + * {\n\tmargin-top: 0;\n}.prose h3 + * {\n\tmargin-top: 0;\n}.prose h4 + * {\n\tmargin-top: 0;\n}.prose thead th:first-child {\n\tpadding-left: 0;\n}.prose thead th:last-child {\n\tpadding-right: 0;\n}.prose tbody td:first-child {\n\tpadding-left: 0;\n}.prose tbody td:last-child {\n\tpadding-right: 0;\n}.prose > :first-child {\n\tmargin-top: 0;\n}.prose > :last-child {\n\tmargin-bottom: 0;\n}.prose-sm {\n\tfont-size: 0.875rem;\n\tline-height: 1.7142857;\n}.prose-sm p {\n\tmargin-top: 1.1428571em;\n\tmargin-bottom: 1.1428571em;\n}.prose-sm [class~=\"lead\"] {\n\tfont-size: 1.2857143em;\n\tline-height: 1.5555556;\n\tmargin-top: 0.8888889em;\n\tmargin-bottom: 0.8888889em;\n}.prose-sm blockquote {\n\tmargin-top: 1.3333333em;\n\tmargin-bottom: 1.3333333em;\n\tpadding-left: 1.1111111em;\n}.prose-sm h1 {\n\tfont-size: 2.1428571em;\n\tmargin-top: 0;\n\tmargin-bottom: 0.8em;\n\tline-height: 1.2;\n}.prose-sm h2 {\n\tfont-size: 1.4285714em;\n\tmargin-top: 1.6em;\n\tmargin-bottom: 0.8em;\n\tline-height: 1.4;\n}.prose-sm h3 {\n\tfont-size: 1.2857143em;\n\tmargin-top: 1.5555556em;\n\tmargin-bottom: 0.4444444em;\n\tline-height: 1.5555556;\n}.prose-sm h4 {\n\tmargin-top: 1.4285714em;\n\tmargin-bottom: 0.5714286em;\n\tline-height: 1.4285714;\n}.prose-sm img {\n\tmargin-top: 1.7142857em;\n\tmargin-bottom: 1.7142857em;\n}.prose-sm video {\n\tmargin-top: 1.7142857em;\n\tmargin-bottom: 1.7142857em;\n}.prose-sm figure {\n\tmargin-top: 1.7142857em;\n\tmargin-bottom: 1.7142857em;\n}.prose-sm figure > * {\n\tmargin-top: 0;\n\tmargin-bottom: 0;\n}.prose-sm figure figcaption {\n\tfont-size: 0.8571429em;\n\tline-height: 1.3333333;\n\tmargin-top: 0.6666667em;\n}.prose-sm code {\n\tfont-size: 0.8571429em;\n}.prose-sm h2 code {\n\tfont-size: 0.9em;\n}.prose-sm h3 code {\n\tfont-size: 0.8888889em;\n}.prose-sm pre {\n\tfont-size: 0.8571429em;\n\tline-height: 1.6666667;\n\tmargin-top: 1.6666667em;\n\tmargin-bottom: 1.6666667em;\n\tborder-radius: 0.25rem;\n\tpadding-top: 0.6666667em;\n\tpadding-right: 1em;\n\tpadding-bottom: 0.6666667em;\n\tpadding-left: 1em;\n}.prose-sm ol {\n\tmargin-top: 1.1428571em;\n\tmargin-bottom: 1.1428571em;\n}.prose-sm ul {\n\tmargin-top: 1.1428571em;\n\tmargin-bottom: 1.1428571em;\n}.prose-sm li {\n\tmargin-top: 0.2857143em;\n\tmargin-bottom: 0.2857143em;\n}.prose-sm ol > li {\n\tpadding-left: 1.5714286em;\n}.prose-sm ol > li::before {\n\tleft: 0;\n}.prose-sm ul > li {\n\tpadding-left: 1.5714286em;\n}.prose-sm ul > li::before {\n\theight: 0.3571429em;\n\twidth: 0.3571429em;\n\ttop: calc(0.8571429em - 0.1785714em);\n\tleft: 0.2142857em;\n}.prose-sm > ul > li p {\n\tmargin-top: 0.5714286em;\n\tmargin-bottom: 0.5714286em;\n}.prose-sm > ul > li > *:first-child {\n\tmargin-top: 1.1428571em;\n}.prose-sm > ul > li > *:last-child {\n\tmargin-bottom: 1.1428571em;\n}.prose-sm > ol > li > *:first-child {\n\tmargin-top: 1.1428571em;\n}.prose-sm > ol > li > *:last-child {\n\tmargin-bottom: 1.1428571em;\n}.prose-sm ul ul, .prose-sm ul ol, .prose-sm ol ul, .prose-sm ol ol {\n\tmargin-top: 0.5714286em;\n\tmargin-bottom: 0.5714286em;\n}.prose-sm hr {\n\tmargin-top: 2.8571429em;\n\tmargin-bottom: 2.8571429em;\n}.prose-sm hr + * {\n\tmargin-top: 0;\n}.prose-sm h2 + * {\n\tmargin-top: 0;\n}.prose-sm h3 + * {\n\tmargin-top: 0;\n}.prose-sm h4 + * {\n\tmargin-top: 0;\n}.prose-sm table {\n\tfont-size: 0.8571429em;\n\tline-height: 1.5;\n}.prose-sm thead th {\n\tpadding-right: 1em;\n\tpadding-bottom: 0.6666667em;\n\tpadding-left: 1em;\n}.prose-sm thead th:first-child {\n\tpadding-left: 0;\n}.prose-sm thead th:last-child {\n\tpadding-right: 0;\n}.prose-sm tbody td {\n\tpadding-top: 0.6666667em;\n\tpadding-right: 1em;\n\tpadding-bottom: 0.6666667em;\n\tpadding-left: 1em;\n}.prose-sm tbody td:first-child {\n\tpadding-left: 0;\n}.prose-sm tbody td:last-child {\n\tpadding-right: 0;\n}.prose-sm > :first-child {\n\tmargin-top: 0;\n}.prose-sm > :last-child {\n\tmargin-bottom: 0;\n}#nav > ul > li {\n\tpadding-top: 0.25rem;\n\tpadding-bottom: 0.25rem;\n}.nav-toggle {\n\tdisplay: flex;\n\tcursor: pointer;\n\talign-items: center;\n\tpadding-right: 0.75rem;\n}.nav-toggle:hover {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(229, 231, 235, var(--tw-bg-opacity));\n\t--tw-bg-opacity: 0.5;\n}.nav-label {\n\twidth: 100%;\n\tuser-select: none;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n\twhite-space: nowrap;\n\ttext-align: left;\n}.code {\n\tfont-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}.code pre {\n\tdisplay: block;\n}.code .line {\n\tdisplay: flex;\n\talign-items: center;\n\tline-height: 1.625;\n}.code.numbered {\n\tposition: relative;\n\tpadding-top: 0.75rem;\n}.code.numbered:before {\n content: \"\";\n left: calc(2.7em + 8px);\n position: absolute;\n top: 0px;\n bottom: 0px;\n border-right-width: 1px;\n --tw-border-opacity: 1;\n border-color: rgba(229, 231, 235, var(--tw-border-opacity));\n }.code .line-number {\n width: calc(2.7em + 8px);\n padding-top: 3px;\n padding-bottom: 3px;\n padding-right: 8px;\n margin-right: 16px;\n flex: none;\n text-align: right;\n font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 0.75rem;\n line-height: 1rem;\n --tw-text-opacity: 1;\n color: rgba(156, 163, 175, var(--tw-text-opacity));\n }.code .line-content {\n\tflex: none;\n\tpadding-right: 1rem;\n}/* .code .line:before {\n content: counter(line);\n width: calc(3em + 8px);\n padding-top: 2px;\n padding-bottom: 2px;\n padding-right: 8px;\n @apply font-mono inline-block text-right mr-4 text-gray-400 border-r border-gray-200;\n } */.pointer-events-none {\n\tpointer-events: none;\n}.absolute {\n\tposition: absolute;\n}.relative {\n\tposition: relative;\n}.inset-0 {\n\ttop: 0px;\n\tright: 0px;\n\tbottom: 0px;\n\tleft: 0px;\n}.inset-y-0 {\n\ttop: 0px;\n\tbottom: 0px;\n}.left-0 {\n\tleft: 0px;\n}.right-0 {\n\tright: 0px;\n}.top-0 {\n\ttop: 0px;\n}.bottom-0 {\n\tbottom: 0px;\n}.top-1\\/2 {\n\ttop: 50%;\n}.right-2 {\n\tright: 0.5rem;\n}.z-10 {\n\tz-index: 10;\n}.mx-auto {\n\tmargin-left: auto;\n\tmargin-right: auto;\n}.mt-4 {\n\tmargin-top: 1rem;\n}.mt-3 {\n\tmargin-top: 0.75rem;\n}.mt-2 {\n\tmargin-top: 0.5rem;\n}.ml-auto {\n\tmargin-left: auto;\n}.-mb-px {\n\tmargin-bottom: -1px;\n}.ml-4 {\n\tmargin-left: 1rem;\n}.mr-3 {\n\tmargin-right: 0.75rem;\n}.mb-1 {\n\tmargin-bottom: 0.25rem;\n}.mr-1 {\n\tmargin-right: 0.25rem;\n}.mr-1\\.5 {\n\tmargin-right: 0.375rem;\n}.ml-\\[3px\\] {\n\tmargin-left: 3px;\n}.mb-4 {\n\tmargin-bottom: 1rem;\n}.block {\n\tdisplay: block;\n}.inline-block {\n\tdisplay: inline-block;\n}.flex {\n\tdisplay: flex;\n}.inline-flex {\n\tdisplay: inline-flex;\n}.hidden {\n\tdisplay: none;\n}.h-screen {\n\theight: 100vh;\n}.h-full {\n\theight: 100%;\n}.h-\\[11px\\] {\n\theight: 11px;\n}.h-10 {\n\theight: 2.5rem;\n}.h-5 {\n\theight: 1.25rem;\n}.h-3\\.5 {\n\theight: 0.875rem;\n}.h-3 {\n\theight: 0.75rem;\n}.h-4 {\n\theight: 1rem;\n}.h-6 {\n\theight: 1.5rem;\n}.min-h-full {\n\tmin-height: 100%;\n}.w-full {\n\twidth: 100%;\n}.w-screen {\n\twidth: 100vw;\n}.w-\\[9px\\] {\n\twidth: 9px;\n}.w-5 {\n\twidth: 1.25rem;\n}.w-3\\.5 {\n\twidth: 0.875rem;\n}.w-3 {\n\twidth: 0.75rem;\n}.w-\\[200px\\] {\n\twidth: 200px;\n}.w-4 {\n\twidth: 1rem;\n}.w-11 {\n\twidth: 2.75rem;\n}.max-w-xs {\n\tmax-width: 20rem;\n}.max-w-\\[800px\\] {\n\tmax-width: 800px;\n}.flex-none {\n\tflex: none;\n}.flex-auto {\n\tflex: 1 1 auto;\n}.flex-shrink-0 {\n\tflex-shrink: 0;\n}.flex-grow {\n\tflex-grow: 1;\n}.-translate-y-1\\/2 {\n\t--tw-translate-y: -50%;\n\ttransform: var(--tw-transform);\n}.-translate-x-1\\/2 {\n\t--tw-translate-x: -50%;\n\ttransform: var(--tw-transform);\n}.translate-x-5 {\n\t--tw-translate-x: 1.25rem;\n\ttransform: var(--tw-transform);\n}.translate-x-0 {\n\t--tw-translate-x: 0px;\n\ttransform: var(--tw-transform);\n}.transform {\n\ttransform: var(--tw-transform);\n}.cursor-\\[row-resize\\] {\n\tcursor: row-resize;\n}.cursor-auto {\n\tcursor: auto;\n}.cursor-pointer {\n\tcursor: pointer;\n}.cursor-\\[col-resize\\] {\n\tcursor: col-resize;\n}.select-none {\n\tuser-select: none;\n}.flex-col {\n\tflex-direction: column;\n}.items-start {\n\talign-items: flex-start;\n}.items-center {\n\talign-items: center;\n}.justify-center {\n\tjustify-content: center;\n}.space-x-1 > :not([hidden]) ~ :not([hidden]) {\n\t--tw-space-x-reverse: 0;\n\tmargin-right: calc(0.25rem * var(--tw-space-x-reverse));\n\tmargin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));\n}.space-x-3 > :not([hidden]) ~ :not([hidden]) {\n\t--tw-space-x-reverse: 0;\n\tmargin-right: calc(0.75rem * var(--tw-space-x-reverse));\n\tmargin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));\n}.space-x-6 > :not([hidden]) ~ :not([hidden]) {\n\t--tw-space-x-reverse: 0;\n\tmargin-right: calc(1.5rem * var(--tw-space-x-reverse));\n\tmargin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));\n}.space-y-6 > :not([hidden]) ~ :not([hidden]) {\n\t--tw-space-y-reverse: 0;\n\tmargin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));\n\tmargin-bottom: calc(1.5rem * var(--tw-space-y-reverse));\n}.divide-y > :not([hidden]) ~ :not([hidden]) {\n\t--tw-divide-y-reverse: 0;\n\tborder-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));\n\tborder-bottom-width: calc(1px * var(--tw-divide-y-reverse));\n}.divide-dashed > :not([hidden]) ~ :not([hidden]) {\n\tborder-style: dashed;\n}.divide-gray-300 > :not([hidden]) ~ :not([hidden]) {\n\t--tw-divide-opacity: 1;\n\tborder-color: rgba(209, 213, 219, var(--tw-divide-opacity));\n}.overflow-auto {\n\toverflow: auto;\n}.overflow-hidden {\n\toverflow: hidden;\n}.overflow-y-auto {\n\toverflow-y: auto;\n}.truncate {\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}.whitespace-nowrap {\n\twhite-space: nowrap;\n}.rounded-full {\n\tborder-radius: 9999px;\n}.rounded-bl-md {\n\tborder-bottom-left-radius: 0.375rem;\n}.border-0 {\n\tborder-width: 0px;\n}.border-2 {\n\tborder-width: 2px;\n}.border-t {\n\tborder-top-width: 1px;\n}.border-b {\n\tborder-bottom-width: 1px;\n}.border-b-2 {\n\tborder-bottom-width: 2px;\n}.border-r {\n\tborder-right-width: 1px;\n}.border-l {\n\tborder-left-width: 1px;\n}.border-gray-300 {\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(209, 213, 219, var(--tw-border-opacity));\n}.border-gray-200 {\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(229, 231, 235, var(--tw-border-opacity));\n}.border-indigo-400 {\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(129, 140, 248, var(--tw-border-opacity));\n}.border-transparent {\n\tborder-color: transparent;\n}.bg-white {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}.bg-gray-50 {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(249, 250, 251, var(--tw-bg-opacity));\n}.bg-transparent {\n\tbackground-color: transparent;\n}.bg-gray-100 {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(243, 244, 246, var(--tw-bg-opacity));\n}.\\!bg-indigo-100 {\n\t--tw-bg-opacity: 1 !important;\n\tbackground-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important;\n}.bg-indigo-500 {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(99, 102, 241, var(--tw-bg-opacity));\n}.bg-gray-300 {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(209, 213, 219, var(--tw-bg-opacity));\n}.p-4 {\n\tpadding: 1rem;\n}.p-1\\.5 {\n\tpadding: 0.375rem;\n}.p-1 {\n\tpadding: 0.25rem;\n}.px-4 {\n\tpadding-left: 1rem;\n\tpadding-right: 1rem;\n}.py-2 {\n\tpadding-top: 0.5rem;\n\tpadding-bottom: 0.5rem;\n}.px-1 {\n\tpadding-left: 0.25rem;\n\tpadding-right: 0.25rem;\n}.py-\\[5px\\] {\n\tpadding-top: 5px;\n\tpadding-bottom: 5px;\n}.py-3 {\n\tpadding-top: 0.75rem;\n\tpadding-bottom: 0.75rem;\n}.pr-3 {\n\tpadding-right: 0.75rem;\n}.pt-3 {\n\tpadding-top: 0.75rem;\n}.pb-6 {\n\tpadding-bottom: 1.5rem;\n}.text-center {\n\ttext-align: center;\n}.font-monospace {\n\tfont-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;\n}.font-sans {\n\tfont-family: \"Nunito Sans\", -apple-system, \".SFNSText-Regular\", \"San Francisco\", BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}.text-base {\n\tfont-size: 1rem;\n\tline-height: 1.5rem;\n}.text-sm {\n\tfont-size: 0.875rem;\n\tline-height: 1.25rem;\n}.text-xs {\n\tfont-size: 0.75rem;\n\tline-height: 1rem;\n}.text-\\[11px\\] {\n\tfont-size: 11px;\n}.font-bold {\n\tfont-weight: 700;\n}.uppercase {\n\ttext-transform: uppercase;\n}.italic {\n\tfont-style: italic;\n}.leading-none {\n\tline-height: 1;\n}.tracking-wide {\n\tletter-spacing: 0.025em;\n}.text-gray-300 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(209, 213, 219, var(--tw-text-opacity));\n}.text-gray-400 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(156, 163, 175, var(--tw-text-opacity));\n}.text-red-300 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(252, 165, 165, var(--tw-text-opacity));\n}.text-gray-700 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(55, 65, 81, var(--tw-text-opacity));\n}.text-gray-500 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(107, 114, 128, var(--tw-text-opacity));\n}.\\!text-gray-300 {\n\t--tw-text-opacity: 1 !important;\n\tcolor: rgba(209, 213, 219, var(--tw-text-opacity)) !important;\n}.text-gray-800 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(31, 41, 55, var(--tw-text-opacity));\n}.\\!text-green-600 {\n\t--tw-text-opacity: 1 !important;\n\tcolor: rgba(5, 150, 105, var(--tw-text-opacity)) !important;\n}.text-indigo-500 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(99, 102, 241, var(--tw-text-opacity));\n}.text-gray-900 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(17, 24, 39, var(--tw-text-opacity));\n}.text-gray-600 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(75, 85, 99, var(--tw-text-opacity));\n}.underline {\n\ttext-decoration: underline;\n}.antialiased {\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}.opacity-0 {\n\topacity: 0;\n}.opacity-50 {\n\topacity: 0.5;\n}.shadow {\n\t--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);\n\tbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}.outline-none {\n\toutline: 2px solid transparent;\n\toutline-offset: 2px;\n}.ring-0 {\n\t--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n\t--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n\tbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}.blur {\n\t--tw-blur: blur(8px);\n\tfilter: var(--tw-filter);\n}.filter {\n\tfilter: var(--tw-filter);\n}.transition {\n\ttransition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\n\ttransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n\ttransition-duration: 150ms;\n}.transition-colors {\n\ttransition-property: background-color, border-color, color, fill, stroke;\n\ttransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n\ttransition-duration: 150ms;\n}.duration-200 {\n\ttransition-duration: 200ms;\n}.ease-in-out {\n\ttransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n}.form-input {\n\twidth: 100%;\n\tborder-radius: 0.125rem;\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(209, 213, 219, var(--tw-border-opacity));\n\tfont-size: 0.875rem;\n\tline-height: 1.25rem;\n\t--tw-text-opacity: 1;\n\tcolor: rgba(55, 65, 81, var(--tw-text-opacity));\n}.form-input:focus {\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(165, 180, 252, var(--tw-border-opacity));\n\t--tw-ring-opacity: 1;\n\t--tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));\n}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:\"\";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}/*\n * GitHub style for Pygments\n * Courtesy of GitHub.com\n */.highlight .hll {\n background-color: #f8f8f8;\n border: 1px solid #ccc;\n padding: 6px 10px;\n border-radius: 3px;\n}.highlight .c {\n color: #999988;\n font-style: italic;\n}.highlight .err {\n color: #a61717;\n background-color: #e3d2d2;\n}.highlight .k {\n font-weight: bold;\n}.highlight .o {\n font-weight: bold;\n}.highlight .cm {\n color: #999988;\n font-style: italic;\n}.highlight .cp {\n color: #999999;\n font-weight: bold;\n}.highlight .c1 {\n color: #999988;\n font-style: italic;\n}.highlight .cs {\n color: #999999;\n font-weight: bold;\n font-style: italic;\n}.highlight .gd {\n color: #000000;\n background-color: #ffdddd;\n}.highlight .gd .x {\n color: #000000;\n background-color: #ffaaaa;\n}.highlight .ge {\n font-style: italic;\n}.highlight .gr {\n color: #aa0000;\n}.highlight .gh {\n color: #999999;\n}.highlight .gi {\n color: #000000;\n background-color: #ddffdd;\n}.highlight .gi .x {\n color: #000000;\n background-color: #aaffaa;\n}.highlight .go {\n color: #888888;\n}.highlight .gp {\n color: #555555;\n}.highlight .gs {\n font-weight: bold;\n}.highlight .gu {\n color: #800080;\n font-weight: bold;\n}.highlight .gt {\n color: #aa0000;\n}.highlight .kc {\n font-weight: bold;\n}.highlight .kd {\n font-weight: bold;\n}.highlight .kn {\n font-weight: bold;\n}.highlight .kp {\n font-weight: bold;\n}.highlight .kr {\n font-weight: bold;\n}.highlight .kt {\n color: #445588;\n font-weight: bold;\n}.highlight .m {\n color: #009999;\n}.highlight .s {\n color: #dd1144;\n}.highlight .n {\n color: #333333;\n}.highlight .na {\n color: teal;\n}.highlight .nb {\n color: #0086b3;\n}.highlight .nc {\n color: #445588;\n font-weight: bold;\n}.highlight .no {\n color: teal;\n}.highlight .ni {\n color: purple;\n}.highlight .ne {\n color: #990000;\n font-weight: bold;\n}.highlight .nf {\n color: #990000;\n font-weight: bold;\n}.highlight .nn {\n color: #555555;\n}.highlight .nt {\n color: navy;\n}.highlight .nv {\n color: teal;\n}.highlight .ow {\n font-weight: bold;\n}.highlight .w {\n color: #bbbbbb;\n}.highlight .mf {\n color: #009999;\n}.highlight .mh {\n color: #009999;\n}.highlight .mi {\n color: #009999;\n}.highlight .mo {\n color: #009999;\n}.highlight .sb {\n color: #dd1144;\n}.highlight .sc {\n color: #dd1144;\n}.highlight .sd {\n color: #dd1144;\n}.highlight .s2 {\n color: #dd1144;\n}.highlight .se {\n color: #dd1144;\n}.highlight .sh {\n color: #dd1144;\n}.highlight .si {\n color: #dd1144;\n}.highlight .sx {\n color: #dd1144;\n}.highlight .sr {\n color: #009926;\n}.highlight .s1 {\n color: #dd1144;\n}.highlight .ss {\n color: #990073;\n}.highlight .bp {\n color: #999999;\n}.highlight .vc {\n color: teal;\n}.highlight .vg {\n color: teal;\n}.highlight .vi {\n color: teal;\n}.highlight .il {\n color: #009999;\n}.highlight .gc {\n color: #999;\n background-color: #eaf2f5;\n}.tippy-box[data-theme~=\"lookbook\"] {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(99, 102, 241, var(--tw-bg-opacity));\n\tfont-size: 0.75rem;\n\tline-height: 1rem;\n\t--tw-text-opacity: 1;\n\tcolor: rgba(255, 255, 255, var(--tw-text-opacity));\n\topacity: 0.9;\n}.tippy-box[data-theme~=\"lookbook\"][data-placement^=\"top\"] > .tippy-arrow::before {\n border-top-color: #6366f1;\n }.tippy-box[data-theme~=\"lookbook\"][data-placement^=\"bottom\"] > .tippy-arrow::before {\n border-bottom-color: #6366f1;\n }.tippy-box[data-theme~=\"lookbook\"][data-placement^=\"left\"] > .tippy-arrow::before {\n border-left-color: #6366f1;\n }.tippy-box[data-theme~=\"lookbook\"][data-placement^=\"right\"] > .tippy-arrow::before {\n border-right-color: #6366f1;\n }.hover\\:border-gray-300:hover {\n\t--tw-border-opacity: 1;\n\tborder-color: rgba(209, 213, 219, var(--tw-border-opacity));\n}.hover\\:bg-indigo-100:hover {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(224, 231, 255, var(--tw-bg-opacity));\n}.hover\\:bg-gray-200:hover {\n\t--tw-bg-opacity: 1;\n\tbackground-color: rgba(229, 231, 235, var(--tw-bg-opacity));\n}.hover\\:bg-opacity-20:hover {\n\t--tw-bg-opacity: 0.2;\n}.hover\\:bg-opacity-50:hover {\n\t--tw-bg-opacity: 0.5;\n}.hover\\:text-indigo-800:hover {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(55, 48, 163, var(--tw-text-opacity));\n}.hover\\:text-gray-700:hover {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(55, 65, 81, var(--tw-text-opacity));\n}.hover\\:text-indigo-500:hover {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(99, 102, 241, var(--tw-text-opacity));\n}.hover\\:text-green-600:hover {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(5, 150, 105, var(--tw-text-opacity));\n}.focus\\:outline-none:focus {\n\toutline: 2px solid transparent;\n\toutline-offset: 2px;\n}.focus\\:ring-0:focus {\n\t--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n\t--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n\tbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}.focus\\:ring-2:focus {\n\t--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n\t--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\n\tbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}.focus\\:ring-indigo-400:focus {\n\t--tw-ring-opacity: 1;\n\t--tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));\n}.focus\\:ring-offset-2:focus {\n\t--tw-ring-offset-width: 2px;\n}.group:hover .group-hover\\:text-indigo-800 {\n\t--tw-text-opacity: 1;\n\tcolor: rgba(55, 48, 163, var(--tw-text-opacity));\n}@media (min-width: 768px) {\n\n\t.md\\:-mx-px {\n\t\tmargin-left: -1px;\n\t\tmargin-right: -1px;\n\t}\n\n\t.md\\:ml-3 {\n\t\tmargin-left: 0.75rem;\n\t}\n\n\t.md\\:grid {\n\t\tdisplay: grid;\n\t}\n\n\t.md\\:hidden {\n\t\tdisplay: none;\n\t}\n\n\t.md\\:h-auto {\n\t\theight: auto;\n\t}\n\n\t.md\\:min-h-0 {\n\t\tmin-height: 0px;\n\t}\n\n\t.md\\:divide-x > :not([hidden]) ~ :not([hidden]) {\n\t\t--tw-divide-x-reverse: 0;\n\t\tborder-right-width: calc(1px * var(--tw-divide-x-reverse));\n\t\tborder-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));\n\t}\n\n\t.md\\:pl-3 {\n\t\tpadding-left: 0.75rem;\n\t}\n\n\t.md\\:pr-4 {\n\t\tpadding-right: 1rem;\n\t}\n}@media (min-width: 1024px) {\n\n\t.lg\\:space-x-8 > :not([hidden]) ~ :not([hidden]) {\n\t\t--tw-space-x-reverse: 0;\n\t\tmargin-right: calc(2rem * var(--tw-space-x-reverse));\n\t\tmargin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));\n\t}\n}\n\n/*# sourceMappingURL=app.css.map */\n"],"names":[],"version":3,"file":"app.css.map"}