@up_si_vale/sivale-design-styles 1.0.15 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/README.md +243 -25
  2. package/dist/assets/icons/chevron-down.svg +3 -3
  3. package/dist/assets/icons/city.svg +9 -9
  4. package/dist/assets/icons/community.svg +8 -8
  5. package/dist/assets/icons/credit-cards.svg +4 -4
  6. package/dist/assets/icons/dollar-circle.svg +4 -4
  7. package/dist/assets/icons/emoji-blink-right.svg +5 -5
  8. package/dist/assets/icons/error.svg +9 -9
  9. package/dist/assets/icons/gas-tank-droplet.svg +4 -4
  10. package/dist/assets/icons/gift.svg +7 -7
  11. package/dist/assets/icons/hand-card.svg +6 -6
  12. package/dist/assets/icons/laptop.svg +4 -4
  13. package/dist/assets/icons/layout.svg +3 -3
  14. package/dist/assets/icons/leaf.svg +4 -4
  15. package/dist/assets/icons/lock.svg +3 -3
  16. package/dist/assets/icons/pagination-button.svg +3 -3
  17. package/dist/assets/icons/piggy-bank.svg +7 -7
  18. package/dist/assets/icons/pizza-slice.svg +7 -7
  19. package/dist/assets/icons/quote-message.svg +5 -5
  20. package/dist/assets/icons/rocket.svg +7 -7
  21. package/dist/assets/icons/shirt.svg +5 -5
  22. package/dist/assets/icons/shop-four-tiles.svg +8 -8
  23. package/dist/assets/icons/shop.svg +7 -7
  24. package/dist/assets/icons/simple-cart.svg +5 -5
  25. package/dist/assets/icons/small-shop.svg +6 -6
  26. package/dist/assets/icons/star.svg +3 -3
  27. package/dist/assets/icons/suitcase.svg +3 -3
  28. package/dist/assets/icons/tag.svg +3 -3
  29. package/dist/index.css +4676 -1980
  30. package/dist/index.css.map +1 -1
  31. package/dist/js/mega-menu-toggle.js +39 -39
  32. package/dist/scss/_alert.scss +15 -15
  33. package/dist/scss/_badge.scss +25 -0
  34. package/dist/scss/_button.scss +419 -419
  35. package/dist/scss/_card-highlight.scss +33 -33
  36. package/dist/scss/_card-post.scss +75 -75
  37. package/dist/scss/_card-product.scss +71 -71
  38. package/dist/scss/_card.scss +147 -147
  39. package/dist/scss/_checkbox.scss +118 -118
  40. package/dist/scss/_collage.scss +44 -44
  41. package/dist/scss/_copy-input.scss +97 -0
  42. package/dist/scss/_date-picker.scss +1002 -0
  43. package/dist/scss/_faq.scss +45 -45
  44. package/dist/scss/_form.scss +60 -60
  45. package/dist/scss/_icons.scss +362 -326
  46. package/dist/scss/_input.scss +328 -328
  47. package/dist/scss/_loader.scss +144 -0
  48. package/dist/scss/_modal-dialog.scss +109 -109
  49. package/dist/scss/_multiselect.scss +270 -270
  50. package/dist/scss/_navbar.scss +234 -234
  51. package/dist/scss/_order-list.scss +64 -64
  52. package/dist/scss/_palette.scss +85 -85
  53. package/dist/scss/_phone-input.scss +80 -80
  54. package/dist/scss/_product-slide.scss +51 -51
  55. package/dist/scss/_radio.scss +103 -0
  56. package/dist/scss/_select-native.scss +103 -103
  57. package/dist/scss/_select.scss +282 -282
  58. package/dist/scss/_skeleton.scss +26 -0
  59. package/dist/scss/_snackbar.scss +201 -201
  60. package/dist/scss/_stepper-orderlist.scss +92 -92
  61. package/dist/scss/_table.scss +109 -109
  62. package/dist/scss/_tooltip.scss +64 -64
  63. package/dist/scss/_typography.scss +72 -72
  64. package/dist/scss/_utilities.scss +468 -0
  65. package/dist/scss/_variables.dark.scss +19 -19
  66. package/dist/scss/_variables.scss +194 -194
  67. package/dist/scss/index.scss +33 -25
  68. package/dist/src/index.js +9 -9
  69. package/package.json +44 -44
  70. package/src/_alert.scss +15 -15
  71. package/src/_badge.scss +25 -0
  72. package/src/_button.scss +419 -419
  73. package/src/_card-highlight.scss +33 -33
  74. package/src/_card-post.scss +75 -75
  75. package/src/_card-product.scss +71 -71
  76. package/src/_card.scss +147 -147
  77. package/src/_checkbox.scss +118 -118
  78. package/src/_collage.scss +44 -44
  79. package/src/_copy-input.scss +97 -0
  80. package/src/_date-picker.scss +1002 -0
  81. package/src/_faq.scss +45 -45
  82. package/src/_form.scss +60 -60
  83. package/src/_icons.scss +362 -326
  84. package/src/_input.scss +328 -328
  85. package/src/_loader.scss +144 -0
  86. package/src/_modal-dialog.scss +109 -109
  87. package/src/_multiselect.scss +270 -270
  88. package/src/_navbar.scss +234 -234
  89. package/src/_order-list.scss +64 -64
  90. package/src/_palette.scss +85 -85
  91. package/src/_phone-input.scss +80 -80
  92. package/src/_product-slide.scss +51 -51
  93. package/src/_radio.scss +103 -0
  94. package/src/_select-native.scss +103 -103
  95. package/src/_select.scss +282 -282
  96. package/src/_skeleton.scss +26 -0
  97. package/src/_snackbar.scss +201 -201
  98. package/src/_stepper-orderlist.scss +92 -92
  99. package/src/_table.scss +109 -109
  100. package/src/_tooltip.scss +64 -64
  101. package/src/_typography.scss +72 -72
  102. package/src/_utilities.scss +468 -0
  103. package/src/_variables.dark.scss +19 -19
  104. package/src/_variables.scss +194 -194
  105. package/src/assets/icons/chevron-down.svg +3 -3
  106. package/src/assets/icons/city.svg +9 -9
  107. package/src/assets/icons/community.svg +8 -8
  108. package/src/assets/icons/credit-cards.svg +4 -4
  109. package/src/assets/icons/dollar-circle.svg +4 -4
  110. package/src/assets/icons/emoji-blink-right.svg +5 -5
  111. package/src/assets/icons/error.svg +9 -9
  112. package/src/assets/icons/gas-tank-droplet.svg +4 -4
  113. package/src/assets/icons/gift.svg +7 -7
  114. package/src/assets/icons/hand-card.svg +6 -6
  115. package/src/assets/icons/laptop.svg +4 -4
  116. package/src/assets/icons/layout.svg +3 -3
  117. package/src/assets/icons/leaf.svg +4 -4
  118. package/src/assets/icons/lock.svg +3 -3
  119. package/src/assets/icons/pagination-button.svg +3 -3
  120. package/src/assets/icons/piggy-bank.svg +7 -7
  121. package/src/assets/icons/pizza-slice.svg +7 -7
  122. package/src/assets/icons/quote-message.svg +5 -5
  123. package/src/assets/icons/rocket.svg +7 -7
  124. package/src/assets/icons/shirt.svg +5 -5
  125. package/src/assets/icons/shop-four-tiles.svg +8 -8
  126. package/src/assets/icons/shop.svg +7 -7
  127. package/src/assets/icons/simple-cart.svg +5 -5
  128. package/src/assets/icons/small-shop.svg +6 -6
  129. package/src/assets/icons/star.svg +3 -3
  130. package/src/assets/icons/suitcase.svg +3 -3
  131. package/src/assets/icons/tag.svg +3 -3
  132. package/src/index.js +9 -9
  133. package/src/index.scss +33 -25
  134. package/src/js/mega-menu-toggle.js +39 -39
