File size: 117,187 Bytes
d4159b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"/><title>Dream Machine - Ubiquiti Store United States</title><meta name="description" content="All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks."/><meta property="og:site_name" content="Ubiquiti Store United States"/><meta property="og:url" content="https://store.ui.com/us/en/products/udm"/><link rel="canonical" href="https://store.ui.com/us/en/products/udm"/><meta property="og:title" content="Dream Machine - Ubiquiti Store United States"/><meta property="og:description" content="All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks."/><meta property="og:type" content="website"/><meta property="og:image" content="https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png"/><meta property="og:image:width" content="1500"/><meta property="og:image:height" content="1500"/><link rel="manifest" href="https://assets.ecomm.ui.com/static/seo/manifest.json"/><meta name="twitter:card" content="summary"/><meta name="twitter:site" content="@ubiquiti"/><meta name="twitter:title" content="Dream Machine - Ubiquiti Store United States"/><meta name="twitter:description" content="All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks."/><script id="product-jsonld" type="application/ld+json">{"@context":"https://schema.org","@type":"Product","brand":{"@type":"Brand","name":"Ubiquiti"},"name":"Dream Machine","sku":"UDM","description":"All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks.","url":"https://store.ui.com/us/en/products/udm","image":{"@type":"ImageObject","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","width":"1500","height":"1500"},"offers":{"@type":"Offer","availability":"https://schema.org/InStock","priceSpecification":{"@type":"PriceSpecification","price":299,"priceCurrency":"USD","valueAddedTaxIncluded":false}}}</script><link rel="preload" as="image" imagesrcset="https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=16 16w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=32 32w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=48 48w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=64 64w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=96 96w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=128 128w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=256 256w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=384 384w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=640 640w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=750 750w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=828 828w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1080 1080w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1200 1200w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1920 1920w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=2048 2048w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=3840 3840w" imagesizes="100%"/><meta name="next-head-count" content="20"/><link rel="icon" href="https://assets.ecomm.ui.com/static/favicon.ico?v=2"/><link rel="preconnect" href="https://ecomm.svc.ui.com"/><link rel="preload" href="https://assets.ecomm.ui.com/static/fonts/ui-sans-v9-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://assets.ecomm.ui.com/static/fonts/ui-sans-v9-bold.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><script src="https://cdn.cookielaw.org/consent/0d7a8b3a-521f-4127-bc30-a62ee244e11d/OtAutoBlock.js"></script><script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-language="en" data-domain-script="0d7a8b3a-521f-4127-bc30-a62ee244e11d"></script><script id="embed-override" data-nscript="beforeInteractive">var params=new URL(document.location).searchParams,cookies=new Map(document.cookie.split(";").map((e=>e.trim().split("="))));if("true"===params.get("appview")||"true"===cookies.get("appview")){var styles=document.createElement("style");styles.setAttribute("type","text/css"),styles.textContent="#footer,#onetrust-consent-sdk{display:none !important;} * { -moz-user-select: none; -webkit-user-select: none; user-select: none;} input {-moz-user-select: auto;-webkit-user-select: auto;user-select: auto; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color: transparent;}",document.head.appendChild(styles)}</script><link rel="preload" href="https://assets.ecomm.ui.com/_next/static/css/2d2116522f0bff26.css" as="style"/><link rel="stylesheet" href="https://assets.ecomm.ui.com/_next/static/css/2d2116522f0bff26.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="https://assets.ecomm.ui.com/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/webpack-78c19b53e925e839.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/framework-560765ab0625ba27.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/main-c775d51342bf6018.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/pages/_app-32d8501094f92208.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/7973-9c26edfdf0722903.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/4480-08b003c125497cd5.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/3169-7517f05e39fbf8f0.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/8368-e3983ac38dded4c4.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/98-b07a134b35442ba7.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/8586-e1a7ad1d97ad2cdf.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/5391-2628cc926b6cb681.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/9239-5c679e9e69baae82.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/chunks/pages/%5Bstore%5D/%5Blanguage%5D/products/%5Bproduct%5D-881184d8d2836a98.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/e407e7695/_buildManifest.js" defer=""></script><script src="https://assets.ecomm.ui.com/_next/static/e407e7695/_ssgManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">.rWkoO{height:24px;}/*!sc*/
data-styled.g8[id="sc-148ud9r-2"]{content:"rWkoO,"}/*!sc*/
.hmPkBv{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/hamburger.010c2eaf.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/hamburger.010c2eaf.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:18 / 15;height:15px;width:auto;}/*!sc*/
.cMevfu{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/logo.3b4eda83.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/logo.3b4eda83.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:17 / 20;height:20px;width:auto;}/*!sc*/
.kHjCkM{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/cartEmpty.3b8acae8.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/cartEmpty.3b8acae8.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:20 / 19;height:18px;width:auto;}/*!sc*/
.gdRyEj{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/carouselArrow.06a66f30.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/carouselArrow.06a66f30.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:10 / 16;height:16px;width:auto;}/*!sc*/
.eMMjwB{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/minus.e0c490d3.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/minus.e0c490d3.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:8 / 8;height:8px;width:auto;}/*!sc*/
.kQQcEL{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/plus.37e25460.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/plus.37e25460.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:8 / 8;height:8px;width:auto;}/*!sc*/
.hFCCJt{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/link.06e0d107.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/link.06e0d107.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:14 / 14;height:14px;width:auto;}/*!sc*/
.jieKVx{-webkit-mask:url(https://assets.ecomm.ui.com/_next/static/media/carouselArrow.06a66f30.svg) 50% 50% no-repeat;mask:url(https://assets.ecomm.ui.com/_next/static/media/carouselArrow.06a66f30.svg) 50% 50% no-repeat;-webkit-mask-size:contain;mask-size:contain;background-color:currentcolor;aspect-ratio:12 / 12;height:12px;width:auto;}/*!sc*/
data-styled.g13[id="sc-1v0wbkx-0"]{content:"hmPkBv,cMevfu,kHjCkM,gdRyEj,eMMjwB,kQQcEL,hFCCJt,jieKVx,"}/*!sc*/
.dPbEPC{height:auto;margin:0 auto;width:100%;-webkit-flex:1 0 100%;-ms-flex:1 0 100%;flex:1 0 100%;max-width:1260px;box-sizing:border-box;padding:0 32px;margin:0 auto;}/*!sc*/
@media (max-width:832px){.dPbEPC{padding:0 16px;}}/*!sc*/
.jOcmJe{height:auto;margin:0 auto;width:100%;-webkit-flex:1 0 100%;-ms-flex:1 0 100%;flex:1 0 100%;max-width:1044px;box-sizing:border-box;padding:0 32px;margin:48px auto;}/*!sc*/
@media (max-width:832px){.jOcmJe{padding:0 16px;}}/*!sc*/
data-styled.g24[id="sc-jucepg-0"]{content:"dPbEPC,jOcmJe,"}/*!sc*/
.hnFHNp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g25[id="sc-jucepg-1"]{content:"hnFHNp,"}/*!sc*/
.iwrrep{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;position:relative;}/*!sc*/
data-styled.g26[id="sc-tjj6wi-0"]{content:"iwrrep,"}/*!sc*/
.KnRnH{padding:6px 16px;cursor:pointer;font-family:inherit;font-size:14px;line-height:1.5;font-weight:normal;border-radius:4px;}/*!sc*/
.KnRnH.KnRnH:active{opacity:0.9;}/*!sc*/
.klcWbH{padding:6px 16px;cursor:pointer;font-family:inherit;background:#006FFF;color:#FFFFFF;border:1px solid #006FFF;-webkit-transition:background 0.3s;transition:background 0.3s;font-size:14px;line-height:1.5;font-weight:normal;border-radius:4px;}/*!sc*/
.klcWbH.klcWbH:active{opacity:0.9;}/*!sc*/
.klcWbH.klcWbH:hover{color:#FFFFFF;border-color:#338CFF;background-color:#338CFF;}/*!sc*/
data-styled.g28[id="sc-tjj6wi-2"]{content:"KnRnH,klcWbH,"}/*!sc*/
.hQIpuO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:1095px){.hQIpuO{display:none;}}/*!sc*/
data-styled.g30[id="sc-1rtpwdy-0"]{content:"hQIpuO,"}/*!sc*/
.gNOfvo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:8px;padding:8px 12px;border-radius:4px;font-size:13px;line-height:1;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;-webkit-transition:background-color 0.3s ease 0s;transition:background-color 0.3s ease 0s;color:#FFFFFF;background-color:#006FFF;border:1px solid #595959;background-color:transparent;color:#393939;}/*!sc*/
.gNOfvo:focus,.gNOfvo:hover{color:#FFFFFF;background-color:#338CFF;}/*!sc*/
.gNOfvo:focus,.gNOfvo:hover{color:#006FFF;}/*!sc*/
.gNOfvo:focus,.gNOfvo:hover{background-color:transparent;border-color:#006FFF;}/*!sc*/
.kNQybC{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:8px;padding:8px 12px;border-radius:4px;font-size:13px;line-height:1;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;-webkit-transition:background-color 0.3s ease 0s;transition:background-color 0.3s ease 0s;color:#FFFFFF;background-color:#006FFF;}/*!sc*/
.kNQybC:focus,.kNQybC:hover{color:#FFFFFF;background-color:#338CFF;}/*!sc*/
data-styled.g31[id="sc-1rtpwdy-1"]{content:"gNOfvo,kNQybC,"}/*!sc*/
.fbcawe{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;position:relative;height:100%;}/*!sc*/
data-styled.g32[id="sc-1rtpwdy-2"]{content:"fbcawe,"}/*!sc*/
.jZspkH{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;-webkit-transition:color 0.2s linear;transition:color 0.2s linear;font-size:13px;line-height:1.4;}/*!sc*/
data-styled.g33[id="sc-1rtpwdy-3"]{content:"jZspkH,"}/*!sc*/
.jWyxfa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border:none;background:none;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:none;white-space:nowrap;height:100%;cursor:pointer;padding:0;color:#393939;position:relative;}/*!sc*/
.jWyxfa:hover .sc-1rtpwdy-3,.jWyxfa:focus .sc-1rtpwdy-3,.jWyxfa:hover .sc-1rtpwdy-5,.jWyxfa:focus .sc-1rtpwdy-5{color:#006FFF;}/*!sc*/
@media (min-width:1096px){.jWyxfa{display:none;}}/*!sc*/
.cTLEQt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border:none;background:none;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:none;white-space:nowrap;height:100%;cursor:pointer;padding:0;color:#393939;position:relative;}/*!sc*/
.cTLEQt:hover .sc-1rtpwdy-3,.cTLEQt:focus .sc-1rtpwdy-3,.cTLEQt:hover .sc-1rtpwdy-5,.cTLEQt:focus .sc-1rtpwdy-5{color:#006FFF;}/*!sc*/
data-styled.g36[id="sc-1rtpwdy-6"]{content:"jWyxfa,cTLEQt,"}/*!sc*/
.bkMIOO{height:18px;width:18px;border-radius:50%;overflow:hidden;position:relative;}/*!sc*/
data-styled.g37[id="sc-u29cw5-0"]{content:"bkMIOO,"}/*!sc*/
.bUFGjV{width:100%;aspect-ratio:1;position:absolute;overflow:hidden;border-radius:6px;background-color:rgba(237 237 240 / 1);}/*!sc*/
.bUFGjV::after{position:absolute;inset:0;width:140%;height:200%;-webkit-transform:translate(-100%,-100%) rotate(45deg);-ms-transform:translate(-100%,-100%) rotate(45deg);transform:translate(-100%,-100%) rotate(45deg);background-image:linear-gradient( 90deg,rgba(246 246 248 / 0) 0%,rgba(246 246 248 / 0.2) 20%,rgba(246 246 248 / 1) 60%,rgba(246 246 248 / 0) 100% );-webkit-animation:shimmer 2s infinite;animation:shimmer 2s infinite;content:"";}/*!sc*/
@-webkit-keyframes shimmer{100%{-webkit-transform:translate(50%,50%) rotate(45deg);-ms-transform:translate(50%,50%) rotate(45deg);transform:translate(50%,50%) rotate(45deg);}}/*!sc*/
@keyframes shimmer{100%{-webkit-transform:translate(50%,50%) rotate(45deg);-ms-transform:translate(50%,50%) rotate(45deg);transform:translate(50%,50%) rotate(45deg);}}/*!sc*/
data-styled.g38[id="sc-u29cw5-1"]{content:"bUFGjV,"}/*!sc*/
@media (max-width:1095px){.hXDYTu{padding:0;}}/*!sc*/
data-styled.g39[id="sc-2kkf5o-0"]{content:"hXDYTu,"}/*!sc*/
.uDlAl{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g40[id="sc-2kkf5o-1"]{content:"uDlAl,"}/*!sc*/
.kzBJij{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:48px;cursor:pointer;}/*!sc*/
.kzBJij .sc-2kkf5o-2{color:#393939;}/*!sc*/
.kzBJij:hover{color:#006FFF;}/*!sc*/
data-styled.g42[id="sc-2kkf5o-3"]{content:"kzBJij,"}/*!sc*/
.gQFFfM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:15px;}/*!sc*/
@media (max-width:1095px){.gQFFfM{margin-right:16px;}}/*!sc*/
data-styled.g43[id="sc-2kkf5o-4"]{content:"gQFFfM,"}/*!sc*/
.cqMbLl{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;height:48px;gap:20px;margin-left:20px;}/*!sc*/
@media (max-width:1140px){.cqMbLl{gap:16px;margin-left:16px;}}/*!sc*/
@media (max-width:1095px){.cqMbLl{display:none;}}/*!sc*/
.esaKqo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;height:48px;gap:10px;margin-left:20px;}/*!sc*/
@media (max-width:1140px){.esaKqo{gap:16px;margin-left:16px;}}/*!sc*/
data-styled.g44[id="sc-2kkf5o-5"]{content:"cqMbLl,esaKqo,"}/*!sc*/
.koEmXI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px;}/*!sc*/
data-styled.g45[id="sc-2kkf5o-6"]{content:"koEmXI,"}/*!sc*/
.cvURDH{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;height:48px;color:#393939;margin-left:16px;}/*!sc*/
.cojKNh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;height:48px;color:#393939;}/*!sc*/
data-styled.g46[id="sc-2kkf5o-7"]{content:"cvURDH,cojKNh,"}/*!sc*/
.gTuIuY{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden;}/*!sc*/
data-styled.g50[id="sc-2kkf5o-11"]{content:"gTuIuY,"}/*!sc*/
.dBkoKG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:1095px){.dBkoKG{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);}}/*!sc*/
data-styled.g51[id="sc-2kkf5o-12"]{content:"dBkoKG,"}/*!sc*/
.ducRtB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-pack:unset;-webkit-justify-content:unset;-ms-flex-pack:unset;justify-content:unset;}/*!sc*/
data-styled.g54[id="sc-2kkf5o-15"]{content:"ducRtB,"}/*!sc*/
.bsssyY{margin:0;}/*!sc*/
data-styled.g55[id="sc-2kkf5o-19"]{content:"bsssyY,"}/*!sc*/
.ftvexz{position:relative;}/*!sc*/
data-styled.g56[id="sc-2kkf5o-20"]{content:"ftvexz,"}/*!sc*/
.YQwVX{position:relative;height:48px;}/*!sc*/
data-styled.g57[id="sc-2kkf5o-21"]{content:"YQwVX,"}/*!sc*/
.hkcCnd{z-index:9000;position:static;top:0;width:100%;height:48px;background-color:#FFFFFF;-webkit-backdrop-filter:none;backdrop-filter:none;box-shadow:0 0 0 1px #FFFFFF;}/*!sc*/
data-styled.g59[id="sc-2kkf5o-23"]{content:"hkcCnd,"}/*!sc*/
.gNUlWQ{opacity:0;position:absolute;top:50%;left:50%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:1px;min-width:14px;height:14px;background:#006FFF;border-radius:14px;box-shadow:0 0 0 1px #FFFFFF;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:bold;font-size:9px;line-height:14px;color:#FFFFFF;}/*!sc*/
data-styled.g60[id="sc-2kkf5o-24"]{content:"gNUlWQ,"}/*!sc*/
.bQaAld{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;aspect-ratio:1;height:100%;margin:0 auto;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;position:relative;aspect-ratio:auto;width:100%;}/*!sc*/
.bQaAld:hover .sc-g11oxh-0{opacity:1;}/*!sc*/
.cokmEg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;aspect-ratio:1;height:100%;margin:0 auto;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;position:relative;}/*!sc*/
.cokmEg:hover .sc-g11oxh-0{opacity:1;}/*!sc*/
data-styled.g73[id="sc-g11oxh-2"]{content:"bQaAld,cokmEg,"}/*!sc*/
.lbmaEX{top:0;width:100%;aspect-ratio:1;position:absolute;overflow:hidden;border-radius:6px;background-color:rgba(237 237 240 / 1);aspect-ratio:auto;height:100%;}/*!sc*/
.lbmaEX::after{position:absolute;inset:0;width:140%;height:200%;-webkit-transform:translate(-100%,-100%) rotate(45deg);-ms-transform:translate(-100%,-100%) rotate(45deg);transform:translate(-100%,-100%) rotate(45deg);background-image:linear-gradient( 90deg,rgba(246 246 248 / 0) 0%,rgba(246 246 248 / 0.2) 20%,rgba(246 246 248 / 1) 60%,rgba(246 246 248 / 0) 100% );-webkit-animation:shimmer 2s infinite;animation:shimmer 2s infinite;content:"";}/*!sc*/
@-webkit-keyframes shimmer{100%{-webkit-transform:translate(50%,50%) rotate(45deg);-ms-transform:translate(50%,50%) rotate(45deg);transform:translate(50%,50%) rotate(45deg);}}/*!sc*/
@keyframes shimmer{100%{-webkit-transform:translate(50%,50%) rotate(45deg);-ms-transform:translate(50%,50%) rotate(45deg);transform:translate(50%,50%) rotate(45deg);}}/*!sc*/
.eACHPn{top:0;width:100%;aspect-ratio:1;position:absolute;overflow:hidden;border-radius:6px;background-color:rgba(237 237 240 / 1);}/*!sc*/
.eACHPn::after{position:absolute;inset:0;width:140%;height:200%;-webkit-transform:translate(-100%,-100%) rotate(45deg);-ms-transform:translate(-100%,-100%) rotate(45deg);transform:translate(-100%,-100%) rotate(45deg);background-image:linear-gradient( 90deg,rgba(246 246 248 / 0) 0%,rgba(246 246 248 / 0.2) 20%,rgba(246 246 248 / 1) 60%,rgba(246 246 248 / 0) 100% );-webkit-animation:shimmer 2s infinite;animation:shimmer 2s infinite;content:"";}/*!sc*/
@-webkit-keyframes shimmer{100%{-webkit-transform:translate(50%,50%) rotate(45deg);-ms-transform:translate(50%,50%) rotate(45deg);transform:translate(50%,50%) rotate(45deg);}}/*!sc*/
@keyframes shimmer{100%{-webkit-transform:translate(50%,50%) rotate(45deg);-ms-transform:translate(50%,50%) rotate(45deg);transform:translate(50%,50%) rotate(45deg);}}/*!sc*/
data-styled.g74[id="sc-g11oxh-3"]{content:"lbmaEX,eACHPn,"}/*!sc*/
.fLcxcI{height:100%;margin:auto;position:relative;width:calc(100% - 0px);}/*!sc*/
.fLcxcI.fLcxcI > span{height:100% !important;}/*!sc*/
.fLcxcI > img{width:100%;height:100%;display:block;object-fit:contain;}/*!sc*/
.iEpHsj{margin:auto;position:relative;width:calc(60px - 0px);}/*!sc*/
.iEpHsj > img{width:100%;height:100%;display:block;}/*!sc*/
data-styled.g75[id="sc-g11oxh-4"]{content:"fLcxcI,iEpHsj,"}/*!sc*/
.jasDXe{padding:10px 15px;width:40px;height:40px;width:auto;}/*!sc*/
data-styled.g310[id="sc-190ba8g-0"]{content:"jasDXe,"}/*!sc*/
.dDvBIF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:8px;}/*!sc*/
data-styled.g311[id="sc-190ba8g-1"]{content:"dDvBIF,"}/*!sc*/
.fizWrq{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:2px;}/*!sc*/
data-styled.g377[id="sc-36jhez-0"]{content:"fizWrq,"}/*!sc*/
.ktubTO{background-color:#F6F6F8;border-radius:4px;height:100%;min-height:32px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;max-width:108px;}/*!sc*/
data-styled.g379[id="sc-36jhez-2"]{content:"ktubTO,"}/*!sc*/
.gsGEzj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:none;border:none;width:32px;height:100%;cursor:pointer;position:absolute;color:#838691;}/*!sc*/
data-styled.g380[id="sc-36jhez-3"]{content:"gsGEzj,"}/*!sc*/
.cMtMZn{right:0;}/*!sc*/
data-styled.g381[id="sc-36jhez-4"]{content:"cMtMZn,"}/*!sc*/
.dHxJkq{left:0;}/*!sc*/
data-styled.g382[id="sc-36jhez-5"]{content:"dHxJkq,"}/*!sc*/
.iAILpc{border:none;height:100%;background:0 0;font-size:14px;line-height:1.43;color:rgba(0,0,0,0.85);max-width:100%;text-align:center;padding:none;}/*!sc*/
.iAILpc:focus{outline:none;border-color:none;}/*!sc*/
data-styled.g383[id="sc-36jhez-6"]{content:"iAILpc,"}/*!sc*/
.jLETBV{border-top:1px solid #dbdce1;}/*!sc*/
data-styled.g408[id="sc-1dc4qc7-0"]{content:"jLETBV,"}/*!sc*/
.cIKGyl{display:none;padding:0 10px;}/*!sc*/
data-styled.g409[id="sc-1dc4qc7-1"]{content:"cIKGyl,"}/*!sc*/
.gTSaED{padding:10px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:-webkit-transform 0.2s ease-in-out;-webkit-transition:transform 0.2s ease-in-out;transition:transform 0.2s ease-in-out;}/*!sc*/
data-styled.g410[id="sc-1dc4qc7-2"]{content:"gTSaED,"}/*!sc*/
.bUBMpo{border-bottom:1px solid #dbdce1;}/*!sc*/
data-styled.g411[id="sc-1dc4qc7-3"]{content:"bUBMpo,"}/*!sc*/
.jLKraW{font-weight:700;font-size:18px;line-height:2;color:rgba(0,0,0,0.65);padding:15px 15px 15px 10px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g412[id="sc-1dc4qc7-4"]{content:"jLKraW,"}/*!sc*/
.hBNuJx{color:rgba(0,0,0,0.85);}/*!sc*/
@media (max-width:832px){.hBNuJx{-webkit-flex-basis:60%;-ms-flex-preferred-size:60%;flex-basis:60%;overflow-x:auto;}}/*!sc*/
.hBNuJx table{width:100%;border-collapse:collapse;margin-bottom:20px;}/*!sc*/
.hBNuJx td{vertical-align:top;padding:8px 28px 8px 0;font-size:14px;line-height:20px;}/*!sc*/
@media (max-width:492px){.hBNuJx td{padding-left:0;padding-right:0;}}/*!sc*/
.hBNuJx th{font-size:16px;line-height:24px;text-transform:none;text-align:left;padding:20px 0;}/*!sc*/
.hBNuJx th::before{content:"";display:block;border-top:1px solid #DBDCE1;padding-top:20px;}/*!sc*/
@media (max-width:492px){.hBNuJx th::before{margin:0;}}/*!sc*/
.hBNuJx table tr:first-child th{padding-top:0;padding-right:10px;}/*!sc*/
.hBNuJx table tr:first-child th::before{display:none;}/*!sc*/
.hBNuJx tr td:nth-child(1){min-width:300px;font-weight:700;}/*!sc*/
@media (max-width:832px){.hBNuJx tr td:nth-child(1){min-width:250px;}}/*!sc*/
@media (max-width:492px){.hBNuJx tr td:nth-child(1){min-width:0;padding-right:10px;}}/*!sc*/
.hBNuJx tr:hover td{background-color:#FBFBFB;}/*!sc*/
.hBNuJx tr td:nth-child(2){color:rgba(0,0,0,0.65);}/*!sc*/
.hBNuJx h6{font-size:0.875em;font-weight:600;margin:0 0 16px;}/*!sc*/
.hBNuJx ul{list-style:none;padding:0;margin-bottom:24px;}/*!sc*/
.hBNuJx li{margin-bottom:8px;}/*!sc*/
.hBNuJx .grid{display:grid;grid-auto-flow:row;grid-template-columns:repeat(3,1fr);gap:30px;line-height:1.5;}/*!sc*/
@media (max-width:832px){.hBNuJx .grid{grid-template-columns:repeat(2,1fr);}}/*!sc*/
@media (max-width:492px){.hBNuJx .grid{display:block;}}/*!sc*/
.hBNuJx .smaller{font-size:0.875em;}/*!sc*/
.hBNuJx .add16top{margin-top:16px;}/*!sc*/
.hBNuJx .add24top{margin-top:24px;}/*!sc*/
.hBNuJx .lighter{color:rgba(0,0,0,0.45);}/*!sc*/
.hBNuJx .smaller.lighter.add16top{margin-left:28px;}/*!sc*/
data-styled.g439[id="sc-khrtyt-4"]{content:"hBNuJx,"}/*!sc*/
.hyRxVn{margin-top:40px;}/*!sc*/
@media (max-width:832px){.hyRxVn{margin-top:30px;}}/*!sc*/
data-styled.g442[id="sc-1da3k-0"]{content:"hyRxVn,"}/*!sc*/
.kyebWu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:44px;margin-bottom:60px;}/*!sc*/
@media (max-width:832px){.kyebWu{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:0;margin-bottom:0;}}/*!sc*/
data-styled.g443[id="sc-1da3k-1"]{content:"kyebWu,"}/*!sc*/
.cdPjBT{position:-webkit-sticky;position:sticky;top:48px;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;max-width:500px;width:0;}/*!sc*/
@media (max-width:832px){.cdPjBT{display:none;}}/*!sc*/
data-styled.g444[id="sc-1da3k-2"]{content:"cdPjBT,"}/*!sc*/
.jzOLyX{width:440px;}/*!sc*/
@media (max-width:832px){.jzOLyX{width:100%;}}/*!sc*/
data-styled.g445[id="sc-1da3k-3"]{content:"jzOLyX,"}/*!sc*/
.ecCwrQ{font-size:32px;line-height:39px;color:rgba(0,0,0,0.85);font-weight:700;margin:0 0 4px;}/*!sc*/
data-styled.g446[id="sc-1da3k-4"]{content:"ecCwrQ,"}/*!sc*/
.gBfHgW{height:Infinitypx;position:relative;aspect-ratio:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 auto;width:100%;}/*!sc*/
data-styled.g447[id="sc-1da3k-5"]{content:"gBfHgW,"}/*!sc*/
.kEZmxq{margin-bottom:60px;}/*!sc*/
@media (max-width:832px){.kEZmxq{margin-bottom:40px;}}/*!sc*/
data-styled.g450[id="sc-1da3k-11"]{content:"kEZmxq,"}/*!sc*/
.fuSRxI{margin-bottom:60px;}/*!sc*/
@media (max-width:832px){.fuSRxI{margin-bottom:40px;}}/*!sc*/
data-styled.g452[id="sc-1da3k-13"]{content:"fuSRxI,"}/*!sc*/
.fnWYjR{border-top:1px solid #dbdce1;font-weight:700;font-size:18px;line-height:2;color:rgb(0 0 0 / 0.65);padding:15px 15px 15px 10px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;}/*!sc*/
data-styled.g453[id="sc-1da3k-16"]{content:"fnWYjR,"}/*!sc*/
.kxmiPz{width:40px;height:40px;background-color:rgba(0,0,0,0.10);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0;border:none;border-radius:50%;cursor:pointer;display:none;}/*!sc*/
.kxmiPz:hover{background-color:rgba(14 14 14 / 0.05);}/*!sc*/
.kxmiPz svg{fill:#A4A7B5;}/*!sc*/
data-styled.g463[id="sc-fz2rdd-0"]{content:"kxmiPz,"}/*!sc*/
.fDclu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
data-styled.g464[id="sc-fz2rdd-1"]{content:"fDclu,"}/*!sc*/
.hvJhLF{position:absolute;top:50%;-webkit-transform:translateY(calc(-50% - 38px));-ms-transform:translateY(calc(-50% - 38px));transform:translateY(calc(-50% - 38px));left:-24px;-webkit-transform:translateY(calc(-50% - 38px)) rotate(180deg);-ms-transform:translateY(calc(-50% - 38px)) rotate(180deg);transform:translateY(calc(-50% - 38px)) rotate(180deg);}/*!sc*/
@media (max-width:492px){.hvJhLF{display:none;}}/*!sc*/
@media (max-width:492px){.hvJhLF{display:none;}}/*!sc*/
@media (max-width:492px){.hvJhLF{display:none;}}/*!sc*/
.ggmOyt{position:absolute;top:50%;-webkit-transform:translateY(calc(-50% - 38px));-ms-transform:translateY(calc(-50% - 38px));transform:translateY(calc(-50% - 38px));right:-24px;}/*!sc*/
@media (max-width:492px){.ggmOyt{display:none;}}/*!sc*/
@media (max-width:492px){.ggmOyt{display:none;}}/*!sc*/
@media (max-width:492px){.ggmOyt{display:none;}}/*!sc*/
data-styled.g466[id="sc-fz2rdd-3"]{content:"hvJhLF,ggmOyt,"}/*!sc*/
.hylvNa{width:100%;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;aspect-ratio:auto;background:transparent;}/*!sc*/
data-styled.g472[id="sc-fz2rdd-10"]{content:"hylvNa,"}/*!sc*/
.ggioTJ{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;}/*!sc*/
.ggioTJ img{pointer-events:none;}/*!sc*/
data-styled.g473[id="sc-fz2rdd-11"]{content:"ggioTJ,"}/*!sc*/
.bviDwy{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;height:100%;-webkit-transform:translate3d(0%,0,0);-ms-transform:translate3d(0%,0,0);transform:translate3d(0%,0,0);will-change:transform;max-height:824px;}/*!sc*/
@media (max-width:832px){.bviDwy{max-width:unset;max-height:unset;}}/*!sc*/
data-styled.g474[id="sc-fz2rdd-12"]{content:"bviDwy,"}/*!sc*/
.czUpKq{position:relative;margin:auto;overflow:hidden;width:100%;height:100%;}/*!sc*/
@media (max-width:832px){.czUpKq{max-width:unset;max-height:unset;border-radius:12px;}}/*!sc*/
data-styled.g477[id="sc-fz2rdd-17"]{content:"czUpKq,"}/*!sc*/
.cTzOtd{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;}/*!sc*/
data-styled.g478[id="sc-fz2rdd-19"]{content:"cTzOtd,"}/*!sc*/
.eKVApQ{height:100%;position:relative;width:100%;}/*!sc*/
.sc-fz2rdd-20 .sc-fz2rdd-17.sc-fz2rdd-20 .sc-fz2rdd-17:hover{cursor:auto;}/*!sc*/
data-styled.g479[id="sc-fz2rdd-20"]{content:"eKVApQ,"}/*!sc*/
.bpKVGM{color:#a4a7b5;margin-right:-3px;}/*!sc*/
data-styled.g481[id="sc-fz2rdd-22"]{content:"bpKVGM,"}/*!sc*/
.hfCtTt{margin-bottom:20px;}/*!sc*/
data-styled.g483[id="sc-16747a7-0"]{content:"hfCtTt,"}/*!sc*/
.jeUfPC{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:15px;width:100%;max-width:520px;}/*!sc*/
@media (max-width:832px){.jeUfPC{max-width:none;}}/*!sc*/
data-styled.g484[id="sc-16747a7-1"]{content:"jeUfPC,"}/*!sc*/
.fswHxp{border-radius:8px;cursor:pointer;background:linear-gradient( 96.1deg,#338CFF 0.54%,#6bd2fd 100% );padding:2px;}/*!sc*/
.fswHxp.fswHxp .sc-1ck4ubd-1{padding:18px;border-radius:6px;}/*!sc*/
data-styled.g492[id="sc-1ck4ubd-0"]{content:"fswHxp,"}/*!sc*/
.hNomtV{background:#fff;height:100%;padding:8px 18px;}/*!sc*/
data-styled.g493[id="sc-1ck4ubd-1"]{content:"hNomtV,"}/*!sc*/
.iLSKPZ > p{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;color:rgba(0,0,0,0.65);font-size:14px;line-height:1.42;margin:0 0 12px;}/*!sc*/
.iLSKPZ > p.key-features-note{display:block;}/*!sc*/
.iLSKPZ > p > img[data-type="icon"]{margin-right:8px;}/*!sc*/
.iLSKPZ > p:last-of-type{margin:0;}/*!sc*/
.iLSKPZ > p > sup{top:0.5em;}/*!sc*/
.iLSKPZ > p > sub{line-height:unset;bottom:-0.65em;}/*!sc*/
data-styled.g499[id="sc-17lc73y-5"]{content:"iLSKPZ,"}/*!sc*/
.Cjrpr{cursor:default;}/*!sc*/
data-styled.g500[id="sc-nmmoyz-0"]{content:"Cjrpr,"}/*!sc*/
.iXQCtg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:20px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:832px){.iXQCtg{gap:10px;}}/*!sc*/
data-styled.g501[id="sc-nmmoyz-1"]{content:"iXQCtg,"}/*!sc*/
.fvWexy{height:60px;width:60px;}/*!sc*/
data-styled.g502[id="sc-nmmoyz-2"]{content:"fvWexy,"}/*!sc*/
.cvhZYi{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g503[id="sc-nmmoyz-3"]{content:"cvhZYi,"}/*!sc*/
.hNUOUX{font-size:18px;line-height:22px;font-weight:700;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;color:rgba(0,0,0,0.85);width:100%;}/*!sc*/
data-styled.g504[id="sc-nmmoyz-5"]{content:"hNUOUX,"}/*!sc*/
.hawDTG{font-size:12px;line-height:14px;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;margin-top:2px;color:#c5c5c6;}/*!sc*/
data-styled.g505[id="sc-nmmoyz-6"]{content:"hawDTG,"}/*!sc*/
.iOdrVa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:10px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:12px;}/*!sc*/
data-styled.g506[id="sc-nmmoyz-7"]{content:"iOdrVa,"}/*!sc*/
.jMMxOH{font-size:18px;line-height:22px;color:rgba(0,0,0,0.65);-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;}/*!sc*/
data-styled.g507[id="sc-nmmoyz-8"]{content:"jMMxOH,"}/*!sc*/
.gGAFAG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-column-gap:10px;column-gap:10px;row-gap:4px;}/*!sc*/
data-styled.g509[id="sc-nmmoyz-10"]{content:"gGAFAG,"}/*!sc*/
.gxlxEQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-top:20px;margin-top:20px;border-top:1px solid rgb(33 33 36 / 0.06);}/*!sc*/
data-styled.g510[id="sc-nmmoyz-11"]{content:"gxlxEQ,"}/*!sc*/
.pUsHf{font-size:14px;line-height:20px;color:rgba(0,0,0,0.65);margin-bottom:20px;}/*!sc*/
data-styled.g511[id="sc-nmmoyz-12"]{content:"pUsHf,"}/*!sc*/
.ceLfIk{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/
data-styled.g512[id="sc-nmmoyz-13"]{content:"ceLfIk,"}/*!sc*/
.ieakMs{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;margin-left:auto;}/*!sc*/
data-styled.g513[id="sc-nmmoyz-14"]{content:"ieakMs,"}/*!sc*/
.jOeMOh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;margin-top:20px;}/*!sc*/
data-styled.g526[id="sc-nmmoyz-27"]{content:"jOeMOh,"}/*!sc*/
.guytHU{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;}/*!sc*/
data-styled.g554[id="sc-uolc5w-0"]{content:"guytHU,"}/*!sc*/
.RUoqW{width:86px;height:40px;}/*!sc*/
data-styled.g555[id="sc-uolc5w-1"]{content:"RUoqW,"}/*!sc*/
.jmvemG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;position:relative;}/*!sc*/
data-styled.g593[id="sc-plhx78-0"]{content:"jmvemG,"}/*!sc*/
.hxDlho{padding:6px 16px;cursor:pointer;text-align:center;background:#006FFF;color:#FFFFFF;border:1px solid #006FFF;-webkit-transition:background 0.3s;transition:background 0.3s;font-size:14px;line-height:1.5;font-weight:normal;border-radius:4px;}/*!sc*/
.hxDlho.hxDlho:active{opacity:0.9;}/*!sc*/
.hxDlho.hxDlho:hover{color:#FFFFFF;border-color:#338CFF;background-color:#338CFF;}/*!sc*/
data-styled.g595[id="sc-plhx78-2"]{content:"hxDlho,"}/*!sc*/
.ktsjoq{height:auto;margin:0 auto;width:100%;-webkit-flex:1 0 100%;-ms-flex:1 0 100%;flex:1 0 100%;max-width:1260px;box-sizing:border-box;padding:0 32px;margin:0 auto;}/*!sc*/
@media (max-width:832px){.ktsjoq{padding:0 32px;}}/*!sc*/
@media (max-width:492px){.ktsjoq{padding:0 16px;}}/*!sc*/
data-styled.g600[id="sc-lhwnjd-0"]{content:"ktsjoq,"}/*!sc*/
.fxSlnV{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g601[id="sc-lhwnjd-1"]{content:"fxSlnV,"}/*!sc*/
.eIqrDA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;}/*!sc*/
@media (max-width:492px){.eIqrDA{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}}/*!sc*/
data-styled.g715[id="sc-pyqe1m-0"]{content:"eIqrDA,"}/*!sc*/
.jHwLqj{background:linear-gradient( 269.84deg,rgba(0 56 255 / 0.0165) 33.88%,rgba(143 0 255 / 0.0555) 79.06%,rgba(120 189 228 / 0.093) 100% );position:relative;height:100%;padding:20px 0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/
.jHwLqj::before{content:"";position:absolute;bottom:-1px;height:1px;left:0;right:0;z-index:-1;background:#dbdce1;}/*!sc*/
data-styled.g716[id="sc-pyqe1m-1"]{content:"jHwLqj,"}/*!sc*/
.cejvQp{overflow:hidden;}/*!sc*/
data-styled.g717[id="sc-pyqe1m-2"]{content:"cejvQp,"}/*!sc*/
.jTOdDb{-webkit-transition:grid-template-rows 400ms ease-in-out;transition:grid-template-rows 400ms ease-in-out;will-change:grid-template-rows;position:relative;z-index:8985;display:grid;grid-template-rows:0fr;}/*!sc*/
data-styled.g718[id="sc-pyqe1m-3"]{content:"jTOdDb,"}/*!sc*/
.doHRbs{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:32px;}/*!sc*/
@media (max-width:492px){.doHRbs{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}}/*!sc*/
data-styled.g719[id="sc-pyqe1m-4"]{content:"doHRbs,"}/*!sc*/
.kuaNiZ{color:rgba(0 0 0 / 0.85);font-size:20px;line-height:1.2;}/*!sc*/
@media (max-width:832px){.kuaNiZ{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;font-size:18px;}}/*!sc*/
data-styled.g720[id="sc-pyqe1m-5"]{content:"kuaNiZ,"}/*!sc*/
.gErVfJ{font-size:14px;line-height:1.2142857142857142;height:40px;border-radius:4px;white-space:nowrap;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;}/*!sc*/
data-styled.g721[id="sc-pyqe1m-6"]{content:"gErVfJ,"}/*!sc*/
.bwgLJN{background:transparent;color:#006fff;-webkit-letter-spacing:-0.02em;-moz-letter-spacing:-0.02em;-ms-letter-spacing:-0.02em;letter-spacing:-0.02em;font-weight:400;font-size:14px;line-height:1.2142857142857142;border:none;cursor:pointer;}/*!sc*/
data-styled.g722[id="sc-pyqe1m-7"]{content:"bwgLJN,"}/*!sc*/
.bNRMQT{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;padding:12px;margin-right:-12px;}/*!sc*/
.bNRMQT img{display:block;}/*!sc*/
.bNRMQT:hover{cursor:pointer;}/*!sc*/
@media (max-width:492px){.bNRMQT{position:absolute;top:20px;right:16px;}}/*!sc*/
data-styled.g723[id="sc-pyqe1m-8"]{content:"bNRMQT,"}/*!sc*/
.ggTxJL{min-height:100vh;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-bottom:env(safe-area-inset-bottom);}/*!sc*/
data-styled.g730[id="sc-1c7hca6-0"]{content:"ggTxJL,"}/*!sc*/
.WWEcs{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;overflow:hidden;position:relative;}/*!sc*/
data-styled.g735[id="sc-1ltxgrp-0"]{content:"WWEcs,"}/*!sc*/
.jXNbYK{overflow:unset;}/*!sc*/
.jXNbYK .custom-microsite-introduction-block{margin-bottom:0;}/*!sc*/
.jXNbYK .custom-microsite-block{padding:0;}/*!sc*/
.jXNbYK .custom-microsite-icon-block{max-width:800px;}/*!sc*/
.jXNbYK .custom-microsite-icon-item{width:140px;}/*!sc*/
@media (min-width:833px){.jXNbYK .custom-microsite-media-grid-item-main .sc-uyu1hy-2{font-size:52px;line-height:56px;}.jXNbYK .custom-microsite-media-grid-item-main .sc-uyu1hy-6{top:48px;}}/*!sc*/
.jXNbYK .custom-microsite-media-grid-item-bottom .sc-uyu1hy-6{top:auto;bottom:26px;}/*!sc*/
data-styled.g736[id="sc-y8tnx3-0"]{content:"jXNbYK,"}/*!sc*/
.hipMUl{-webkit-text-decoration:none;text-decoration:none;font-size:12px;color:rgba(0,0,0,0.65);line-height:20px;cursor:pointer;}/*!sc*/
.hipMUl:hover{color:#006FFF;}/*!sc*/
data-styled.g751[id="sc-1s1auvb-1"]{content:"hipMUl,"}/*!sc*/
.fsxHIS{padding:0 !important;background:none !important;border:none !important;font-size:12px !important;color:rgba(0,0,0,0.65) !important;line-height:20px !important;}/*!sc*/
data-styled.g752[id="sc-1s1auvb-2"]{content:"fsxHIS,"}/*!sc*/
.iyQynF{margin:0 8px;color:rgba(0,0,0,0.20);}/*!sc*/
data-styled.g753[id="sc-1s1auvb-3"]{content:"iyQynF,"}/*!sc*/
.dXELKf{border-top:1px solid #DBDCE1;margin:32px 0 16px;}/*!sc*/
@media (max-width:832px){.dXELKf{border-top:unset;margin:32px 0 0;}}/*!sc*/
data-styled.g754[id="sc-1s1auvb-4"]{content:"dXELKf,"}/*!sc*/
.dJVEfD{font-size:12px;color:rgba(0,0,0,0.45);line-height:20px;}/*!sc*/
@media (max-width:832px){.dJVEfD{margin-left:unset;}}/*!sc*/
@media (max-width:832px){.dJVEfD{margin-top:18px;}}/*!sc*/
data-styled.g755[id="sc-1s1auvb-5"]{content:"dJVEfD,"}/*!sc*/
.hQvIYk{width:100%;max-width:340px;}/*!sc*/
data-styled.g756[id="sc-1s1auvb-6"]{content:"hQvIYk,"}/*!sc*/
.tvDLp{color:rgba(0,0,0,0.65);font-size:14px;line-height:24px;font-weight:bold;margin:0;}/*!sc*/
data-styled.g757[id="sc-1s1auvb-7"]{content:"tvDLp,"}/*!sc*/
.bRtakY{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-column-gap:24px;column-gap:24px;margin-top:34px;}/*!sc*/
@media (max-width:1260px){.bRtakY{margin-left:32px;}}/*!sc*/
@media (max-width:832px){.bRtakY{margin-left:unset;}}/*!sc*/
data-styled.g758[id="sc-1s1auvb-8"]{content:"bRtakY,"}/*!sc*/
.ebYxeT{width:20px;height:20px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.ebYxeT svg{display:block;}/*!sc*/
.ebYxeT:hover{cursor:pointer;}/*!sc*/
.ebYxeT:hover > svg > path{fill:#006FFF;}/*!sc*/
data-styled.g759[id="sc-1s1auvb-9"]{content:"ebYxeT,"}/*!sc*/
.itDIXl{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:25%;}/*!sc*/
@media (max-width:1260px){.itDIXl{width:unset;}}/*!sc*/
@media (max-width:1260px){.itDIXl{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:32px;}}/*!sc*/
@media (max-width:832px){.itDIXl{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-top:unset;}}/*!sc*/
data-styled.g760[id="sc-1s1auvb-10"]{content:"itDIXl,"}/*!sc*/
.inupcG{border:1px solid #DBDCE1;margin:0;width:100%;padding:9.5px 8px;font-weight:400;border-radius:4px;margin-right:8px;}/*!sc*/
.inupcG:focus{outline:none;border-color:#DBDCE1;}/*!sc*/
.inupcG::-webkit-input-placeholder{font-size:14px;line-height:24px;color:rgba(0,0,0,0.45);}/*!sc*/
.inupcG::-moz-placeholder{font-size:14px;line-height:24px;color:rgba(0,0,0,0.45);}/*!sc*/
.inupcG:-ms-input-placeholder{font-size:14px;line-height:24px;color:rgba(0,0,0,0.45);}/*!sc*/
.inupcG::placeholder{font-size:14px;line-height:24px;color:rgba(0,0,0,0.45);}/*!sc*/
data-styled.g761[id="sc-1s1auvb-11"]{content:"inupcG,"}/*!sc*/
.bRcQvR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;margin-top:4px;}/*!sc*/
data-styled.g762[id="sc-1s1auvb-12"]{content:"bRcQvR,"}/*!sc*/
.lkQaNF{list-style:none outside;padding-left:0;margin:8px 0 0;}/*!sc*/
data-styled.g763[id="sc-1s1auvb-13"]{content:"lkQaNF,"}/*!sc*/
.jBnorI{margin-top:4px;}/*!sc*/
data-styled.g764[id="sc-1s1auvb-14"]{content:"jBnorI,"}/*!sc*/
.gHNlyM{color:rgba(0,0,0,0.45);font-size:14px;line-height:24px;font-weight:normal;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.gHNlyM:hover{color:#006FFF;}/*!sc*/
data-styled.g765[id="sc-1s1auvb-15"]{content:"gHNlyM,"}/*!sc*/
.bQNaqk{margin-right:auto;}/*!sc*/
@media (max-width:832px){.bQNaqk{display:none;}}/*!sc*/
data-styled.g766[id="sc-1s1auvb-16"]{content:"bQNaqk,"}/*!sc*/
.eduAct{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/
data-styled.g767[id="sc-1s1auvb-17"]{content:"eduAct,"}/*!sc*/
.gxSwGx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;text-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:832px){.gxSwGx{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/
data-styled.g768[id="sc-1s1auvb-18"]{content:"gxSwGx,"}/*!sc*/
.UUVjT{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
@media (max-width:1260px){.UUVjT{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}}/*!sc*/
data-styled.g769[id="sc-1s1auvb-19"]{content:"UUVjT,"}/*!sc*/
.hghjkv{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g771[id="sc-1s1auvb-22"]{content:"hghjkv,"}/*!sc*/
.dJPZat{background:#F6F6F8;box-sizing:border-box;width:100%;overflow:hidden;padding:32px 0 16px;}/*!sc*/
@media (max-width:492px){.dJPZat{padding:40px 0;}}/*!sc*/
.dJPZat .sc-1s1auvb-5{margin-left:auto;}/*!sc*/
@media (max-width:832px){.dJPZat .sc-1s1auvb-5{margin-left:unset;}}/*!sc*/
data-styled.g772[id="sc-1s1auvb-23"]{content:"dJPZat,"}/*!sc*/
</style></head><body><div id="__next" data-reactroot=""><div class="sc-1c7hca6-0 ggTxJL"><div class="sc-pyqe1m-3 jTOdDb store-picker-banner"><div class="sc-pyqe1m-2 cejvQp"><div class="sc-pyqe1m-1 jHwLqj"><div class="sc-jucepg-0 dPbEPC"><div class="sc-jucepg-1 hnFHNp"><div class="sc-pyqe1m-0 eIqrDA"><div class="sc-pyqe1m-4 doHRbs"><div class="sc-pyqe1m-5 kuaNiZ">Visiting us from <strong></strong>?</div><button type="button" class="sc-plhx78-2 hxDlho sc-pyqe1m-6 gErVfJ"><div class="sc-plhx78-0 jmvemG">Continue to United States Store</div></button><button type="button" class="sc-pyqe1m-7 bwgLJN">Select Other Country / Region</button></div><button type="button" class="sc-pyqe1m-8 bNRMQT"><img src="https://assets.ecomm.ui.com/_next/static/media/closeSmall.2bb34a87.svg" width="11" height="11" alt="close"/></button></div></div></div></div></div></div><div class="sc-2kkf5o-20 ftvexz"><div class="sc-2kkf5o-21 YQwVX"><header class="sc-2kkf5o-23 hkcCnd"><div class="sc-jucepg-0 dPbEPC sc-2kkf5o-0 hXDYTu"><div class="sc-jucepg-1 hnFHNp"><div class="sc-2kkf5o-11 gTuIuY"><button class="sc-tjj6wi-2 KnRnH sc-1rtpwdy-6 jWyxfa"><div class="sc-tjj6wi-0 iwrrep"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-7 cvURDH"><div class="sc-1v0wbkx-0 hmPkBv"></div></div></span></div></div></button><div class="sc-2kkf5o-12 dBkoKG"><a href="https://ui.com/us/en/?s=us" class="sc-2kkf5o-1 uDlAl"><div class="sc-2kkf5o-7 cojKNh"><div class="sc-1v0wbkx-0 cMevfu"></div></div></a><div class="sc-2kkf5o-15 ducRtB"><div class="sc-2kkf5o-5 cqMbLl"><a href="https://store.ui.com/us/en/collections/unifi-dream-machine" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">Cloud Gateways</div></span></div></a><a href="https://store.ui.com/us/en/collections/unifi-wifi-flagship-compact" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">WiFi</div></span></div></a><a href="https://store.ui.com/us/en/collections/unifi-switching-enterprise-power-over-ethernet" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">Switching</div></span></div></a><a href="https://store.ui.com/us/en/collections/unifi-camera-security-bullet-high-performance" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">Camera Security</div></span></div></a><a href="https://store.ui.com/us/en/collections/unifi-camera-security-door-access-hub" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">Door Access</div></span></div></a><a href="https://store.ui.com/us/en/collections/unifi-new-integrations-phone-executive" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">New Integrations</div></span></div></a><a href="https://store.ui.com/us/en/collections/unifi-power-tech-power-distribution" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">Accessory Tech</div></span></div></a><a href="https://ui.com/us/en/identity?s=us" class="sc-1rtpwdy-6 cTLEQt"><div class="sc-1rtpwdy-2 fbcawe"><span class="sc-1rtpwdy-3 jZspkH"><div class="sc-2kkf5o-6 koEmXI">Identity</div></span></div></a></div></div></div><div class="sc-2kkf5o-5 esaKqo"><div class="sc-1rtpwdy-0 hQIpuO"><a href="https://help.ui.com/hc/en-us" class="sc-1rtpwdy-1 gNOfvo">Support</a></div><div class="sc-1rtpwdy-0 hQIpuO"><a href="https://store.ui.com/us/en/" class="sc-1rtpwdy-1 kNQybC">Store</a></div><div class="sc-2kkf5o-4 gQFFfM"><div class="sc-2kkf5o-3 kzBJij"><div class="sc-1v0wbkx-0 kHjCkM sc-2kkf5o-2 fNjtkH"></div><div class="sc-2kkf5o-24 gNUlWQ"></div></div><div class="sc-u29cw5-0 bkMIOO sc-2kkf5o-19 bsssyY"><div class="sc-u29cw5-1 bUFGjV"></div></div></div></div></div></div></div></header></div></div><main class="sc-1ltxgrp-0 WWEcs sc-y8tnx3-0 jXNbYK"><div id="product-page"><div class="sc-jucepg-0 jOcmJe sc-1da3k-0 hyRxVn"><div class="sc-jucepg-1 hnFHNp"><div class="sc-1da3k-1 kyebWu"><div class="sc-1da3k-2 cdPjBT"><div class="sc-1da3k-5 gBfHgW"><section class="sc-fz2rdd-20 eKVApQ"><div class="sc-fz2rdd-19 cTzOtd"><div class="sc-fz2rdd-1 fDclu"></div><div class="sc-fz2rdd-17 czUpKq"><div class="sc-fz2rdd-12 bviDwy carousel__viewport"><div class="sc-fz2rdd-10 hylvNa"><div class="sc-fz2rdd-11 ggioTJ"><div class="sc-g11oxh-2 bQaAld"><div class="sc-g11oxh-4 fLcxcI"><span style="box-sizing:border-box;display:block;overflow:hidden;width:initial;height:initial;background:none;opacity:1;border:0;margin:0;padding:0;position:absolute;top:0;left:0;bottom:0;right:0"><img alt="Dream Machine" sizes="100%" srcSet="https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=16 16w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=32 32w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=48 48w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=64 64w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=96 96w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=128 128w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=256 256w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=384 384w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=640 640w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=750 750w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=828 828w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1080 1080w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1200 1200w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1920 1920w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=2048 2048w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=3840 3840w" src="https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=3840" decoding="async" data-nimg="fill" style="position:absolute;top:0;left:0;bottom:0;right:0;box-sizing:border-box;padding:0;border:none;margin:auto;display:block;width:0;height:0;min-width:100%;max-width:100%;min-height:100%;max-height:100%;object-fit:contain"/></span></div><div class="sc-g11oxh-3 lbmaEX"></div></div></div></div></div></div></div><button direction="prev" class="sc-fz2rdd-0 sc-fz2rdd-3 kxmiPz hvJhLF"><div class="sc-1v0wbkx-0 gdRyEj sc-fz2rdd-22 bpKVGM"></div></button><button direction="next" class="sc-fz2rdd-0 sc-fz2rdd-3 kxmiPz ggmOyt"><div class="sc-1v0wbkx-0 gdRyEj sc-fz2rdd-22 bpKVGM"></div></button></section></div></div><div class="sc-1da3k-3 jzOLyX"><div class="sc-1da3k-6 kMNlnl"><h1 class="sc-1da3k-4 ecCwrQ">Dream Machine</h1></div><div class="sc-16747a7-0 hfCtTt"><div class="sc-16747a7-1 jeUfPC"><div class="sc-1ck4ubd-0 fswHxp sc-nmmoyz-0 Cjrpr" selected=""><div class="sc-1ck4ubd-1 hNomtV"><div class="sc-nmmoyz-1 iXQCtg"><div class="sc-nmmoyz-2 fvWexy"><div class="sc-g11oxh-2 cokmEg"><div class="sc-g11oxh-4 iEpHsj"><span style="box-sizing:border-box;display:block;overflow:hidden;width:initial;height:initial;background:none;opacity:1;border:0;margin:0;padding:0;position:relative"><span style="box-sizing:border-box;display:block;width:initial;height:initial;background:none;opacity:1;border:0;margin:0;padding:0;padding-top:100%"></span><img alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" decoding="async" data-nimg="responsive" style="position:absolute;top:0;left:0;bottom:0;right:0;box-sizing:border-box;padding:0;border:none;margin:auto;display:block;width:0;height:0;min-width:100%;max-width:100%;min-height:100%;max-height:100%"/><noscript><img alt="" sizes="60px" srcSet="https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=16 16w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=32 32w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=48 48w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=64 64w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=96 96w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=128 128w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=256 256w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=384 384w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=640 640w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=750 750w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=828 828w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1080 1080w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1200 1200w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=1920 1920w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=2048 2048w, https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=3840 3840w" src="https://images.svc.ui.com/?u=https%3A%2F%2Fcdn.ecomm.ui.com%2Fproducts%2F9585991f-2b82-411c-8f44-addb4711e4db%2Fed901d58-e3c0-45e7-b2df-f382fff5e3de.png&amp;q=75&amp;w=3840" decoding="async" data-nimg="responsive" style="position:absolute;top:0;left:0;bottom:0;right:0;box-sizing:border-box;padding:0;border:none;margin:auto;display:block;width:0;height:0;min-width:100%;max-width:100%;min-height:100%;max-height:100%" loading="lazy"/></noscript></span></div><div class="sc-g11oxh-3 eACHPn"></div></div></div><div class="sc-nmmoyz-3 cvhZYi"><div class="sc-nmmoyz-5 hNUOUX">Dream Machine</div><div selected="" class="sc-nmmoyz-6 hawDTG">UDM</div><div class="sc-nmmoyz-7 iOdrVa"><div class="sc-nmmoyz-8 jMMxOH">$299.00</div><div class="sc-nmmoyz-10 gGAFAG"></div></div></div></div><div class="sc-nmmoyz-11 gxlxEQ"><div class="sc-nmmoyz-12 pUsHf">All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks.</div><div class="sc-17lc73y-5 iLSKPZ sc-nmmoyz-13 ceLfIk"><p><img width="20" height="20" data-type="icon" data-icon="wifi5" src="https://assets.ecomm.ui.com/static/key-features/wifi5.svg"> Built-in WiFi 5 AP</p>
<p><img width="20" height="20" data-type="icon" data-icon="apps" src="https://assets.ecomm.ui.com/static/key-features/apps.svg">  Includes UniFi Network for device management</p>
<p><img width="20" height="20" data-type="icon" data-icon="streams" src="https://assets.ecomm.ui.com/static/key-features/streams.svg"> Full Gigabit routing</p>
<p><img width="20" height="20" data-type="icon" data-icon="rj45_port" src="https://assets.ecomm.ui.com/static/key-features/rj45_port.svg"> (4) GbE RJ45 LAN ports</p>
</div></div><div class="sc-nmmoyz-27 jOeMOh"><div class="sc-nmmoyz-14 ieakMs"><div class="sc-uolc5w-0 guytHU"><div class="sc-36jhez-0 fizWrq sc-uolc5w-1 RUoqW"><div class="sc-36jhez-2 ktubTO"><button class="sc-36jhez-3 sc-36jhez-5 gsGEzj dHxJkq"><div class="sc-1v0wbkx-0 eMMjwB"></div></button><input type="text" min="0" pattern="[0-9]*" maxLength="5" value="1" class="sc-36jhez-6 iAILpc"/><button class="sc-36jhez-3 sc-36jhez-4 gsGEzj cMtMZn"><div class="sc-1v0wbkx-0 kQQcEL"></div></button></div></div><button label="Add to Cart" class="sc-tjj6wi-2 klcWbH sc-190ba8g-0 jasDXe"><div class="sc-tjj6wi-0 iwrrep"><div class="sc-190ba8g-1 dDvBIF"><span>Add to Cart</span></div></div></button></div></div></div></div></div></div></div></div></div><div class="sc-148ud9r-0 bmeulw sc-1da3k-11 kEZmxq"><div class="sc-148ud9r-2 rWkoO"></div><div class="sc-148ud9r-3 bRzTUj"></div></div><a href="https://dl.ui.com/qig/udm" target="_blank" class="sc-1da3k-16 fnWYjR">Installation Guide<div class="sc-1v0wbkx-0 hFCCJt"></div></a><div class="sc-1da3k-13 fuSRxI"><div class="sc-1dc4qc7-0 jLETBV"><div class="sc-1dc4qc7-3 bUBMpo"><div class="sc-1dc4qc7-4 jLKraW">Technical Specifications<div class="sc-1dc4qc7-2 gTSaED"><div class="sc-1v0wbkx-0 jieKVx"></div></div></div><div class="sc-1dc4qc7-1 cIKGyl"><div class="sc-khrtyt-4 sc-1da3k-7 hBNuJx"><table class="data-table" id="product-attribute-specs-table">
        <colgroup><col width="25%">
        <col>
        </colgroup><tbody>
            <tr>
                <th colspan="100%">Mechanical</th>
            </tr>
            <tr>
                <td class="key">Dimensions</td>
                <td class="value">Ø110 x 184.1 mm (Ø4.3 x 7.3")</td>
            </tr>
            <tr>
                <td class="key">Weight</td>
                <td class="value">1.1 kg (2.3 lb)</td>
            </tr>
<tr>
<td class=“key“>Enclosure material</td><td class=“value“>Polycarbonate</td>
</tr>
            <tr>
                <th colspan="100%">Hardware</th>
            </tr>
            <tr>
                <td class="key">Processor</td>
                <td class="value">Quad-core Arm® Cortex® A57 at 1.7 GHz</td>
            </tr>
            <tr>
                <td class="key">System memory</td>
                <td class="value">2 GB DDR RAM</td>
            </tr>
            <tr>
                <td class="key">Management interface</td>
                <td class="value">Ethernet<br>Bluetooth</td>
            </tr>
            <tr>
                <td class="key">Networking interface</td>
                <td class="value">LAN: <br>(4) GbE RJ45 ports<br><br>WAN: <br>(1) GbE RJ45 port
</td>
            </tr>
            <tr>
                <td class="key">Power method</td>
                <td class="value"> Universal AC input, 100—240V AC, 0.6A Max., 50/60 Hz</td>
            </tr>
            <tr>
                <td class="key">Power supply</td>
                <td class="value">AC/DC, internal, 50W</td>
            </tr>
            <tr>
                <td class="key">Supported voltage range</td>
                <td class="value">100—240V AC</td>
            </tr>
            <tr>
                <td class="key">Max. power consumption</td>
                <td class="value">26W</td>
            </tr>
            <tr>
                <td class="key">Max. TX power<br>2.4 GHz<br>5 GHz</td>
                <td class="value"><br>23 dBm<br>26 dBm</td>
            </tr>
<tr>
<td class=“key“>MIMO<br>2.4 GHz<br>5 GHz</td><td class=“value“><br>2 x 2<br>4 x 4</td>
</tr>
<tr>
<td class=“key“>Throughput rate<br>2.4 GHz<br>5 GHz</td><td class=“value“><br>300 Mbps<br>1.7 Gbps</td>
</tr>
            <tr>
                <td class="key">Antenna gain<br />2.4 GHz<br />5 GHz</td>
                <td class="value"><br />3 dBi<br />4.5 dBi</td>
            </tr>
            <tr>
                <td class="key">Antenna</td>
                <td class="value">(1) Internal, dual-band, quad-polarity antenna</td>
            </tr>
            <tr>
                <td class="key">Button</td>
                <td class="value">Factory reset</td>
            </tr>
<tr>
<td class=“key“>LEDs</td><td class=“value“>White/blue</td>
</tr>
            <tr>
                <td class="key">Ambient operating temperature</td>
                <td class="value">-10 to 45° C (14 to 113° F)</td>
            </tr>
            <tr>
                <td class="key">Ambient operating humidity</td>
                <td class="value">5 to 95% Noncondensing</td>
            </tr>
            <tr>
                <td class="key">Certifications</td>
                <td class="value">CE, FCC, IC</td>
            </tr>
                        <tr>
                <th colspan="100%">Gateway Features</th>
            </tr>
<tr>
<td class=“key“>Performance </td><td class=“value“>
WiFi QoS with UniFi APs<br>
Application, domain, and country-based QoS<br>
Application and device type identification<br>
Additional internet failover with LTE Backup<br>
Internet quality and outage reporting</td>
</tr>
<tr>
<td class=“key“>Next-generation security</td><td class=“value“>Application-aware firewall rules<br>
Signature-based IPS/IDS threat detection<br>
Content, country, domain, and ad filtering<br>
VLAN/subnet-based traffic segmentation<br>
Full stateful firewall</td>
</tr>
<tr>
<td class=“key“>Advanced networking</td><td class=“value“>License-free SD-WAN<br>WireGuard, L2TP and OpenVPN server<br>
OpenVPN client<br>
OpenVPN and IPsec site-to-site VPN<br>
One-click Teleport and Identity VPN<br>
Policy-based WAN and VPN routing<br>
DHCP relay<br>
Customizable DHCP server<br>
IGMP proxy<br>
IPv6 ISP support
</td>
</tr>
            <tr>
                <th colspan="100%">Software</th>
            </tr>
            <tr>
                <td class="key">WiFi standards</td>
                <td class="value">802.11a/b/g/n/ac</td>
            </tr>
            <tr>
                <td class="key">Wireless security</td>
                <td class="value">WEP, WPA-PSK, WPA-Enterprise (WPA/WPA2, TKIP/AES), 802.11w/PMF</td>
            </tr>
            <tr>
                <td class="key">BSSID</td>
                <td class="value">Up to 8 per radio</td>
            </tr>
<tr>
<td class=“key“>VLAN</td><td class=“value“>802.1Q</td>
</tr>
<tr>
<td class=“key“>Advanced QoS</td><td class=“value“>Per-user rate limiting</td>
</tr>
<tr>
<td class=“key“>Guest traffic isolation</td><td class=“value“>Supported</td>
</tr>
<tr>
<td class=“key“>Concurrent clients</td><td class=“value“>100+</td>
</tr>
            <tr>
                <th colspan="100%">Supported Data Rates</th>
            </tr>
<tr>
<td class=“key“>802.11a</td><td class=“value“>6, 9, 12, 18, 24, 36, 48, 54 Mbps</td>
</tr>
<tr>
<td class=“key“>802.11b</td><td class=“value“>1, 2, 5.5, 11 Mbps</td>
</tr>
<tr>
<td class=“key“>802.11g</td><td class=“value“>6, 9, 12, 18, 24, 36, 48, 54 Mbps</td>
</tr>
<tr>
<td class=“key“>802.11n (WiFi 4)</td><td class=“value“>6.5 Mbps to 300 Mbps (MCS0 - MCS15, HT 20/40)</td>
</tr>
<tr>
<td class=“key“>802.11ac (WiFi 5)</td><td class=“value“>6.5 Mbps to 1.7 Gbps (MCS0 - MCS9 NSS1/2/3/4, VHT 20/40/80/160)</td>
</tr>
        </tbody>
    </table></div></div></div></div></div></div></div></div></main><footer id="footer" class="sc-1s1auvb-23 dJPZat"><div class="sc-lhwnjd-0 ktsjoq"><div class="sc-lhwnjd-1 fxSlnV"><div class="sc-1s1auvb-19 UUVjT"><div class="sc-1s1auvb-17 eduAct"><div class="sc-1s1auvb-16 bQNaqk"><h1 class="sc-1s1auvb-7 tvDLp"> <!-- -->Company</h1><ul class="sc-1s1auvb-13 lkQaNF"><li class="sc-1s1auvb-14 jBnorI"><a href="https://careers.ui.com/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Careers</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/contact/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Contact Us</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="http://ir.ui.com/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Investors</a></li></ul></div><div class="sc-1s1auvb-16 bQNaqk"><h1 class="sc-1s1auvb-7 tvDLp"> <!-- -->Training</h1><ul class="sc-1s1auvb-13 lkQaNF"><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/training/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Courses</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/training/calendar/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Calendar</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/training/partners/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Trainers</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/training/become-trainer/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Become a Trainer</a></li></ul></div><div class="sc-1s1auvb-16 bQNaqk"><h1 class="sc-1s1auvb-7 tvDLp"> <!-- -->Buy Now</h1><ul class="sc-1s1auvb-13 lkQaNF"><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/distributors/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Find a Distributor</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/distributors/stock-locator/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Stock Locator Tool</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://www.ui.com/distributors/become-authorized-distributor/" target="_blank" class="sc-1s1auvb-15 gHNlyM">Become a Distributor</a></li></ul></div><div class="sc-1s1auvb-16 bQNaqk"><h1 class="sc-1s1auvb-7 tvDLp"> <!-- -->Tools</h1><ul class="sc-1s1auvb-13 lkQaNF"><li class="sc-1s1auvb-14 jBnorI"><a href="https://wifiman.com/" target="_blank" class="sc-1s1auvb-15 gHNlyM">WiFiman</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://uisp.ui.com/" target="_blank" class="sc-1s1auvb-15 gHNlyM">UISP</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://design.ui.com/" target="_blank" class="sc-1s1auvb-15 gHNlyM">UniFi Design Center</a></li><li class="sc-1s1auvb-14 jBnorI"><a href="https://ispdesign.ui.com/" target="_blank" class="sc-1s1auvb-15 gHNlyM">UISP Design Center</a></li></ul></div></div><div class="sc-1s1auvb-10 itDIXl"><form method="post" action="https://ubnt.us8.list-manage.com/subscribe/post?u=bc856e62a9254399365d0277b" target="_blank" class="sc-1s1auvb-6 hQvIYk"><h1 class="sc-1s1auvb-7 tvDLp">Stay in Touch</h1><div class="sc-1s1auvb-12 bRcQvR"><input type="text" placeholder="Email" name="EMAIL" class="sc-1s1auvb-11 inupcG"/><button type="submit" class="sc-plhx78-2 hxDlho"><div class="sc-plhx78-0 jmvemG">Subscribe</div></button></div><input type="hidden" name="id" value="1c1b02cb37"/><input type="hidden" name="MERGE4" value="Residential (home use)"/><input type="hidden" name="MERGE6" value="United States"/></form><div class="sc-1s1auvb-8 bRtakY"><a href="https://facebook.com/uieverywhere" target="_blank" class="sc-1s1auvb-9 ebYxeT"><svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.9" fill-rule="evenodd" clip-rule="evenodd" d="M5.02 13.934H2.558v-6.23H.5V5.236h2.058v-1.83c0-1.052.283-1.86.85-2.425C3.975.415 4.712.133 5.62.133c.443 0 .834.014 1.174.042.34.028.565.047.673.059v2.215H6.203c-.497 0-.818.112-.964.336-.146.224-.219.515-.219.873v1.578h2.366l-.308 2.468H5.02v6.23Z" fill="#838691"></path></svg></a><a href="https://twitter.com/ubiquiti" target="_blank" class="sc-1s1auvb-9 ebYxeT"><svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.9" fill-rule="evenodd" clip-rule="evenodd" d="M17.417 1.65a7.315 7.315 0 0 1-.805.987c-.301.311-.62.59-.959.836V3.928c0 1.158-.22 2.33-.661 3.516a10.06 10.06 0 0 1-1.951 3.223c-.86.962-1.926 1.747-3.197 2.355-1.271.608-2.73.912-4.376.912A10.125 10.125 0 0 1 0 12.35l.419.043c.147.014.286.021.419.021.838 0 1.635-.133 2.392-.401a7.347 7.347 0 0 0 2.061-1.118 3.504 3.504 0 0 1-2.083-.705A3.53 3.53 0 0 1 1.94 8.464l.342.044c.11.014.224.021.342.021.161 0 .32-.01.474-.032.154-.022.312-.054.474-.098A3.524 3.524 0 0 1 1.51 7.195a3.349 3.349 0 0 1-.827-2.247v-.043c.25.13.511.235.783.315.272.08.555.119.849.119a3.522 3.522 0 0 1-1.158-1.248 3.394 3.394 0 0 1-.43-1.682c0-.318.041-.626.122-.922.08-.297.202-.575.364-.836.44.521.933 1.002 1.477 1.443a9.481 9.481 0 0 0 1.752 1.129c.625.311 1.283.56 1.974.749.69.188 1.41.304 2.16.347a3.613 3.613 0 0 1-.088-.803c0-.97.35-1.798 1.047-2.485A3.468 3.468 0 0 1 12.06 0c.514 0 .995.098 1.444.293.448.195.834.467 1.157.814a9.004 9.004 0 0 0 1.19-.337 6.14 6.14 0 0 0 1.081-.51 3.407 3.407 0 0 1-.606 1.107 3.582 3.582 0 0 1-.96.825c.368-.043.72-.108 1.059-.195.338-.087.669-.203.992-.348Z" fill="#838691"></path></svg></a><a href="https://www.youtube.com/user/ubnt?feature=watch" target="_blank" class="sc-1s1auvb-9 ebYxeT"><svg width="21" height="15" viewBox="0 0 21 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.9" fill-rule="evenodd" clip-rule="evenodd" d="m20.194 3.952.091 1.015c.061.677.092 1.414.092 2.212v1.51c0 .815-.03 1.556-.092 2.224l-.091 1.002-.183.755c-.123.503-.332.91-.629 1.223-.384.381-.763.611-1.139.69a8.169 8.169 0 0 1-.85.142c-.716.053-1.48.091-2.29.117-.812.026-1.567.048-2.265.066-.698.017-1.283.026-1.754.026h-.707l-.838-.013a262.196 262.196 0 0 1-4.227-.104c-.76-.027-1.34-.057-1.741-.092-.227-.034-.554-.086-.982-.156-.428-.07-.833-.295-1.217-.676-.297-.313-.506-.72-.629-1.223l-.183-.755-.091-1.002a24.587 24.587 0 0 1-.092-2.225v-1.51c0-.797.03-1.534.092-2.21L.56 3.951l.183-.754c.123-.504.332-.903.629-1.197.384-.4.763-.634 1.138-.703.376-.07.66-.122.851-.156a56.722 56.722 0 0 1 2.29-.117C6.464.999 7.219.98 7.917.973 8.614.964 9.2.955 9.67.947l.707-.013.707.013c.471.008 1.056.017 1.754.026.698.008 1.453.026 2.264.052.812.026 1.575.065 2.29.117.193.034.476.087.851.156.376.07.755.303 1.14.703.296.294.505.693.628 1.197l.183.754ZM8.024 10.85l5.294-2.903-5.294-2.93v5.833Z" fill="#838691"></path></svg></a><a href="https://www.instagram.com/ubiquiti/" target="_blank" class="sc-1s1auvb-9 ebYxeT"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.946 4.525a.987.987 0 1 0 1.974 0 .987.987 0 0 0-1.974 0Zm-.365 7.342a4.337 4.337 0 0 0 1.253-2.975c.026-1.178-.337-2.203-1.049-2.963-.75-.802-1.845-1.246-3.162-1.284a4.045 4.045 0 0 0-2.956 1.16A4.304 4.304 0 0 0 4.37 8.878a4.237 4.237 0 0 0 4.232 4.232 4.166 4.166 0 0 0 2.979-1.242ZM5.4.934h6.4c2.51 0 4.55 2.04 4.55 4.55v6.83c0 2.508-2.04 4.55-4.55 4.55H5.4a4.556 4.556 0 0 1-4.55-4.55v-6.83c0-2.51 2.04-4.55 4.55-4.55Zm3.102 5.135.077.001c.93.027 1.678.316 2.163.834.452.482.682 1.159.664 1.957-.034 1.582-1.267 2.822-2.806 2.822a2.81 2.81 0 0 1-2.806-2.807c0-.767.315-1.514.865-2.047a2.633 2.633 0 0 1 1.843-.76Z" fill="#838691"></path></svg></a></div></div></div><div class="sc-1s1auvb-4 dXELKf"></div><div class="sc-1s1auvb-18 gxSwGx"><div class="sc-1s1auvb-22 hghjkv"><div class="sc-1s1auvb-0 iFcATc"><a href="https://www.ui.com/legal/ui-store/termsandconditions/" target="_blank" class="sc-1s1auvb-1 hipMUl">Terms and Conditions</a><span class="sc-1s1auvb-3 iyQynF">|</span></div><div class="sc-1s1auvb-0 iFcATc"><a href="https://www.ui.com/legal/termsofservice/" target="_blank" class="sc-1s1auvb-1 hipMUl">Terms of Service</a><span class="sc-1s1auvb-3 iyQynF">|</span></div><div class="sc-1s1auvb-0 iFcATc"><a href="https://www.ui.com/legal/privacypolicy/" target="_blank" class="sc-1s1auvb-1 hipMUl">Privacy Policy</a><span class="sc-1s1auvb-3 iyQynF">|</span></div><div class="sc-1s1auvb-0 iFcATc"><a href="https://www.ui.com/legal/ui-store/termsandconditions/" target="_blank" class="sc-1s1auvb-1 hipMUl">Return Policy</a><span class="sc-1s1auvb-3 iyQynF">|</span></div><button type="button" id="ot-sdk-btn" class="sc-1s1auvb-2 fsxHIS ot-sdk-show-settings">Cookies Settings</button></div><span class="sc-1s1auvb-5 dJVEfD">© 2024 Ubiquiti Inc. All rights reserved.</span></div></div></div></footer></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"referer":null,"product":{"__typename":"StorefrontProduct","id":"9585991f-2b82-411c-8f44-addb4711e4db","title":"Dream Machine","shortTitle":"Dream Machine","name":"UDM","description":"\u003cp\u003e\u003cstrong\u003eFeatures:\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eDual-band WiFi 5 access point\u003c/li\u003e\n\u003cli\u003eFour-port Gigabit switch\u003c/li\u003e\n\u003cli\u003eAdvanced network security (content filtering, internet threat management, deep packet inspection)\u003c/li\u003e\n\u003cli\u003ePre-installed UniFi Network application\u003c/li\u003e\n\u003c/ul\u003e\n","keyFeatures":"\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"wifi5\" src=\"https://assets.ecomm.ui.com/static/key-features/wifi5.svg\"\u003e Built-in WiFi 5 AP\u003c/p\u003e\n\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"apps\" src=\"https://assets.ecomm.ui.com/static/key-features/apps.svg\"\u003e  Includes UniFi Network for device management\u003c/p\u003e\n\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"streams\" src=\"https://assets.ecomm.ui.com/static/key-features/streams.svg\"\u003e Full Gigabit routing\u003c/p\u003e\n\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"rj45_port\" src=\"https://assets.ecomm.ui.com/static/key-features/rj45_port.svg\"\u003e (4) GbE RJ45 LAN ports\u003c/p\u003e\n","seoTitle":"Dream Machine","seoDescription":"All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks.","callout":null,"shortDescription":"All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks.","status":"Available","whatsInTheBoxMedia":null,"manufacturer":"Ubiquiti","slug":"udm","collectionSlug":null,"proCollectionSlug":null,"organizationalCollectionSlug":"unifi-dream-machine","family":"Unifi","tags":[{"__typename":"ProductTag","id":"8d16af8d-eb84-4932-b284-9b615dae526e","name":"pro-sort-weight:4960"},{"__typename":"ProductTag","id":"411e3974-a7f2-4ef1-9b62-39e64e3e8171","name":"feature:wifi-integrated"}],"documents":[{"__typename":"ProductDocument","id":"c29b924c-f5f1-4795-aa71-4a0126276165","url":"https://dl.ui.com/ds/udm_ds.pdf","type":"Datasheet","name":"Datasheet"},{"__typename":"ProductDocument","id":"54c5fe9f-b537-45c7-929e-261f7f4a63fb","url":"https://dl.ui.com/qig/udm","type":"InstallationGuide","name":"Installation Guide"}],"options":[{"__typename":"StorefrontOption","id":"492f18b6-0811-4f85-8e11-8c0c6a1a5c4a","title":"Variant","values":[{"__typename":"StorefrontOptionValue","id":"7520fcb9-7ace-406d-a981-3be70cc75712","title":"US Version"}]}],"thumbnail":{"__typename":"Asset","id":"ed901d58-e3c0-45e7-b2df-f382fff5e3de","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","height":1500,"width":1500},"gallery":{"__typename":"Gallery","thumbnailUrl":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","id":"475ee9e1-6c2f-44ec-9a24-436d7b4d80e0:ProductMedia","items":[{"__typename":"GalleryItem","id":"475ee9e1-6c2f-44ec-9a24-436d7b4d80e0","data":{"__typename":"Asset","id":"ed901d58-e3c0-45e7-b2df-f382fff5e3de","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"16f28d3c-4af2-4868-86db-dc4d19544577","data":{"__typename":"Asset","id":"9336b696-d13c-4087-97df-e20c2b738982","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/9336b696-d13c-4087-97df-e20c2b738982.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"725bd30c-26b7-4fcc-8706-b6bc4d879646","data":{"__typename":"Asset","id":"31fae88b-deb6-4c8f-862f-42aac7783b04","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/31fae88b-deb6-4c8f-862f-42aac7783b04.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"dbc8a08f-142c-4ff8-880c-84ddc4fe0439","data":{"__typename":"Asset","id":"6906e7cc-e742-48ed-bec9-4a97033d0c1e","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/6906e7cc-e742-48ed-bec9-4a97033d0c1e.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"b4ff08b9-689d-46b1-8021-9e32bfd311d1","data":{"__typename":"Asset","id":"44073c51-79a0-491c-b672-d07db08e6090","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/44073c51-79a0-491c-b672-d07db08e6090.png","height":1500,"width":1500,"childAssets":[]}}],"type":"ProductMedia"},"techSpecs":{"__typename":"Gallery","id":"c4889322-e05c-4831-a26a-8813f6e51631:ProductTechSpec","items":[{"__typename":"GalleryItem","id":"c4889322-e05c-4831-a26a-8813f6e51631","data":{"__typename":"Asset","id":"56f97eed-7183-4b1c-acc4-a82247bd23e4","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/56f97eed-7183-4b1c-acc4-a82247bd23e4.png","height":1040,"width":1400}}],"type":"ProductTechSpec"},"deploymentMedia":null,"topologyMedia":null,"installationMedia":null,"performanceMedia":null,"datasheet":{"__typename":"Datasheet","id":"fbcb1196-6884-4bd3-95ab-9e0b6ea874ed","sku":"UDM","html":"\u003ctable class=\"data-table\" id=\"product-attribute-specs-table\"\u003e\n        \u003ccolgroup\u003e\u003ccol width=\"25%\"\u003e\n        \u003ccol\u003e\n        \u003c/colgroup\u003e\u003ctbody\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eMechanical\u003c/th\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eDimensions\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eØ110 x 184.1 mm (Ø4.3 x 7.3\")\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eWeight\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e1.1 kg (2.3 lb)\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eEnclosure material\u003c/td\u003e\u003ctd class=“value“\u003ePolycarbonate\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eHardware\u003c/th\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eProcessor\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eQuad-core Arm® Cortex® A57 at 1.7 GHz\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eSystem memory\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e2 GB DDR RAM\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eManagement interface\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eEthernet\u003cbr\u003eBluetooth\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eNetworking interface\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eLAN: \u003cbr\u003e(4) GbE RJ45 ports\u003cbr\u003e\u003cbr\u003eWAN: \u003cbr\u003e(1) GbE RJ45 port\n\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003ePower method\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e Universal AC input, 100—240V AC, 0.6A Max., 50/60 Hz\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003ePower supply\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eAC/DC, internal, 50W\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eSupported voltage range\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e100—240V AC\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eMax. power consumption\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e26W\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eMax. TX power\u003cbr\u003e2.4 GHz\u003cbr\u003e5 GHz\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e\u003cbr\u003e23 dBm\u003cbr\u003e26 dBm\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eMIMO\u003cbr\u003e2.4 GHz\u003cbr\u003e5 GHz\u003c/td\u003e\u003ctd class=“value“\u003e\u003cbr\u003e2 x 2\u003cbr\u003e4 x 4\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eThroughput rate\u003cbr\u003e2.4 GHz\u003cbr\u003e5 GHz\u003c/td\u003e\u003ctd class=“value“\u003e\u003cbr\u003e300 Mbps\u003cbr\u003e1.7 Gbps\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAntenna gain\u003cbr /\u003e2.4 GHz\u003cbr /\u003e5 GHz\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e\u003cbr /\u003e3 dBi\u003cbr /\u003e4.5 dBi\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAntenna\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e(1) Internal, dual-band, quad-polarity antenna\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eButton\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eFactory reset\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eLEDs\u003c/td\u003e\u003ctd class=“value“\u003eWhite/blue\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAmbient operating temperature\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e-10 to 45° C (14 to 113° F)\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAmbient operating humidity\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e5 to 95% Noncondensing\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eCertifications\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eCE, FCC, IC\u003c/td\u003e\n            \u003c/tr\u003e\n                        \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eGateway Features\u003c/th\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003ePerformance \u003c/td\u003e\u003ctd class=“value“\u003e\nWiFi QoS with UniFi APs\u003cbr\u003e\nApplication, domain, and country-based QoS\u003cbr\u003e\nApplication and device type identification\u003cbr\u003e\nAdditional internet failover with LTE Backup\u003cbr\u003e\nInternet quality and outage reporting\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eNext-generation security\u003c/td\u003e\u003ctd class=“value“\u003eApplication-aware firewall rules\u003cbr\u003e\nSignature-based IPS/IDS threat detection\u003cbr\u003e\nContent, country, domain, and ad filtering\u003cbr\u003e\nVLAN/subnet-based traffic segmentation\u003cbr\u003e\nFull stateful firewall\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eAdvanced networking\u003c/td\u003e\u003ctd class=“value“\u003eLicense-free SD-WAN\u003cbr\u003eWireGuard, L2TP and OpenVPN server\u003cbr\u003e\nOpenVPN client\u003cbr\u003e\nOpenVPN and IPsec site-to-site VPN\u003cbr\u003e\nOne-click Teleport and Identity VPN\u003cbr\u003e\nPolicy-based WAN and VPN routing\u003cbr\u003e\nDHCP relay\u003cbr\u003e\nCustomizable DHCP server\u003cbr\u003e\nIGMP proxy\u003cbr\u003e\nIPv6 ISP support\n\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eSoftware\u003c/th\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eWiFi standards\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e802.11a/b/g/n/ac\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eWireless security\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eWEP, WPA-PSK, WPA-Enterprise (WPA/WPA2, TKIP/AES), 802.11w/PMF\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eBSSID\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eUp to 8 per radio\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eVLAN\u003c/td\u003e\u003ctd class=“value“\u003e802.1Q\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eAdvanced QoS\u003c/td\u003e\u003ctd class=“value“\u003ePer-user rate limiting\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eGuest traffic isolation\u003c/td\u003e\u003ctd class=“value“\u003eSupported\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eConcurrent clients\u003c/td\u003e\u003ctd class=“value“\u003e100+\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eSupported Data Rates\u003c/th\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11a\u003c/td\u003e\u003ctd class=“value“\u003e6, 9, 12, 18, 24, 36, 48, 54 Mbps\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11b\u003c/td\u003e\u003ctd class=“value“\u003e1, 2, 5.5, 11 Mbps\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11g\u003c/td\u003e\u003ctd class=“value“\u003e6, 9, 12, 18, 24, 36, 48, 54 Mbps\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11n (WiFi 4)\u003c/td\u003e\u003ctd class=“value“\u003e6.5 Mbps to 300 Mbps (MCS0 - MCS15, HT 20/40)\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11ac (WiFi 5)\u003c/td\u003e\u003ctd class=“value“\u003e6.5 Mbps to 1.7 Gbps (MCS0 - MCS9 NSS1/2/3/4, VHT 20/40/80/160)\u003c/td\u003e\n\u003c/tr\u003e\n        \u003c/tbody\u003e\n    \u003c/table\u003e"},"variants":[{"__typename":"StorefrontProductVariant","id":"61bf9671-b4b4-4377-8484-30cffc1d3bc7","sku":"UDM-US","title":"US Version","isEarlyAccess":false,"isVisibleInStore":true,"displayPrice":{"__typename":"Money","amount":29900,"currency":"USD"},"status":"Available","optionValueIds":["7520fcb9-7ace-406d-a981-3be70cc75712"],"galleryItemIds":["475ee9e1-6c2f-44ec-9a24-436d7b4d80e0"],"documents":[],"campaignDiscounts":[],"bundleDiscounts":[],"bundleNotes":[],"availableInOtherStores":[]}],"relatedProductCategories":[],"productInlineAccessoryGroup":[]},"collection":{"products":[{"__typename":"StorefrontProduct","id":"9585991f-2b82-411c-8f44-addb4711e4db","title":"Dream Machine","shortTitle":"Dream Machine","name":"UDM","description":"\u003cp\u003e\u003cstrong\u003eFeatures:\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eDual-band WiFi 5 access point\u003c/li\u003e\n\u003cli\u003eFour-port Gigabit switch\u003c/li\u003e\n\u003cli\u003eAdvanced network security (content filtering, internet threat management, deep packet inspection)\u003c/li\u003e\n\u003cli\u003ePre-installed UniFi Network application\u003c/li\u003e\n\u003c/ul\u003e\n","keyFeatures":"\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"wifi5\" src=\"https://assets.ecomm.ui.com/static/key-features/wifi5.svg\"\u003e Built-in WiFi 5 AP\u003c/p\u003e\n\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"apps\" src=\"https://assets.ecomm.ui.com/static/key-features/apps.svg\"\u003e  Includes UniFi Network for device management\u003c/p\u003e\n\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"streams\" src=\"https://assets.ecomm.ui.com/static/key-features/streams.svg\"\u003e Full Gigabit routing\u003c/p\u003e\n\u003cp\u003e\u003cimg width=\"20\" height=\"20\" data-type=\"icon\" data-icon=\"rj45_port\" src=\"https://assets.ecomm.ui.com/static/key-features/rj45_port.svg\"\u003e (4) GbE RJ45 LAN ports\u003c/p\u003e\n","seoTitle":"Dream Machine","seoDescription":"All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks.","callout":null,"shortDescription":"All-in-one UniFi Gateway and access point designed to support LAN and WiFi networks.","status":"Available","whatsInTheBoxMedia":null,"manufacturer":"Ubiquiti","slug":"udm","collectionSlug":null,"proCollectionSlug":null,"organizationalCollectionSlug":"unifi-dream-machine","family":"Unifi","tags":[{"__typename":"ProductTag","id":"8d16af8d-eb84-4932-b284-9b615dae526e","name":"pro-sort-weight:4960"},{"__typename":"ProductTag","id":"411e3974-a7f2-4ef1-9b62-39e64e3e8171","name":"feature:wifi-integrated"}],"documents":[{"__typename":"ProductDocument","id":"c29b924c-f5f1-4795-aa71-4a0126276165","url":"https://dl.ui.com/ds/udm_ds.pdf","type":"Datasheet","name":"Datasheet"},{"__typename":"ProductDocument","id":"54c5fe9f-b537-45c7-929e-261f7f4a63fb","url":"https://dl.ui.com/qig/udm","type":"InstallationGuide","name":"Installation Guide"}],"options":[{"__typename":"StorefrontOption","id":"492f18b6-0811-4f85-8e11-8c0c6a1a5c4a","title":"Variant","values":[{"__typename":"StorefrontOptionValue","id":"7520fcb9-7ace-406d-a981-3be70cc75712","title":"US Version"}]}],"thumbnail":{"__typename":"Asset","id":"ed901d58-e3c0-45e7-b2df-f382fff5e3de","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","height":1500,"width":1500},"gallery":{"__typename":"Gallery","thumbnailUrl":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","id":"475ee9e1-6c2f-44ec-9a24-436d7b4d80e0:ProductMedia","items":[{"__typename":"GalleryItem","id":"475ee9e1-6c2f-44ec-9a24-436d7b4d80e0","data":{"__typename":"Asset","id":"ed901d58-e3c0-45e7-b2df-f382fff5e3de","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/ed901d58-e3c0-45e7-b2df-f382fff5e3de.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"16f28d3c-4af2-4868-86db-dc4d19544577","data":{"__typename":"Asset","id":"9336b696-d13c-4087-97df-e20c2b738982","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/9336b696-d13c-4087-97df-e20c2b738982.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"725bd30c-26b7-4fcc-8706-b6bc4d879646","data":{"__typename":"Asset","id":"31fae88b-deb6-4c8f-862f-42aac7783b04","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/31fae88b-deb6-4c8f-862f-42aac7783b04.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"dbc8a08f-142c-4ff8-880c-84ddc4fe0439","data":{"__typename":"Asset","id":"6906e7cc-e742-48ed-bec9-4a97033d0c1e","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/6906e7cc-e742-48ed-bec9-4a97033d0c1e.png","height":1500,"width":1500,"childAssets":[]}},{"__typename":"GalleryItem","id":"b4ff08b9-689d-46b1-8021-9e32bfd311d1","data":{"__typename":"Asset","id":"44073c51-79a0-491c-b672-d07db08e6090","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/44073c51-79a0-491c-b672-d07db08e6090.png","height":1500,"width":1500,"childAssets":[]}}],"type":"ProductMedia"},"techSpecs":{"__typename":"Gallery","id":"c4889322-e05c-4831-a26a-8813f6e51631:ProductTechSpec","items":[{"__typename":"GalleryItem","id":"c4889322-e05c-4831-a26a-8813f6e51631","data":{"__typename":"Asset","id":"56f97eed-7183-4b1c-acc4-a82247bd23e4","mimeType":"image/png","url":"https://cdn.ecomm.ui.com/products/9585991f-2b82-411c-8f44-addb4711e4db/56f97eed-7183-4b1c-acc4-a82247bd23e4.png","height":1040,"width":1400}}],"type":"ProductTechSpec"},"deploymentMedia":null,"topologyMedia":null,"installationMedia":null,"performanceMedia":null,"datasheet":{"__typename":"Datasheet","id":"fbcb1196-6884-4bd3-95ab-9e0b6ea874ed","sku":"UDM","html":"\u003ctable class=\"data-table\" id=\"product-attribute-specs-table\"\u003e\n        \u003ccolgroup\u003e\u003ccol width=\"25%\"\u003e\n        \u003ccol\u003e\n        \u003c/colgroup\u003e\u003ctbody\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eMechanical\u003c/th\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eDimensions\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eØ110 x 184.1 mm (Ø4.3 x 7.3\")\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eWeight\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e1.1 kg (2.3 lb)\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eEnclosure material\u003c/td\u003e\u003ctd class=“value“\u003ePolycarbonate\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eHardware\u003c/th\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eProcessor\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eQuad-core Arm® Cortex® A57 at 1.7 GHz\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eSystem memory\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e2 GB DDR RAM\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eManagement interface\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eEthernet\u003cbr\u003eBluetooth\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eNetworking interface\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eLAN: \u003cbr\u003e(4) GbE RJ45 ports\u003cbr\u003e\u003cbr\u003eWAN: \u003cbr\u003e(1) GbE RJ45 port\n\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003ePower method\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e Universal AC input, 100—240V AC, 0.6A Max., 50/60 Hz\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003ePower supply\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eAC/DC, internal, 50W\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eSupported voltage range\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e100—240V AC\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eMax. power consumption\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e26W\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eMax. TX power\u003cbr\u003e2.4 GHz\u003cbr\u003e5 GHz\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e\u003cbr\u003e23 dBm\u003cbr\u003e26 dBm\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eMIMO\u003cbr\u003e2.4 GHz\u003cbr\u003e5 GHz\u003c/td\u003e\u003ctd class=“value“\u003e\u003cbr\u003e2 x 2\u003cbr\u003e4 x 4\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eThroughput rate\u003cbr\u003e2.4 GHz\u003cbr\u003e5 GHz\u003c/td\u003e\u003ctd class=“value“\u003e\u003cbr\u003e300 Mbps\u003cbr\u003e1.7 Gbps\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAntenna gain\u003cbr /\u003e2.4 GHz\u003cbr /\u003e5 GHz\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e\u003cbr /\u003e3 dBi\u003cbr /\u003e4.5 dBi\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAntenna\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e(1) Internal, dual-band, quad-polarity antenna\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eButton\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eFactory reset\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eLEDs\u003c/td\u003e\u003ctd class=“value“\u003eWhite/blue\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAmbient operating temperature\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e-10 to 45° C (14 to 113° F)\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eAmbient operating humidity\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e5 to 95% Noncondensing\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eCertifications\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eCE, FCC, IC\u003c/td\u003e\n            \u003c/tr\u003e\n                        \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eGateway Features\u003c/th\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003ePerformance \u003c/td\u003e\u003ctd class=“value“\u003e\nWiFi QoS with UniFi APs\u003cbr\u003e\nApplication, domain, and country-based QoS\u003cbr\u003e\nApplication and device type identification\u003cbr\u003e\nAdditional internet failover with LTE Backup\u003cbr\u003e\nInternet quality and outage reporting\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eNext-generation security\u003c/td\u003e\u003ctd class=“value“\u003eApplication-aware firewall rules\u003cbr\u003e\nSignature-based IPS/IDS threat detection\u003cbr\u003e\nContent, country, domain, and ad filtering\u003cbr\u003e\nVLAN/subnet-based traffic segmentation\u003cbr\u003e\nFull stateful firewall\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eAdvanced networking\u003c/td\u003e\u003ctd class=“value“\u003eLicense-free SD-WAN\u003cbr\u003eWireGuard, L2TP and OpenVPN server\u003cbr\u003e\nOpenVPN client\u003cbr\u003e\nOpenVPN and IPsec site-to-site VPN\u003cbr\u003e\nOne-click Teleport and Identity VPN\u003cbr\u003e\nPolicy-based WAN and VPN routing\u003cbr\u003e\nDHCP relay\u003cbr\u003e\nCustomizable DHCP server\u003cbr\u003e\nIGMP proxy\u003cbr\u003e\nIPv6 ISP support\n\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eSoftware\u003c/th\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eWiFi standards\u003c/td\u003e\n                \u003ctd class=\"value\"\u003e802.11a/b/g/n/ac\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eWireless security\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eWEP, WPA-PSK, WPA-Enterprise (WPA/WPA2, TKIP/AES), 802.11w/PMF\u003c/td\u003e\n            \u003c/tr\u003e\n            \u003ctr\u003e\n                \u003ctd class=\"key\"\u003eBSSID\u003c/td\u003e\n                \u003ctd class=\"value\"\u003eUp to 8 per radio\u003c/td\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eVLAN\u003c/td\u003e\u003ctd class=“value“\u003e802.1Q\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eAdvanced QoS\u003c/td\u003e\u003ctd class=“value“\u003ePer-user rate limiting\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eGuest traffic isolation\u003c/td\u003e\u003ctd class=“value“\u003eSupported\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003eConcurrent clients\u003c/td\u003e\u003ctd class=“value“\u003e100+\u003c/td\u003e\n\u003c/tr\u003e\n            \u003ctr\u003e\n                \u003cth colspan=\"100%\"\u003eSupported Data Rates\u003c/th\u003e\n            \u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11a\u003c/td\u003e\u003ctd class=“value“\u003e6, 9, 12, 18, 24, 36, 48, 54 Mbps\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11b\u003c/td\u003e\u003ctd class=“value“\u003e1, 2, 5.5, 11 Mbps\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11g\u003c/td\u003e\u003ctd class=“value“\u003e6, 9, 12, 18, 24, 36, 48, 54 Mbps\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11n (WiFi 4)\u003c/td\u003e\u003ctd class=“value“\u003e6.5 Mbps to 300 Mbps (MCS0 - MCS15, HT 20/40)\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd class=“key“\u003e802.11ac (WiFi 5)\u003c/td\u003e\u003ctd class=“value“\u003e6.5 Mbps to 1.7 Gbps (MCS0 - MCS9 NSS1/2/3/4, VHT 20/40/80/160)\u003c/td\u003e\n\u003c/tr\u003e\n        \u003c/tbody\u003e\n    \u003c/table\u003e"},"variants":[{"__typename":"StorefrontProductVariant","id":"61bf9671-b4b4-4377-8484-30cffc1d3bc7","sku":"UDM-US","title":"US Version","isEarlyAccess":false,"isVisibleInStore":true,"displayPrice":{"__typename":"Money","amount":29900,"currency":"USD"},"status":"Available","optionValueIds":["7520fcb9-7ace-406d-a981-3be70cc75712"],"galleryItemIds":["475ee9e1-6c2f-44ec-9a24-436d7b4d80e0"],"documents":[],"campaignDiscounts":[],"bundleDiscounts":[],"bundleNotes":[],"availableInOtherStores":[]}],"relatedProductCategories":[],"productInlineAccessoryGroup":[]}],"slug":null},"inlineProductIds":[],"directUpsell":[],"hasInvisibleVariants":false,"proStore":null,"storeId":"us","language":"en"},"__N_SSP":true},"page":"/[store]/[language]/products/[product]","query":{"store":"us","language":"en","product":"udm"},"buildId":"e407e7695","assetPrefix":"https://assets.ecomm.ui.com","isFallback":false,"gssp":true,"locale":"default","locales":["default"],"defaultLocale":"default","scriptLoader":[{"src":"https://www.googletagmanager.com/gtag/js?id=G-7S7M9JYE0G","strategy":"afterInteractive"},{"id":"google-analytics","strategy":"afterInteractive","dangerouslySetInnerHTML":{"__html":"function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag(\"js\",new Date),gtag(\"config\",\"G-7S7M9JYE0G\");"}},{"id":"hotjar-base","strategy":"afterInteractive","dangerouslySetInnerHTML":{"__html":"!function(t,h,e,j,s,n){t.hj=t.hj||function(){(t.hj.q=t.hj.q||[]).push(arguments)},t._hjSettings={hjid:2411088,hjsv:6},s=h.getElementsByTagName(\"head\")[0],(n=h.createElement(\"script\")).async=1,n.src=\"https://static.hotjar.com/c/hotjar-\"+t._hjSettings.hjid+\".js?sv=\"+t._hjSettings.hjsv,s.appendChild(n)}(window,document);"}},{"id":"delighted-base","strategy":"afterInteractive","dangerouslySetInnerHTML":{"__html":"!function(e,t,r,n){if(!e[n]){for(var a=e[n]=[],i=[\"survey\",\"reset\",\"config\",\"init\",\"set\",\"get\",\"event\",\"identify\",\"track\",\"page\",\"screen\",\"group\",\"alias\"],s=0;s\u003ci.length;s++){var c=i[s];a[c]=a[c]||function(e){return function(){var t=Array.prototype.slice.call(arguments);a.push([e,t])}}(c)}a.SNIPPET_VERSION=\"1.0.1\";var o=t.createElement(\"script\");o.type=\"text/javascript\",o.async=!0,o.src=\"https://d2yyd1h5u9mauk.cloudfront.net/integrations/web/v1/library/HSfjr90kgKf8BG2D/\"+n+\".js\";var u=t.getElementsByTagName(\"script\")[0];u.parentNode.insertBefore(o,u)}}(window,document,0,\"delightedThumbs\");"}},{"id":"postaffiliatepro-base","strategy":"afterInteractive","dangerouslySetInnerHTML":{"__html":"!function(t,e,o){let i=document.createElement(\"script\");i.src=\"https://ubiquiti.postaffiliatepro.com/scripts/kjhwyl\",i.id=\"pap_x2s6df8d\",i.type=\"text/javascript\",i.onload=function(){try{PostAffTracker.setAccountId(\"default1\"),PostAffTracker.writeAffiliateToCustomFieldNow(\"pap_a_aid\"),PostAffTracker.addAfterSetAffiliateFunction((function(){const t=PostAffTracker.getAffInfo().getAffiliateId();if(!Boolean(t))return;let e=(new Date).getTime();PostAffCookie.setHttpCookieInner(\"pap_a_aid\",t,new Date(e+o),\".ui.com\"),PostAffCookie.setHttpCookieInner(\"pap_a_vid\",PostAffTracker.getVisitorId(),new Date(e+o),\".ui.com\")})),PostAffTracker.track()}catch(t){}},document.body.appendChild(i)}(0,0,6048e5);"}}]}</script></body></html>