package/README.md CHANGED
@@ -1,25 +1,243 @@
1
- # Up-Sí-vale SCSS UI Kit
2
-
3
- Paquete de estilos SCSS - Landing vale Mx con:
4
-
5
- Colores
6
- Colores por producto
7
- Tipografia
8
- Botones
9
- Inputs
10
- Icons
11
-
12
- # Guia de instalación - Getting Started
13
- TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
14
- 1. Installation process
15
- 2. Software dependencies
16
- 3. Latest releases
17
- 4. API references
18
-
19
- # Build and Test
20
- TODO: Describe and show how to build your code and run the tests.
21
-
22
- # Contribute
23
- TODO: Explain how other users and developers can contribute to make your code better.
24
-
25
-
1
+ # @up_si_vale/sivale-design-styles
2
+
3
+ Biblioteca de estilos SCSS bajo el estandar WCAG para proyectos Si Vale MX.
4
+
5
+ ## Componentes incluidos
6
+
7
+ | Categoria | Componentes |
8
+ |-----------|-------------|
9
+ | **Fundamentos** | Variables (paleta, tokens), Dark mode, Tipografia, Iconos |
10
+ | **Layout** | Grid 12 columnas, Container, Row/Col responsive, Utilities (spacing, display, flex) |
11
+ | **Formularios** | Input, Select, Select nativo, Multiselect, Checkbox, Radio, Phone input, Date picker, Copy input |
12
+ | **Botones** | Sistema `.sv-button` (primary, secondary, tertiary, orange, black), Sistema `.svu-btn` (primary, secondary, outline, ghost, danger, success) con loading state |
13
+ | **Cards** | Card base, Card highlight, Card product, Card post |
14
+ | **Datos** | Table, Order list, Stepper, Badge |
15
+ | **Feedback** | Alert, Snackbar (success, error, warning, info), Tooltip, Modal dialog, Skeleton loader |
16
+ | **Navegacion** | Navbar con mega menu |
17
+ | **Media** | Collage de imagenes, Product slide |
18
+ | **Carga** | Loader pantalla completa con dots animados |
19
+
20
+ ## Instalacion
21
+
22
+ ```bash
23
+ npm install @up_si_vale/sivale-design-styles
24
+ ```
25
+
26
+ ## Uso
27
+
28
+ ### Opcion 1 — CSS compilado (recomendado para inicio rapido)
29
+
30
+ Importar el CSS compilado en tu archivo de estilos globales:
31
+
32
+ ```scss
33
+ // styles.scss o styles.css
34
+ @import '@up_si_vale/sivale-design-styles/dist/index.css';
35
+ ```
36
+
37
+ O en Angular (`angular.json`):
38
+
39
+ ```json
40
+ {
41
+ "styles": [
42
+ "node_modules/@up_si_vale/sivale-design-styles/dist/index.css",
43
+ "src/styles.scss"
44
+ ]
45
+ }
46
+ ```
47
+
48
+ ### Opcion 2 — SCSS completo
49
+
50
+ Importar todos los modulos SCSS para tener acceso a variables y mixins:
51
+
52
+ ```scss
53
+ @import '@up_si_vale/sivale-design-styles/dist/scss/index';
54
+ ```
55
+
56
+ ### Opcion 3 — Modulos individuales
57
+
58
+ Importar solo los modulos que necesites:
59
+
60
+ ```scss
61
+ // Solo variables y tipografia
62
+ @use '@up_si_vale/sivale-design-styles/scss/variables';
63
+ @use '@up_si_vale/sivale-design-styles/scss/typography';
64
+
65
+ // Solo botones y formularios
66
+ @use '@up_si_vale/sivale-design-styles/scss/button';
67
+ @use '@up_si_vale/sivale-design-styles/scss/input';
68
+ @use '@up_si_vale/sivale-design-styles/scss/form';
69
+ ```
70
+
71
+ ### JavaScript — Mega Menu Toggle
72
+
73
+ ```js
74
+ import { initMegaMenuToggle } from '@up_si_vale/sivale-design-styles/mega-menu-toggle';
75
+
76
+ initMegaMenuToggle();
77
+ ```
78
+
79
+ ## Dark Mode
80
+
81
+ Agregar el atributo `data-theme="dark"` al elemento raiz:
82
+
83
+ ```html
84
+ <html data-theme="dark">
85
+ ```
86
+
87
+ Las variables CSS se actualizan automaticamente.
88
+
89
+ ## Grid System
90
+
91
+ Sistema de 12 columnas responsive con breakpoints: `xs`, `sm` (576px), `md` (768px), `lg` (992px), `xl` (1200px), `xxl` (1400px).
92
+
93
+ ```html
94
+ <div class="container">
95
+ <div class="row gap-3">
96
+ <div class="col-12 col-md-6 col-lg-4">Columna 1</div>
97
+ <div class="col-12 col-md-6 col-lg-4">Columna 2</div>
98
+ <div class="col-12 col-lg-4">Columna 3</div>
99
+ </div>
100
+ </div>
101
+ ```
102
+
103
+ Utilidades incluidas: `d-flex`, `d-none`, `d-block`, `justify-content-*`, `align-items-*`, `m-*`, `p-*`, `gap-*`, `w-*`, `h-*`, y variantes responsive (`d-md-none`, `d-lg-flex`, etc).
104
+
105
+ ## Publicacion
106
+
107
+ ### Requisitos previos
108
+
109
+ - Node.js >= 18
110
+ - npm >= 9
111
+ - Acceso al registry de npm (o registry privado configurado en `.npmrc`)
112
+
113
+ ### Pasos para publicar una nueva version
114
+
115
+ ```bash
116
+ # 1. Asegurar que estas en la rama correcta y con cambios committeados
117
+ git status
118
+
119
+ # 2. Actualizar la version en package.json
120
+ # - patch (1.0.16 → 1.0.17): correcciones de bugs
121
+ # - minor (1.0.16 → 1.1.0): nuevos componentes o features
122
+ # - major (1.0.16 → 2.0.0): cambios que rompen compatibilidad
123
+ npm version patch # o minor / major
124
+
125
+ # 3. Compilar (se ejecuta automaticamente con prepublishOnly)
126
+ npm run build
127
+
128
+ # 4. Verificar el contenido que se publicara
129
+ npm pack --dry-run
130
+
131
+ # 5. Publicar al registry
132
+ npm publish --access public
133
+
134
+ # 6. Push del tag de version a git
135
+ git push && git push --tags
136
+ ```
137
+
138
+ ### Publicar a un registry privado (Azure Artifacts, etc)
139
+
140
+ Crear o editar `.npmrc` en la raiz del proyecto:
141
+
142
+ ```ini
143
+ registry=https://pkgs.dev.azure.com/<org>/<project>/_packaging/<feed>/npm/registry/
144
+ always-auth=true
145
+ ```
146
+
147
+ Autenticarse:
148
+
149
+ ```bash
150
+ npx vsts-npm-auth -config .npmrc
151
+ ```
152
+
153
+ Luego publicar normalmente:
154
+
155
+ ```bash
156
+ npm publish
157
+ ```
158
+
159
+ ### Verificar la publicacion
160
+
161
+ ```bash
162
+ # Ver la version publicada
163
+ npm view @up_si_vale/sivale-design-styles version
164
+
165
+ # Instalar en otro proyecto para probar
166
+ npm install @up_si_vale/sivale-design-styles@latest
167
+ ```
168
+
169
+ ## Build local
170
+
171
+ ```bash
172
+ # Instalar dependencias
173
+ npm install
174
+
175
+ # Compilar SCSS a CSS + copiar assets
176
+ npm run build
177
+ ```
178
+
179
+ El build genera:
180
+
181
+ ```
182
+ dist/
183
+ ├── index.css # CSS compilado (todo incluido)
184
+ ├── index.css.map # Source map
185
+ ├── scss/ # Archivos SCSS individuales (para imports selectivos)
186
+ ├── js/ # JavaScript (mega-menu-toggle)
187
+ └── assets/ # Iconos SVG
188
+ ```
189
+
190
+ ## Estructura del proyecto
191
+
192
+ ```
193
+ src/
194
+ ├── index.scss # Entry point (forwards de todos los modulos)
195
+ ├── index.js # JS exports
196
+ ├── _palette.scss # Paleta de colores
197
+ ├── _variables.scss # Design tokens (CSS custom properties)
198
+ ├── _variables.dark.scss # Overrides dark mode
199
+ ├── _typography.scss # Tipografia (DM Sans, Quicksand)
200
+ ├── _utilities.scss # Grid, spacing, display, flex utilities
201
+ ├── _button.scss # Botones (sv-button + svu-btn)
202
+ ├── _input.scss # Inputs
203
+ ├── _form.scss # Layout de formularios
204
+ ├── _select.scss # Select custom
205
+ ├── _select-native.scss # Select nativo
206
+ ├── _multiselect.scss # Multi-select con checkboxes
207
+ ├── _checkbox.scss # Checkbox custom
208
+ ├── _radio.scss # Radio button custom
209
+ ├── _date-picker.scss # Date picker con calendario
210
+ ├── _phone-input.scss # Input de telefono con pais
211
+ ├── _copy-input.scss # Input de copiar al portapapeles
212
+ ├── _loader.scss # Loader pantalla completa
213
+ ├── _card.scss # Card base
214
+ ├── _card-highlight.scss # Card highlight
215
+ ├── _card-product.scss # Card producto
216
+ ├── _card-post.scss # Card post/blog
217
+ ├── _table.scss # Tabla con paginacion
218
+ ├── _order-list.scss # Lista de ordenes
219
+ ├── _stepper-orderlist.scss # Stepper/progreso
220
+ ├── _alert.scss # Alertas
221
+ ├── _snackbar.scss # Notificaciones toast
222
+ ├── _tooltip.scss # Tooltips
223
+ ├── _modal-dialog.scss # Modales
224
+ ├── _badge.scss # Badges
225
+ ├── _skeleton.scss # Skeleton loaders
226
+ ├── _navbar.scss # Barra de navegacion
227
+ ├── _icons.scss # Sistema de iconos
228
+ ├── _collage.scss # Collage de imagenes
229
+ ├── _faq.scss # Acordeon FAQ
230
+ ├── _product-slide.scss # Producto con slide
231
+ ├── assets/
232
+ │ └── icons/ # 27 iconos SVG
233
+ └── js/
234
+ └── mega-menu-toggle.js # Toggle del mega menu
235
+ ```
236
+
237
+ ## Contribuir
238
+
239
+ 1. Crear una rama desde `main` con el prefijo del tipo de cambio (`feat/`, `fix/`, `refactor/`)
240
+ 2. Agregar el nuevo archivo SCSS en `src/` con prefijo `_` (ej: `_mi-componente.scss`)
241
+ 3. Registrarlo en `src/index.scss` con `@forward 'mi-componente'`
242
+ 4. Compilar y verificar: `npm run build`
243
+ 5. Crear Pull Request
@@ -1,3 +1,3 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M5 7.5L10 12.5L15 7.5" stroke="#828689" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
3
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 7.5L10 12.5L15 7.5" stroke="#828689" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -1,9 +1,9 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7 9.01L7.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M11 9.01L11.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M7 13.01L7.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M11 13.01L11.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M7 17.01L7.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M11 17.01L11.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
- <path d="M15 21H3.6C3.26863 21 3 20.7314 3 20.4V5.6C3 5.26863 3.26863 5 3.6 5H9V3.6C9 3.26863 9.26863 3 9.6 3H14.4C14.7314 3 15 3.26863 15 3.6V9M15 21H20.4C20.7314 21 21 20.7314 21 20.4V9.6C21 9.26863 20.7314 9 20.4 9H15M15 21V17M15 9V13M15 13H17M15 13V17M15 17H17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 9.01L7.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11 9.01L11.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7 13.01L7.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M11 13.01L11.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M7 17.01L7.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M11 17.01L11.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M15 21H3.6C3.26863 21 3 20.7314 3 20.4V5.6C3 5.26863 3.26863 5 3.6 5H9V3.6C9 3.26863 9.26863 3 9.6 3H14.4C14.7314 3 15 3.26863 15 3.6V9M15 21H20.4C20.7314 21 21 20.7314 21 20.4V9.6C21 9.26863 20.7314 9 20.4 9H15M15 21V17M15 9V13M15 13H17M15 13V17M15 17H17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -1,8 +1,8 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7 18V17C7 14.2386 9.23858 12 12 12V12C14.7614 12 17 14.2386 17 17V18" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M1 18V17C1 15.3431 2.34315 14 4 14V14" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M23 18V17C23 15.3431 21.6569 14 20 14V14" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M12 12C13.6569 12 15 10.6569 15 9C15 7.34315 13.6569 6 12 6C10.3431 6 9 7.34315 9 9C9 10.6569 10.3431 12 12 12Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M4 14C5.10457 14 6 13.1046 6 12C6 10.8954 5.10457 10 4 10C2.89543 10 2 10.8954 2 12C2 13.1046 2.89543 14 4 14Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M20 14C21.1046 14 22 13.1046 22 12C22 10.8954 21.1046 10 20 10C18.8954 10 18 10.8954 18 12C18 13.1046 18.8954 14 20 14Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 18V17C7 14.2386 9.23858 12 12 12V12C14.7614 12 17 14.2386 17 17V18" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M1 18V17C1 15.3431 2.34315 14 4 14V14" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M23 18V17C23 15.3431 21.6569 14 20 14V14" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12 12C13.6569 12 15 10.6569 15 9C15 7.34315 13.6569 6 12 6C10.3431 6 9 7.34315 9 9C9 10.6569 10.3431 12 12 12Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M4 14C5.10457 14 6 13.1046 6 12C6 10.8954 5.10457 10 4 10C2.89543 10 2 10.8954 2 12C2 13.1046 2.89543 14 4 14Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M20 14C21.1046 14 22 13.1046 22 12C22 10.8954 21.1046 10 20 10C18.8954 10 18 10.8954 18 12C18 13.1046 18.8954 14 20 14Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22 11.4286V18C22 19.1046 21.1046 20 20 20H7C5.89543 20 5 19.1046 5 18V16.5M22 11.4286V10C22 8.89543 21.1046 8 20 8H19M22 11.4286H19" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M19 8V14.5C19 15.6046 18.1046 16.5 17 16.5H4C2.89543 16.5 2 15.6046 2 14.5V6.5C2 5.39543 2.89543 4.5 4 4.5H17C18.1046 4.5 19 5.39543 19 6.5V8ZM19 8H5.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22 11.4286V18C22 19.1046 21.1046 20 20 20H7C5.89543 20 5 19.1046 5 18V16.5M22 11.4286V10C22 8.89543 21.1046 8 20 8H19M22 11.4286H19" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M19 8V14.5C19 15.6046 18.1046 16.5 17 16.5H4C2.89543 16.5 2 15.6046 2 14.5V6.5C2 5.39543 2.89543 4.5 4 4.5H17C18.1046 4.5 19 5.39543 19 6.5V8ZM19 8H5.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75ZM1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12Z" fill="#F59100"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.75C12.4142 4.75 12.75 5.08579 12.75 5.5V6.63088C13.7987 6.80659 14.8479 7.28725 15.5303 7.96967C15.8232 8.26256 15.8232 8.73744 15.5303 9.03033C15.2374 9.32322 14.7625 9.32322 14.4697 9.03033C13.9414 8.50209 12.9286 8.08398 11.9798 8.05845C11.4239 8.04349 10.9874 8.16616 10.7082 8.37765C10.4603 8.5654 10.25 8.8865 10.25 9.50001C10.25 9.75463 10.3066 9.92373 10.3803 10.0472C10.4566 10.1751 10.5767 10.2962 10.762 10.4141C11.1625 10.669 11.728 10.8303 12.4473 11.0264C12.4662 11.0316 12.4852 11.0367 12.5043 11.0419C13.1494 11.2177 13.9306 11.4305 14.5433 11.8204C14.8736 12.0306 15.1832 12.3079 15.4077 12.684C15.6347 13.0644 15.75 13.5046 15.75 14C15.75 15.1018 15.2633 15.942 14.5063 16.4722C13.9915 16.8327 13.3777 17.0337 12.75 17.109V18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5V17.0647C10.1574 16.875 9.06953 16.3427 8.39998 15.45C8.15145 15.1186 8.21861 14.6485 8.54998 14.4C8.88135 14.1515 9.35145 14.2186 9.59998 14.55C10.0709 15.1779 11.0251 15.6055 12.0269 15.6415C12.681 15.665 13.2567 15.516 13.6458 15.2435C14.0047 14.9922 14.25 14.6092 14.25 14C14.25 13.7454 14.1934 13.5763 14.1197 13.4528C14.0433 13.3249 13.9232 13.2038 13.738 13.0859C13.3375 12.831 12.7719 12.6697 12.0526 12.4736C12.0338 12.4684 12.0148 12.4633 11.9957 12.4581C11.3505 12.2823 10.5693 12.0695 9.9567 11.6796C9.62634 11.4694 9.31678 11.1921 9.09231 10.816C8.86526 10.4357 8.74998 9.99538 8.74998 9.50001C8.74998 8.48349 9.13013 7.69119 9.80247 7.18193C10.2302 6.85793 10.7348 6.6798 11.25 6.60324V5.5C11.25 5.08579 11.5858 4.75 12 4.75Z" fill="#F59100"/>
4
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75ZM1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12Z" fill="#F59100"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.75C12.4142 4.75 12.75 5.08579 12.75 5.5V6.63088C13.7987 6.80659 14.8479 7.28725 15.5303 7.96967C15.8232 8.26256 15.8232 8.73744 15.5303 9.03033C15.2374 9.32322 14.7625 9.32322 14.4697 9.03033C13.9414 8.50209 12.9286 8.08398 11.9798 8.05845C11.4239 8.04349 10.9874 8.16616 10.7082 8.37765C10.4603 8.5654 10.25 8.8865 10.25 9.50001C10.25 9.75463 10.3066 9.92373 10.3803 10.0472C10.4566 10.1751 10.5767 10.2962 10.762 10.4141C11.1625 10.669 11.728 10.8303 12.4473 11.0264C12.4662 11.0316 12.4852 11.0367 12.5043 11.0419C13.1494 11.2177 13.9306 11.4305 14.5433 11.8204C14.8736 12.0306 15.1832 12.3079 15.4077 12.684C15.6347 13.0644 15.75 13.5046 15.75 14C15.75 15.1018 15.2633 15.942 14.5063 16.4722C13.9915 16.8327 13.3777 17.0337 12.75 17.109V18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5V17.0647C10.1574 16.875 9.06953 16.3427 8.39998 15.45C8.15145 15.1186 8.21861 14.6485 8.54998 14.4C8.88135 14.1515 9.35145 14.2186 9.59998 14.55C10.0709 15.1779 11.0251 15.6055 12.0269 15.6415C12.681 15.665 13.2567 15.516 13.6458 15.2435C14.0047 14.9922 14.25 14.6092 14.25 14C14.25 13.7454 14.1934 13.5763 14.1197 13.4528C14.0433 13.3249 13.9232 13.2038 13.738 13.0859C13.3375 12.831 12.7719 12.6697 12.0526 12.4736C12.0338 12.4684 12.0148 12.4633 11.9957 12.4581C11.3505 12.2823 10.5693 12.0695 9.9567 11.6796C9.62634 11.4694 9.31678 11.1921 9.09231 10.816C8.86526 10.4357 8.74998 9.99538 8.74998 9.50001C8.74998 8.48349 9.13013 7.69119 9.80247 7.18193C10.2302 6.85793 10.7348 6.6798 11.25 6.60324V5.5C11.25 5.08579 11.5858 4.75 12 4.75Z" fill="#F59100"/>
4
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.5 9C8.22386 9 8 8.77614 8 8.5C8 8.22386 8.22386 8 8.5 8C8.77614 8 9 8.22386 9 8.5C9 8.77614 8.77614 9 8.5 9Z" fill="#F59100" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M14 9H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M7.5 14.5C7.5 14.5 9 16.5 12 16.5C15 16.5 16.5 14.5 16.5 14.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.5 9C8.22386 9 8 8.77614 8 8.5C8 8.22386 8.22386 8 8.5 8C8.77614 8 9 8.22386 9 8.5C9 8.77614 8.77614 9 8.5 9Z" fill="#F59100" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14 9H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.5 14.5C7.5 14.5 9 16.5 12 16.5C15 16.5 16.5 14.5 16.5 14.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -1,9 +1,9 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7 9.01L7.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M11 9.01L11.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M7 13.01L7.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M11 13.01L11.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M7 17.01L7.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M11 17.01L11.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
- <path d="M15 21H3.6C3.26863 21 3 20.7314 3 20.4V5.6C3 5.26863 3.26863 5 3.6 5H9V3.6C9 3.26863 9.26863 3 9.6 3H14.4C14.7314 3 15 3.26863 15 3.6V9M15 21H20.4C20.7314 21 21 20.7314 21 20.4V9.6C21 9.26863 20.7314 9 20.4 9H15M15 21V17M15 9V13M15 13H17M15 13V17M15 17H17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 9.01L7.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11 9.01L11.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7 13.01L7.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M11 13.01L11.01 12.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M7 17.01L7.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M11 17.01L11.01 16.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M15 21H3.6C3.26863 21 3 20.7314 3 20.4V5.6C3 5.26863 3.26863 5 3.6 5H9V3.6C9 3.26863 9.26863 3 9.6 3H14.4C14.7314 3 15 3.26863 15 3.6V9M15 21H20.4C20.7314 21 21 20.7314 21 20.4V9.6C21 9.26863 20.7314 9 20.4 9H15M15 21V17M15 9V13M15 13H17M15 13V17M15 17H17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3 7.56208C3 6.14754 4.14659 5.0002 5.56319 5.0002C6.34439 5.0002 6.9996 5.0002 6.9996 5.0002V3H12V5.0002H14.0016C17.8662 5.0002 21 8.13329 21 11.9977C21 14.2891 21 16.6925 21 18.4399C21 19.1184 20.73 19.7713 20.2494 20.2513C19.7688 20.7314 19.1172 21.0018 18.4368 21.0018C15.015 21.0018 8.98499 21.0018 5.56319 21.0018C4.88279 21.0018 4.23121 20.7314 3.75061 20.2513C3.27001 19.7713 3 19.1184 3 18.4399C3 15.454 3 10.548 3 7.56208Z" stroke="#F59100" stroke-width="1.49348" stroke-miterlimit="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.9991 9C11.9991 9 14.9991 11.9934 14.9994 13.8865C14.9997 15.5422 13.6552 16.8865 11.9997 16.8865C10.3442 16.8865 9.012 15.5422 9 13.8865C9.00979 11.9924 11.9991 9 11.9991 9Z" stroke="#F59100" stroke-width="1.49993" stroke-miterlimit="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3 7.56208C3 6.14754 4.14659 5.0002 5.56319 5.0002C6.34439 5.0002 6.9996 5.0002 6.9996 5.0002V3H12V5.0002H14.0016C17.8662 5.0002 21 8.13329 21 11.9977C21 14.2891 21 16.6925 21 18.4399C21 19.1184 20.73 19.7713 20.2494 20.2513C19.7688 20.7314 19.1172 21.0018 18.4368 21.0018C15.015 21.0018 8.98499 21.0018 5.56319 21.0018C4.88279 21.0018 4.23121 20.7314 3.75061 20.2513C3.27001 19.7713 3 19.1184 3 18.4399C3 15.454 3 10.548 3 7.56208Z" stroke="#F59100" stroke-width="1.49348" stroke-miterlimit="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.9991 9C11.9991 9 14.9991 11.9934 14.9994 13.8865C14.9997 15.5422 13.6552 16.8865 11.9997 16.8865C10.3442 16.8865 9.012 15.5422 9 13.8865C9.00979 11.9924 11.9991 9 11.9991 9Z" stroke="#F59100" stroke-width="1.49993" stroke-miterlimit="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M20 12V21.4C20 21.7314 19.7314 22 19.4 22H4.6C4.26863 22 4 21.7314 4 21.4V12" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M21.4 7H2.6C2.26863 7 2 7.26863 2 7.6V11.4C2 11.7314 2.26863 12 2.6 12H21.4C21.7314 12 22 11.7314 22 11.4V7.6C22 7.26863 21.7314 7 21.4 7Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M12 22V7" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M12 7H7.5C6.83696 7 6.20107 6.73661 5.73223 6.26777C5.26339 5.79893 5 5.16304 5 4.5C5 3.83696 5.26339 3.20107 5.73223 2.73223C6.20107 2.26339 6.83696 2 7.5 2C11 2 12 7 12 7Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M12 7H16.5C17.163 7 17.7989 6.73661 18.2678 6.26777C18.7366 5.79893 19 5.16304 19 4.5C19 3.83696 18.7366 3.20107 18.2678 2.73223C17.7989 2.26339 17.163 2 16.5 2C13 2 12 7 12 7Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20 12V21.4C20 21.7314 19.7314 22 19.4 22H4.6C4.26863 22 4 21.7314 4 21.4V12" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M21.4 7H2.6C2.26863 7 2 7.26863 2 7.6V11.4C2 11.7314 2.26863 12 2.6 12H21.4C21.7314 12 22 11.7314 22 11.4V7.6C22 7.26863 21.7314 7 21.4 7Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12 22V7" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12 7H7.5C6.83696 7 6.20107 6.73661 5.73223 6.26777C5.26339 5.79893 5 5.16304 5 4.5C5 3.83696 5.26339 3.20107 5.73223 2.73223C6.20107 2.26339 6.83696 2 7.5 2C11 2 12 7 12 7Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M12 7H16.5C17.163 7 17.7989 6.73661 18.2678 6.26777C18.7366 5.79893 19 5.16304 19 4.5C19 3.83696 18.7366 3.20107 18.2678 2.73223C17.7989 2.26339 17.163 2 16.5 2C13 2 12 7 12 7Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -1,6 +1,6 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11 9L22 9" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M2 11L4.80662 7.84255C5.5657 6.98859 6.65372 6.5 7.79627 6.5L8 6.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M2 19.5007L7.5 19.5005L11.5 16.5007C11.5 16.5007 12.3091 15.9533 13.5 15.0006C16 13.0007 13.5 9.834 11 11.5002C8.96409 12.857 7 14.0007 7 14.0007" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M8 13.5V7C8 5.89543 8.89543 5 10 5H20C21.1046 5 22 5.89543 22 7V13C22 14.1046 21.1046 15 20 15H13.5" stroke="#F59100" stroke-width="1.5"/>
6
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 9L22 9" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M2 11L4.80662 7.84255C5.5657 6.98859 6.65372 6.5 7.79627 6.5L8 6.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M2 19.5007L7.5 19.5005L11.5 16.5007C11.5 16.5007 12.3091 15.9533 13.5 15.0006C16 13.0007 13.5 9.834 11 11.5002C8.96409 12.857 7 14.0007 7 14.0007" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M8 13.5V7C8 5.89543 8.89543 5 10 5H20C21.1046 5 22 5.89543 22 7V13C22 14.1046 21.1046 15 20 15H13.5" stroke="#F59100" stroke-width="1.5"/>
6
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3.2 14.2222V4C3.2 2.89543 4.09543 2 5.2 2H18.8C19.9046 2 20.8 2.89543 20.8 4V14.2222M3.2 14.2222H20.8M3.2 14.2222L1.71969 19.4556C1.35863 20.7321 2.31762 22 3.64418 22H20.3558C21.6824 22 22.6414 20.7321 22.2803 19.4556L20.8 14.2222" stroke="#F59100" stroke-width="1.5"/>
3
- <path d="M11 19L13 19" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.2 14.2222V4C3.2 2.89543 4.09543 2 5.2 2H18.8C19.9046 2 20.8 2.89543 20.8 4V14.2222M3.2 14.2222H20.8M3.2 14.2222L1.71969 19.4556C1.35863 20.7321 2.31762 22 3.64418 22H20.3558C21.6824 22 22.6414 20.7321 22.2803 19.4556L20.8 14.2222" stroke="#F59100" stroke-width="1.5"/>
3
+ <path d="M11 19L13 19" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3 9H21M9 21V9M5 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5C3 3.89543 3.89543 3 5 3Z" stroke="#F59100" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 9H21M9 21V9M5 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5C3 3.89543 3.89543 3 5 3Z" stroke="#F59100" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7 21C7 21 7.5 16.5 11 12.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M19.1297 4.24224L19.7243 10.4167C20.0984 14.3026 17.1849 17.7626 13.2989 18.1367C9.486 18.5039 6.03191 15.7168 5.66477 11.9039C5.29763 8.09099 8.09098 4.70237 11.9039 4.33523L18.475 3.70251C18.8048 3.67074 19.098 3.91239 19.1297 4.24224Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 21C7 21 7.5 16.5 11 12.5" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M19.1297 4.24224L19.7243 10.4167C20.0984 14.3026 17.1849 17.7626 13.2989 18.1367C9.486 18.5039 6.03191 15.7168 5.66477 11.9039C5.29763 8.09099 8.09098 4.70237 11.9039 4.33523L18.475 3.70251C18.8048 3.67074 19.098 3.91239 19.1297 4.24224Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7 11V7C7 5.67392 7.52678 4.40215 8.46447 3.46447C9.40215 2.52678 10.6739 2 12 2C13.3261 2 14.5979 2.52678 15.5355 3.46447C16.4732 4.40215 17 5.67392 17 7V11M5 11H19C20.1046 11 21 11.8954 21 13V20C21 21.1046 20.1046 22 19 22H5C3.89543 22 3 21.1046 3 20V13C3 11.8954 3.89543 11 5 11Z" stroke="#F59100" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 11V7C7 5.67392 7.52678 4.40215 8.46447 3.46447C9.40215 2.52678 10.6739 2 12 2C13.3261 2 14.5979 2.52678 15.5355 3.46447C16.4732 4.40215 17 5.67392 17 7V11M5 11H19C20.1046 11 21 11.8954 21 13V20C21 21.1046 20.1046 22 19 22H5C3.89543 22 3 21.1046 3 20V13C3 11.8954 3.89543 11 5 11Z" stroke="#F59100" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0.56031 0.558883C0.804286 0.314906 1.2 0.315109 1.4441 0.558883L6.4441 5.55888C6.68818 5.80296 6.68818 6.19859 6.4441 6.44267L1.4441 11.4427C1.20002 11.6867 0.804363 11.6867 0.56031 11.4427C0.316562 11.1986 0.316409 10.8029 0.56031 10.5589L5.1189 6.00127L0.56031 1.44267C0.316562 1.19859 0.316409 0.802865 0.56031 0.558883Z" fill="#364B9F"/>
3
- </svg>
1
+ <svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.56031 0.558883C0.804286 0.314906 1.2 0.315109 1.4441 0.558883L6.4441 5.55888C6.68818 5.80296 6.68818 6.19859 6.4441 6.44267L1.4441 11.4427C1.20002 11.6867 0.804363 11.6867 0.56031 11.4427C0.316562 11.1986 0.316409 10.8029 0.56031 10.5589L5.1189 6.00127L0.56031 1.44267C0.316562 1.19859 0.316409 0.802865 0.56031 0.558883Z" fill="#364B9F"/>
3
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M14.5 8.5C13.7193 8.29761 12.6344 8 11.7647 8C7.47636 8 4 10.6676 4 13.9583C4 15.8493 5.14794 17.5345 6.93824 18.6261L6.45318 20.2259C6.33635 20.6112 6.62471 21 7.02736 21H8.79147C8.92135 21 9.04773 20.9579 9.15161 20.8799L10.5462 19.8333H12.9831L14.3777 20.8799C14.4816 20.9579 14.608 21 14.7379 21H16.502C16.9046 21 17.193 20.6112 17.0761 20.2259L16.5911 18.6261C17.6577 17.9758 18.4963 17.1147 19 16.125" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M14.5 8.5L19 7L18.916 10.6283L21 11.5V15L19.0741 16" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M15.5 13C15.2239 13 15 12.7761 15 12.5C15 12.2239 15.2239 12 15.5 12C15.7761 12 16 12.2239 16 12.5C16 12.7761 15.7761 13 15.5 13Z" fill="#F59100" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M2 10C2 10 2 12.4 4 13" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M12.8008 7.75296C12.9298 7.38131 13 6.98136 13 6.56472C13 4.59598 11.433 3 9.5 3C7.567 3 6 4.59598 6 6.56472C6 7.50638 6.35849 8.36275 6.94404 9" stroke="#F59100" stroke-width="1.5" stroke-linejoin="round"/>
7
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.5 8.5C13.7193 8.29761 12.6344 8 11.7647 8C7.47636 8 4 10.6676 4 13.9583C4 15.8493 5.14794 17.5345 6.93824 18.6261L6.45318 20.2259C6.33635 20.6112 6.62471 21 7.02736 21H8.79147C8.92135 21 9.04773 20.9579 9.15161 20.8799L10.5462 19.8333H12.9831L14.3777 20.8799C14.4816 20.9579 14.608 21 14.7379 21H16.502C16.9046 21 17.193 20.6112 17.0761 20.2259L16.5911 18.6261C17.6577 17.9758 18.4963 17.1147 19 16.125" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.5 8.5L19 7L18.916 10.6283L21 11.5V15L19.0741 16" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M15.5 13C15.2239 13 15 12.7761 15 12.5C15 12.2239 15.2239 12 15.5 12C15.7761 12 16 12.2239 16 12.5C16 12.7761 15.7761 13 15.5 13Z" fill="#F59100" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M2 10C2 10 2 12.4 4 13" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M12.8008 7.75296C12.9298 7.38131 13 6.98136 13 6.56472C13 4.59598 11.433 3 9.5 3C7.567 3 6 4.59598 6 6.56472C6 7.50638 6.35849 8.36275 6.94404 9" stroke="#F59100" stroke-width="1.5" stroke-linejoin="round"/>
7
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M14 9.01L14.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M8 8.01L8.01 7.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M8 14.01L8.01 13.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M6 19L2.23626 3.0041C2.13087 2.55618 2.54815 2.16122 2.98961 2.29106L19 7" stroke="#F59100" stroke-width="1.5"/>
6
- <path d="M18.8545 7.4043C19.1555 6.56996 20.0458 6.08298 20.9248 6.30273L21.0957 6.35449C21.8747 6.6353 22.3511 7.42953 22.2324 8.24902L22.1982 8.4248C21.6281 10.7054 19.8426 13.5017 17.5215 15.9424L17.0498 16.4248C14.5564 18.9182 11.2855 21.2083 7.73828 22.1211L7.39355 22.2051C6.51077 22.4088 5.62957 21.9059 5.34375 21.0664L5.29492 20.8936C5.07774 19.952 5.6649 19.0123 6.60645 18.7949L7.13574 18.6582C9.78087 17.9055 12.418 16.1074 14.5752 13.9502L15.002 13.5127C17.0858 11.3178 18.4353 9.04559 18.8027 7.57617L18.8545 7.4043Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round"/>
7
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14 9.01L14.01 8.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M8 8.01L8.01 7.99889" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8 14.01L8.01 13.9989" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6 19L2.23626 3.0041C2.13087 2.55618 2.54815 2.16122 2.98961 2.29106L19 7" stroke="#F59100" stroke-width="1.5"/>
6
+ <path d="M18.8545 7.4043C19.1555 6.56996 20.0458 6.08298 20.9248 6.30273L21.0957 6.35449C21.8747 6.6353 22.3511 7.42953 22.2324 8.24902L22.1982 8.4248C21.6281 10.7054 19.8426 13.5017 17.5215 15.9424L17.0498 16.4248C14.5564 18.9182 11.2855 21.2083 7.73828 22.1211L7.39355 22.2051C6.51077 22.4088 5.62957 21.9059 5.34375 21.0664L5.29492 20.8936C5.07774 19.952 5.6649 19.0123 6.60645 18.7949L7.13574 18.6582C9.78087 17.9055 12.418 16.1074 14.5752 13.9502L15.002 13.5127C17.0858 11.3178 18.4353 9.04559 18.8027 7.57617L18.8545 7.4043Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round"/>
7
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3 20.2895V5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V15C21 16.1046 20.1046 17 19 17H7.96125C7.35368 17 6.77906 17.2762 6.39951 17.7506L4.06852 20.6643C3.71421 21.1072 3 20.8567 3 20.2895Z" stroke="#F59100" stroke-width="1.5"/>
3
- <path d="M10.5 10H8.5C7.94772 10 7.5 9.55228 7.5 9V8C7.5 7.44772 7.94772 7 8.5 7H9.5C10.0523 7 10.5 7.44772 10.5 8V10ZM10.5 10C10.5 11 9.5 12 8.5 13" stroke="#F59100" stroke-width="1.5" stroke-linecap="round"/>
4
- <path d="M16.5 10H14.5C13.9477 10 13.5 9.55228 13.5 9V8C13.5 7.44772 13.9477 7 14.5 7H15.5C16.0523 7 16.5 7.44772 16.5 8V10ZM16.5 10C16.5 11 15.5 12 14.5 13" stroke="#F59100" stroke-width="1.5" stroke-linecap="round"/>
5
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 20.2895V5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V15C21 16.1046 20.1046 17 19 17H7.96125C7.35368 17 6.77906 17.2762 6.39951 17.7506L4.06852 20.6643C3.71421 21.1072 3 20.8567 3 20.2895Z" stroke="#F59100" stroke-width="1.5"/>
3
+ <path d="M10.5 10H8.5C7.94772 10 7.5 9.55228 7.5 9V8C7.5 7.44772 7.94772 7 8.5 7H9.5C10.0523 7 10.5 7.44772 10.5 8V10ZM10.5 10C10.5 11 9.5 12 8.5 13" stroke="#F59100" stroke-width="1.5" stroke-linecap="round"/>
4
+ <path d="M16.5 10H14.5C13.9477 10 13.5 9.55228 13.5 9V8C13.5 7.44772 13.9477 7 14.5 7H15.5C16.0523 7 16.5 7.44772 16.5 8V10ZM16.5 10C16.5 11 15.5 12 14.5 13" stroke="#F59100" stroke-width="1.5" stroke-linecap="round"/>
5
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M16.0614 10.4037L14 17L10 17L7.93865 10.4037C7.35085 8.52273 7.72417 6.47307 8.93738 4.92015L11.5272 1.6052C11.7674 1.29772 12.2326 1.29772 12.4728 1.6052L15.0626 4.92015C16.2758 6.47307 16.6491 8.52273 16.0614 10.4037Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M10 20C10 22 12 23 12 23C12 23 14 22 14 20" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M8.5 12.5C5 15 7 19 7 19L10 17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M15.9316 12.5C19.4316 15 17.4316 19 17.4316 19L14.4316 17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M12 11C10.8954 11 10 10.1046 10 9C10 7.89543 10.8954 7 12 7C13.1046 7 14 7.89543 14 9C14 10.1046 13.1046 11 12 11Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.0614 10.4037L14 17L10 17L7.93865 10.4037C7.35085 8.52273 7.72417 6.47307 8.93738 4.92015L11.5272 1.6052C11.7674 1.29772 12.2326 1.29772 12.4728 1.6052L15.0626 4.92015C16.2758 6.47307 16.6491 8.52273 16.0614 10.4037Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10 20C10 22 12 23 12 23C12 23 14 22 14 20" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.5 12.5C5 15 7 19 7 19L10 17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M15.9316 12.5C19.4316 15 17.4316 19 17.4316 19L14.4316 17" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M12 11C10.8954 11 10 10.1046 10 9C10 7.89543 10.8954 7 12 7C13.1046 7 14 7.89543 14 9C14 10.1046 13.1046 11 12 11Z" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M6 4H9C9 4 9 7 12 7C15 7 15 4 15 4H18M18 11V19.4C18 19.7314 17.7314 20 17.4 20H6.6C6.26863 20 6 19.7314 6 19.4L6 11" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M18 4L22.4429 5.77717C22.7506 5.90023 22.9002 6.24942 22.7772 6.55709L21.1509 10.6228C21.0597 10.8506 20.8391 11 20.5938 11H18" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M5.99993 4L1.55701 5.77717C1.24934 5.90023 1.09969 6.24942 1.22276 6.55709L2.84906 10.6228C2.94018 10.8506 3.1608 11 3.40615 11H5.99993" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 4H9C9 4 9 7 12 7C15 7 15 4 15 4H18M18 11V19.4C18 19.7314 17.7314 20 17.4 20H6.6C6.26863 20 6 19.7314 6 19.4L6 11" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M18 4L22.4429 5.77717C22.7506 5.90023 22.9002 6.24942 22.7772 6.55709L21.1509 10.6228C21.0597 10.8506 20.8391 11 20.5938 11H18" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M5.99993 4L1.55701 5.77717C1.24934 5.90023 1.09969 6.24942 1.22276 6.55709L2.84906 10.6228C2.94018 10.8506 3.1608 11 3.40615 11H5.99993" stroke="#F59100" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -1,8 +1,8 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M20.4851 3H16.4934L16.9934 8C16.9934 8 17.9934 9 19.4934 9C20.5704 9 21.3038 8.48445 21.6317 8.1937C21.7624 8.07782 21.8102 7.90091 21.7815 7.72861L21.077 3.50136C21.0288 3.21205 20.7784 3 20.4851 3Z" stroke="#F59100" stroke-width="1.5"/>
3
- <path d="M16.4934 3L16.9934 8C16.9934 8 15.9934 9 14.4934 9C12.9934 9 11.9934 8 11.9934 8V3H16.4934Z" stroke="#F59100" stroke-width="1.5"/>
4
- <path d="M11.9934 3V8C11.9934 8 10.9934 9 9.49341 9C7.99341 9 6.99341 8 6.99341 8L7.49341 3H11.9934Z" stroke="#F59100" stroke-width="1.5"/>
5
- <path d="M7.49325 3H3.50152C3.20822 3 2.9579 3.21205 2.90969 3.50136L2.20514 7.72862C2.17643 7.90091 2.22426 8.07782 2.35495 8.1937C2.68288 8.48445 3.4162 9 4.49323 9C5.99323 9 6.99325 8 6.99325 8L7.49325 3Z" stroke="#F59100" stroke-width="1.5"/>
6
- <path d="M3 9V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V9" stroke="#F59100" stroke-width="1.5"/>
7
- <path d="M14.8333 21V15C14.8333 13.8954 13.9378 13 12.8333 13H10.8333C9.72868 13 8.83325 13.8954 8.83325 15V21" stroke="#F59100" stroke-width="1.5" stroke-miterlimit="16"/>
8
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.4851 3H16.4934L16.9934 8C16.9934 8 17.9934 9 19.4934 9C20.5704 9 21.3038 8.48445 21.6317 8.1937C21.7624 8.07782 21.8102 7.90091 21.7815 7.72861L21.077 3.50136C21.0288 3.21205 20.7784 3 20.4851 3Z" stroke="#F59100" stroke-width="1.5"/>
3
+ <path d="M16.4934 3L16.9934 8C16.9934 8 15.9934 9 14.4934 9C12.9934 9 11.9934 8 11.9934 8V3H16.4934Z" stroke="#F59100" stroke-width="1.5"/>
4
+ <path d="M11.9934 3V8C11.9934 8 10.9934 9 9.49341 9C7.99341 9 6.99341 8 6.99341 8L7.49341 3H11.9934Z" stroke="#F59100" stroke-width="1.5"/>
5
+ <path d="M7.49325 3H3.50152C3.20822 3 2.9579 3.21205 2.90969 3.50136L2.20514 7.72862C2.17643 7.90091 2.22426 8.07782 2.35495 8.1937C2.68288 8.48445 3.4162 9 4.49323 9C5.99323 9 6.99325 8 6.99325 8L7.49325 3Z" stroke="#F59100" stroke-width="1.5"/>
6
+ <path d="M3 9V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V9" stroke="#F59100" stroke-width="1.5"/>
7
+ <path d="M14.8333 21V15C14.8333 13.8954 13.9378 13 12.8333 13H10.8333C9.72868 13 8.83325 13.8954 8.83325 15V21" stroke="#F59100" stroke-width="1.5" stroke-miterlimit="16"/>
8
+ </svg>